var $j = jQuery.noConflict();

$j(document).ready(function() {
	
	// SLIDER NEWS
	$j('.title-actu').css("opacity","0.7");
	
	$j("a.prevy").hide();
	$j("a.nexty").click(function() {
		$j('#slider-news ul').stop().animate({
			marginLeft:'-780px'
		}, 600);
		$j("a.prevy").show();
		$j("a.nexty").hide();
	});
	$j("a.prevy").click(function() {
		$j('#slider-news ul').stop().animate({
			marginLeft:'0px'
		}, 600);
		$j("a.prevy").hide();
		$j("a.nexty").show();
	});
	
	// SLIDER HOME
	$j(".scrollable").scrollable({ circular: true, mousewheel: false }).navigator({
		// make browser's back button work
		history: true
	}).autoscroll({ autoplay: true, interval: 4000 });
});
