  $(document).ready( function () {
	
		//action sur les icones
		$("#nav ul li a img").hover(function () {	
		$(this).stop().animate({ 
        marginTop: "-25px",
		height: "95px",
		width: "95px"
		},400);	
		},
		function() {		
		$(this).stop().animate({ 
        marginTop: "0px",
		height: "72px",
		width: "72px"
		},400);	
		});
	
		$(".cdu").click(function () {		
		$(".desc").css({position:"relative",top:"0px"});				
		});
		
  		$(".desc").click(function () {	
		$(".desc").css({position:"relative",top:"0px"});			
		});

  		$(".desc").hover(function () {	
		$(".desc").css({cursor:"pointer"});			
		});
		
		$(".acc").click(function () {
		$(".desc").css({position:"",top:"0px"});				
		});

		$(".accueil").click(function () {
		$(".desc").css({position:"",top:"0px"});				
		});
		
  		$(".accueil").hover(function () {	
		$(".accueil").css({cursor:"pointer"});			
		});
  

		
		//trensparence des images
		$("#nav ul li.separateur").animate({opacity: '0.8'});
		$("#nav ul").animate({opacity: '0.8'});
		$("#nav ul li a img").animate({opacity: '0.95'});
	});
