jQuery(document).ready(function($){

	// Clear Search
	$("#s")
		.val("Search")
		.focus(function(){
			if ($(this).val() === "Search") {
				$(this).val("");
			}
		})
		.blur(function(){
			if ($(this).val() === "") {
				$(this).val("Search");
			}
	});
	
	// Homepage Tabs
	$("#home-tabs h2").mouseover(function() {
		$("#home-tabs h2").removeClass("active");
		$("#home-tabs div.content").hide();
		$(this).addClass("active").next("div.content").show();
	});
});

