$(document).ready(function(){	
	var ajaximages = [
		'images/home/slidshow/img1.jpg', 
		'images/home/slidshow/img2.jpg', 
		'images/home/slidshow/img3.jpg', 
		'images/home/slidshow/img4.jpg', 
		'images/home/slidshow/img5.jpg'
	];
	var sudoSlider = $("#slidshow").sudoSlider({ 
		fade:true,
		continuous:true,
		auto:true,
		prevNext:false,
		pause:5000 ,
		ajax: ajaximages
	});
	function updatePos(){
		
		fakeTop = $(document).scrollTop() ;
		tailleEcran = document.documentElement.clientHeight ;
		if( tailleEcran < 790 ){
			topCss = tailleEcran - 430 + fakeTop ;
		}else{
			topCss = 345 ;
		}
		
		if( topCss > 345 ){
			topCss = 345 ;	
		}
		
		document.getElementById('b1').style.top = topCss + 'px' ;
		document.getElementById('b2').style.top = topCss + 'px' ;
		document.getElementById('b3').style.top = topCss + 'px' ;
	}
	//alert ( document.getElementById('b1') ) ;
	updatePos() ;
	
	$(document).scroll( function() { 
		updatePos() ;
	});
	
	$('.cover').hover(function(){
		
		$(this).stop().animate({top:'0px'},{queue:false,duration:160});
	}, function() {
		$(this).stop().animate({top:'180px'},{queue:false,duration:160});
	});
	
});
