jQuery(document).ready(function(){
	
	$("#rightM").click(function(){
		document.getElementById("marquee").start();
		$("#marquee").attr("direction","right");
	});
	$("#leftM").click(function(){
		document.getElementById("marquee").start();
		$("#marquee").attr("direction","left");
	});
	$("#pauseM").click(function(){
		document.getElementById("marquee").stop();
	});
	$("#slider").easySlider({
		auto: true, 
		nextId: "nextBt",
		prevId: "prevBt",
		numeric: true,
		continuous: true
	});
	
	$("div.blocJauneScroll").scrollable({ 
		vertical:true
	}).mousewheel();  
	$("div.blocGrisScroll").scrollable({ 
		vertical:true
	}).mousewheel(); 
	$("div.blocBleuScroll2").scrollable({ 
		vertical:true
	}).mousewheel(); 
	  
});

