
$(document).ready(function(){

	/* anim menu hover */
	/*
		$("#menu ul#menuMain>li>a").hover(
			function() {
				$(this).stop().animate({paddingLeft : "15px"}, 200);
			}, function() {
				$(this).stop().animate({paddingLeft : "0px"}, 500);
			}
		);
	*/


	/* tooltip title a */
		$(".home3cols a[title], #content240 a[title]").tooltip({
			effect: 'fade',
			fadeOutSpeed: 100,
			predelay: 300,
			position: "bottom right",
			offset: [3, -150]
		});

		$("#content p.blogPagination a[title]").tooltip({
			effect: 'fade',
			fadeOutSpeed: 100,
			predelay: 300,
			position: "top center",
			offset: [-3, 0]
		});

		$("a.rssPicto[title]").tooltip({
			tipClass: 'tooltipRss',
			effect: 'fade',
			fadeOutSpeed: 100,
			predelay: 300,
			position: "bottom right",
			offset: [3, -17]
		});

	/* carrousel sommaire.html et illus fiche livre */
		$("#catalogueHome .scroll").scrollable().navigator();
		
		var root = $("#carrouselIllus .scroll").scrollable({circular: true, speed: 4000}).navigator().autoscroll({ autoplay: true, interval: 8000});
		window.api = root.data("scrollable");
	   		
});
