$(document).ready(function() {
	
	$("#headerSearchBox").focus(function() {
		if($(this).attr("value") == "Search Keywords") {
			$(this).attr("value","");
		}
	});
	
	$("#headerSearchBox").blur(function() {
		if($(this).attr("value") == "") {
			$(this).attr("value","Search Keywords");
		}
	});
	
	$(".headerLogo").click(function(){
		var url = $('meta[name=siteUrl]').attr("content");
		window.location = url;
	});
	
});