$(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
				}
			);
		}
	);

	$('.slide-show').cycle({
		fx: 'fade', 
		pause: 1,
		speed: 1000,
		timeout: 10000,
		random: 1
	});
	
	var headerImageList = [
	    '/images/header/01.jpg',
		'/images/header/08.png',
		'/images/header/031.png',
		'/images/header/144.png',
		'/images/header/0200.png',
		'/images/header/276.png',
		'/images/header/1087.png',
		'/images/header/3430.png',
		'/images/header/3566.png',
		'/images/header/4285.png',
		'/images/header/4289.png',
		'/images/header/4346.png',
		'/images/header/4368.png',
		'/images/header/4513.png',
		'/images/header/4529.png',
		'/images/header/4921.png',
		'/images/header/020022.png',
		'/images/header/088090.png',
		'/images/header/1000695.png',
		'/images/header/1050131.png',
		'/images/header/1070003.png'
	];
	var showTime = 3000;
	var transitionTime = 2000;
	$('#header').bgImageTween(headerImageList, showTime, transitionTime );
});

