$(function(){

		$(".thumb img").hover(function(){
			$(this).fadeTo("slow", 0.6); // This should set the opacity to 100% on hover
		},function(){
			$(this).fadeTo("slow", 1.0); // This should set the opacity back to 60% on mouseout
		});
		
		// pour le défilement des panoramique dans le header
		$('#loopedSlider').loopedSlider({
			addPagination: true,
			slidespeed: 500,
			containerClick: false
			//autoStart: 5000
		});
		
		// pour le défilement des images dans la partie portfolio
		$('#slideshow').serialScroll({
			items:'li',
			prev:'a.prev',
			next:'a.next',
			offset:-10, //when scrolling to photo, stop 230 before reaching it (from the left)
			start:0, //as we are centering it, start at the 2nd
			duration:1200,
			force:true,
			stop:true,
				lock:false,
			cycle:true, 
			easing:'easeOutQuart', //use this easing equation for a funny effect
			jump: true //click on the images to scroll to them

		});

});

