$(document).ready(function() {
	 $(".fotoserie img").hover(function(){
			$(this).stop().animate({width: "400"}, { queue:false, duration:650 }, function(){});
		},function(){
			$(this).stop().animate({width: "75"}, { queue:false, duration:450 }, function(){});
		}); 
		
		$(".bigger").hover(function(){
			$(this).stop().animate({width: "560px"}, { queue:false, duration:650 }, function(){});
		},function(){
			$(this).stop().animate({width: "160px"}, { queue:false, duration:450 }, function(){});
		});
		
	
		$('.mehr').hover(function(){
			$(this).stop().animate({paddingLeft: "10px"}, { queue:false, duration:650 }, function(){});
			$(this).next('.varh').stop(true, true).slideDown("slow");
		},function(){
			$(this).stop().animate({paddingLeft: "0px"}, { queue:false, duration:650 }, function(){});
			$('.varh').stop(true, true).slideUp("slow");
		});
		
		$('.mehr').click(function(){
			$(this).next('.varh').stop(true, true).slideToggle('slow', function() {
  			});
		});
		
			
	$(".picto").delay(1500).animate({width: "30px", height: "30px",  opacity: "0.5"}, 650, function(){});
	 $(".picto").hover(function(){
			$(this).stop().animate({width: "50", height: "50", opacity: "1"}, { queue:false, duration:650 }, function(){});
		},function(){
			$(this).stop().animate({width: "30", height: "30", opacity: "0.5"}, { queue:false, duration:450 }, function(){});
		}); 
});
