$(document).ready(init);

function init(){
	
	var href = String(window.location.pathname).replace(/\//g,""); // replace /'s with blank string to remove slashes -- changes "/about/" to "about"
	var selected = "#" + href;
	$(selected).addClass("selected");
	
	$("#search #s").focus(function(){
		$(this).val("");
	});
	
	$("#search #s").blur(function(){
		if($(this).val() == ""){
			$(this).val("Search");
		}
	});
}
