$(document).ready(function(){
		//Slideshow home
		$('#animMainContainer_home').serialScroll({
			items:'.frame',
			cycle:true,
			next:'#animNav_home #next_home',
			prev:'#animNav_home #prev_home',
			axis:'x',
			start: 0,
			duration:250,
			step:1,
			interval:10000,
			navigation:'#animNav_home img[id*=step]',
			onBefore:function( e, elem, pane, items, pos ){
				$('#animNav_home img[id*=step]').attr('src',ROOT_URL+'elements/animNav/bouton_inactif.jpg');
				$('#animNav_home #step'+(pos+1)).attr('src',ROOT_URL+'elements/animNav/bouton_actif.jpg');
				return true;
			}
		});
		$('#animMainContainer_home').trigger('goto',[0]);
});