$(document).ready(function(){

	// smooth scroll on anchor links
	$.localScroll();

	$("#searchForm input").focus(function() {
		if ($(this).val() != "Enter a keyword") {
			return false;
		}
		else {
			$(this).val("");
		}
	});
	$("#searchForm input").blur(function() {
		if ($(this).val() != "") {
			return false;
		}
		else {
			$(this).val("Enter a keyword");
		}
	});

	$("ul.nav").superfish({
		hoverClass	: "sfHover",
		pathClass	: "overideThisToUse",
		delay		: 100,
		animation	: { opacity:"show" },
		speed		: "fast",
		oldJquery	: false, /* set to true if using jQuery version below 1.2 */
		disableHI	: false, /* set to true to disable hoverIntent detection */
		onInit		: function(){},
		onBeforeShow	: function(){},
		onShow		: function(){},
		onHide		: function(){}
	});

});