$(document).ready(function() { 
	$("#fiction_content").scrollable({ 
		circular: true, 
		mousewheel: true,
		size:1, 
		clickable: true 
	}).navigator("#fiction_nav").autoscroll({ 
		autoplay: true, 
		interval: 10000 
	});	
	
	$("#animation_content").scrollable({ 
		circular: true, 
		mousewheel: true,
		size:1, 
		clickable: true 
	}).navigator("#animation_nav").autoscroll({ 
		autoplay: true, 
		interval: 10000 
	});	
	
	$('#bloc_actu_liste').jScrollPane({scrollbarWidth:10, scrollbarMargin:10, showArrows:true, dragMinHeight : 25});
	
	$(".rollover").mouseover(function() { 
     	var src = $(this).attr("src").replace("_off", "_on");
         $(this).attr("src", src);
     }).mouseout(function() {
         var src = $(this).attr("src").replace("_on", "_off");
         $(this).attr("src", src);
     });

	$("img[rel]").overlay( {
			expose: '#000',
			onClose:function()  {
				location.reload() ; 

			}
	} );
	
	$("span[rel]").overlay( {
		expose: '#000',
		onClose:function()  {
			location.reload() ; 

		}
} );
	
});


