$(function(){
//accordion
	$(".accordionnext").hide();

	$(".accordion h5").click(function(){
		$(this).next(".accordionnext").slideToggle("slow")
		.siblings(".accordionnext:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h5").removeClass("active");
	});
	
	$('#nav li').hover(
			function() { $('ul', this).css('display', 'block'); },
			function() { $('ul', this).css('display', 'none'); });
	

	$('#slideshow').jCarouselLite({
    btnNext: "#next",
    btnPrev: "#prev",
	visible: 3,
	auto: 6000,
	speed: 2000
    });
	
	$('.fadeshow').cycle({
		timeout: 6000,
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
	$(".zone").colorbox({iframe:true, innerWidth:500, innerHeight:500});
	$(".sondageInline").colorbox({width:"50%", inline:true, href:"#sondages"});

});
	
function handleFocus(element){
    if (element.value != ''){
        element.value = '';
    }
}

function handleBlur(element){
    if (element.value == ''){
        element.value = element.defaultValue;
    }
}

