currentheader = 1;

$(".menu_item").mouseenter(function(){
	$(this).children('.text').addClass('text_active');
}).mouseleave(function(){
	$(this).children('.text').removeClass('text_active');
});


$("#search_input").focus(function(){
	if ($(this).val() == "Mot cle ou expression") $(this).val('');
});

$("#newsletter_mail").focus(function(){
	if ($(this).val() == "Votre email") $(this).val('');
});

$("#search_submit").click(function() {
	$("#searchform").submit();
	
});

$(document).ready(function() {
	$("#header2").fadeOut();
	setTimeout("switchHeader()", 5000);
});

function switchHeader() {
	var r = Math.floor(Math.random()*33) + 1
	if (currentheader == 1) {
		$("#header2").css('background', 'url(/img/header_' + r + '.png)');
		$("#header2").delay(3000).fadeIn(1000);
		currentheader = 2;
	} else {
		$("#header1").css('background', 'url(/img/header_' + r + '.png)');
		$("#header2").delay(3000).fadeOut(1000);		
		currentheader = 1;
	}

	setTimeout("switchHeader()", 8000);	
}
