//preload images
Image1= new Image(130,20)
Image1.src = "/images/search/search-bar-on.gif"

$(document).ready(function(){

	var searchBox = $("#searchbar");
	var searchBoxDefault = "Site Search";
	
	searchBox.focus(function(e){
		$(this).addClass("active");
		if($(this).attr("value") == searchBoxDefault) $(this).attr("value", "");
	});
	
	searchBox.blur(function(e){
		$(this).removeClass("active");
		if($(this).attr("value") == "") $(this).attr("value", searchBoxDefault);
	});

});
