$(document).ready(function() {

	// MARQUEE
	//	$("marquee").marquee().mouseover(function() {
	//		$(this).trigger("stop");
	//	}).mouseout(function () {
	//		$(this).trigger("start");
	//	});

	// MENU
	//$("ul.menu ul").hide();
	//setTimeout(function(){ $("ul.menu ul").slideDown(1500); },1500);

	// MENU ITEMS
	$("ul.menu").find("li[class!=active]").hover(function() {
		$(this).find("span").stop(true, true).animate({ left: "20px" }, 200);
	}, function() {
		$(this).find("span").stop(true, false).animate({ left: "10px" }, 500);
	});

});


$(document).ready(function() {
	$('#slidePhoto').Horinaja({
		capture: 'slidePhoto',
		delai: 0.3,
		duree: 4, pagination: false
	});
});