$(document).ready(function(){
	$("#nav > li").hover(function(){
		$('ul:first',this).css('visibility', 'visible');
	}, function(){
		$('ul:first',this).css('visibility', 'hidden');
	});

	$("a").filter(function(){
		return this.hostname && this.hostname != location.hostname;
	}).attr("target", "_blank");

	$("#searchbox").focus(function(){
		if($(this).attr("value") == "SEARCH") $(this).attr("value", "");
	});
	$("#emailbox").focus(function(){
		if($(this).attr("value") == "YOUR EMAIL") $(this).attr("value", "");
	});
	$("#emailbox2").focus(function(){
		if($(this).attr("value") == "YOUR EMAIL") $(this).attr("value", "");
	});
	$("#emailbox").blur(function(){
		if($(this).attr("value") == "") $(this).attr("value", "YOUR EMAIL");
	});
	$("#emailbox2").blur(function(){
		if($(this).attr("value") == "") $(this).attr("value", "YOUR EMAIL");
	});
	$("#searchbox").blur(function(){
		if($(this).attr("value") == "") $(this).attr("value", "SEARCH");
	});
});