$(document).ready(function(){	
	$("#slider").easySlider({
		prevId: 		'previous',
		prevText: 		'Précédent',
		nextId: 		'next',
		nextText: 		'Suivant',
		speed: 		1200,
		pause:		6000,
		auto: true,
		continuous: true 
	});
	
	if($("#slider"))
	{
		$(document).keydown(function(event){
			if(event.keyCode == 37) $("#previous a").click();
			if(event.keyCode == 39) $("#next a").click();
		});
	}
	
	/* ROLLOVER LISTE REFERENCES */
	$("#listeReferences li a").hover(
	function() {
	$("span", this).stop().animate({width:'298px'}, "slow");
	},
	function() {
	$("span", this).stop().animate({width:'0'}, "slow");
	});
	

/* don't */ });
