$(document).ready(function() {
	$("#header").click(function() {
		document.location = "/index.php";
	});
	
	$("#navigation ul li").hover(
		function () {
			$(this).stop().animate(
				{
					marginLeft: "5px",
					color: "black",
					backgroundColor: "#333333"
				},
				{
					queue: false,
					duration: 200
				}
			)
		}, 
		function () {
			$(this).stop().animate(
				{
					marginLeft: "0px",
					color: "white",
					backgroundColor: "#e60003"
				},
				{
					queue: false,
					duration: 200
				}
			)
		}
	);
	
	$("a[rel^='lightBox']").slimbox({
		counterText: "Image {x} sur {y}"
		}, null, function(el) {
		return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
	});

	$('.slide-show').cycle({
		fx: 'fade', 
		pause: 1,
		speed: 1000,
		timeout: 10000,
		random: 1
	});
});
