function menu() {
			$("#footer").hover(
		      function () {
		        $('#fondNoir').css({'display':'block'});
		        $('#fondNoir').fadeTo("fast", 0.8);
		      }, 
		      function () {
		        $('#fondNoir').animate({opacity:0},600,"linear", function(){cache();});		        
		      }
		    );
		    function cache() {
			  	$('#fondNoir').css({'display':'none'});
			}
			
			
			
			$("#degrade img").toggle(
		      function () {
		        $('#loupe').animate({'left':'-93px'},200,"linear");   
		        $('#loupe img').css({'margin-top':'-27px'});
		        $('.boxAlea').animate({'width':'908px','overflow-x':'auto'},200,"linear");
		      }, 
		      function () {		       
		        $('#loupe').animate({'left':'0'},200,"linear");
		        $('#loupe img').css({'margin-top':'0'});
		        $('.boxAlea').animate({'width':'121px'},200,"linear"); 
		      }
		    );
		    $("#loupe img").toggle(
		      function () {
		        $('#loupe').animate({'left':'-93px'},200,"linear");   
		        $('#loupe img').css({'margin-top':'-27px'});
		        $('.boxAlea').animate({'width':'908px','overflow-x':'auto'},200,"linear");
		      }, 
		      function () {		       
		        $('#loupe').animate({'left':'0'},200,"linear");
		        $('#loupe img').css({'margin-top':'0'});
		        $('.boxAlea').animate({'width':'121px'},200,"linear"); 
		      }
		    );
			
			
			$(".on_parle_de_nous").hover(
		      function () {
		        $('.imgRub1').css({'display':'block'});
		      }, 
		      function () {
		        $('.imgRub1').css({'display':'none'});		      	
		      }
		    );

			$(".pierre_caillet_restaurant").hover(
		      function () {
		        $('.imgRub2').css({'display':'block'});
		      }, 
		      function () {
		        $('.imgRub2').css({'display':'none'});
		      }
		    );
			
			$(".hotel_le_bec_au_cauchois").hover(
		      function () {
		        $('.imgRub3').css({'display':'block'});
		      }, 
		      function () {
		        $('.imgRub3').css({'display':'none'});
		      }
		    );
		    
		   $(".on_parle_de_nous .second_level li").each(function(){
		    	$(this).hover(
			      function () {
			        $('.on_parle_de_nous a:first img').attr("src", "/media/parle_on__041725900_1804_19012010.gif");
			      }, 
			      function () {
			      	if (!($(this).parent().parent().hasClass("active"))) {
			        	$('.on_parle_de_nous a:first img').attr("src", "/media/parle_off__008244100_1804_19012010.gif");
			        }
			      }
			    );
		    });
		    $(".pierre_caillet_restaurant .second_level li").each(function(){
		    	$(this).hover(
			      function () {
			        $('.pierre_caillet_restaurant a:first img').attr("src", "/media/restaurant_on__024398900_1809_19012010.gif");
			      }, 
			      function () {
			      	if (!($(this).parent().parent().hasClass("active"))) {
			        	$('.pierre_caillet_restaurant a:first img').attr("src", "/media/restaurant_off__090780200_1808_19012010.gif");
			        }
			      }
			    );	
		    });
		    $(".hotel_le_bec_au_cauchois .second_level li").each(function(){
		    	$(this).hover(
			      function () {
			        $('.hotel_le_bec_au_cauchois a:first img').attr("src", "/media/hotel_on__067104500_1812_19012010.gif");
			      }, 
			      function () {
			      	if (!($(this).parent().parent().hasClass("active"))) {
			       		$('.hotel_le_bec_au_cauchois a:first img').attr("src", "/media/hotel_off__023045800_1812_19012010.gif");
			       	}
			      }
			    );	
		    });
}


      
function debut(){      
   var imgVeh = new Array();
   var monHTML = "";
   $('.boxAlea img').each(function(i){
     var quoi =$(this).attr('src');
     imgVeh[i] = quoi;
     monHTML += '<img src="'+imgVeh[i]+'" width="908" height="359" />';
    });           
   $('.boxAlea').html(monHTML);
   
   $('.boxAlea').cycle({
   fx:'fade',
     speed:500,
     timeout: 3000,
     random : 1,
     containerResize: 0
   });
}