$(document).ready(function() {
	$("#about, #artist, #release, #schedule, #contact").css( {
		backgroundPosition: "0 -10px",
		color: "#000000"
	})
	.mouseover(function() {
		$(this).stop().animate( {
			backgroundPosition: "(0 -47px)",
			color: "#ffffff"
		}, 500, "easeOutCirc")
	})
	.mouseout(function() {
		$(this).stop().animate( {
			backgroundPosition: "(0 -10px)",
			color: "#000000"
		}, 1000, "easeOutCirc")
	});

	$("input#s")
		.focus(function() {
			if ($(this).val() == "Search") {
				$(this).val("").addClass("focused");
			}
		})
		.blur(function() {
			if ($(this).val() == "") {
				$(this).val("Search").removeClass("focused");
			} 
		});

	//$("#banner").cycle({
	//	fx: "fade",
	//	timeout: 8000
	//});
});

