$(function() {
	$(".navbtn").css("opacity", "0.5");
	$(".header").cycle({
		fx: "fade",
		timeout: 8500,
		speed: 2000
	});
	$(".header").click(function() {
		window.location = "home.html";
	});
	
	if (typeof initPage != "undefined") { initPage(); }
});