$(document).ready(function() {
	// $('#slider').coinslider({ 
	// 	width: 960, // width of slider panel
	// 	height: 432, // height of slider panel
	// 	spw: 7, // squares per width
	// 	sph: 5, // squares per height
	// 	delay: 5000, // delay between images in ms
	// 	sDelay: 30, // delay beetwen squares in ms
	// 	opacity: 0.7, // opacity of title and navigation
	// 	titleSpeed: 500, // speed of title appereance in ms
	// 	effect: '', // random, swirl, rain, straight
	// 	navigation: true, // prev next and buttons
	// 	links : true, // show images as links 
	// 	hoverPause: true // pause on hover
	// });
	
	$('div#slider').cycle({timeout: 3000});
	
	$("#menu li").hover(function(){
    
        $(this).addClass("hover");
        $('ul:first',this).css('visibility', 'visible');
    
    }, function(){
    
        $(this).removeClass("hover");
        $('ul:first',this).css('visibility', 'hidden');
    
    });

	// var i = 0;
	// while (i < 100) {
	// 	
	// 	delay = (i * 35000)
	// 	
	// 	setTimeout(function() { $('body, h1').css('background-color', '#d2232a'); }, delay + 5000);
	// 	setTimeout(function() { $('body, h1').css('background-color', '#000000'); }, delay + 15000);
	// 	setTimeout(function() { $('body, h1').css('background-color', '#001e3f'); }, delay + 25000);
	// 	
	// 	i += 1;
	// 	
	// 	// setTimeout(function() { $('body').css('background-color', '#d2232a'); }, i * 5000);
	// 	// setTimeout(function() { $('body').css('background-color', '#000000'); }, (i * 5000) + 5000);
	// }

	
});
