/*
  # CONTENTS
    • SLIDESHOW 
    • MENU COLLANT 
    • POIGNEE / TIROIR 
    • SCROLL CLASS CHANGE 
*/



$(document).ready( function () {
    
    		

		/////// MENU VERTICAL POIGNEE / TIROIR ///////

    
		
		$(".tiroir").css({'display' : 'none'});
		$(".tiroir.on").css({'display' : 'block'});

					
		$(".poignee").click(function () {
		
		var parentLi = $(this).parent();
		var othersLi = $(parentLi).siblings();
		var othersTiroir = $(othersLi).children("ul.tiroir");
		
		$(othersTiroir).slideUp("normal");
		
		$(this).next("ul.tiroir").slideToggle("normal");
		
		});
		
		
		
		
				$(".projetVignette").hover(
				  function () {
    			$(this).find(".infos").stop(true,false).animate({bottom: "0px"}, 150 );
    			
				  }, 
				  function () {
    			$(this).find(".infos").stop(true,false).animate({bottom: "-63px"},300 );
				  }
				);
		
		
		
 });


