////////////////////////////
//                        //
//    LANCEMENT JQUERY    //
//                        //
////////////////////////////
// jquery.
$(document).ready(function(){
	$('#slider').scrollable({size:1, vertical:false, clickable:false, loop:true, items:'.items', next:'.btn-fleche-plus', prev:'.btn-fleche-moins', speed:2000}).autoscroll({autoplay:true, interval:5000}).mousewheel(); // slideshow.
	$('#toTop').scrollToTop({speed:1000, ease:'easeOutQuad', start:100}); // scroll to top.
});

