$(document).ready(
	function() {

		//
		// BEGIN dressing up search fields
		$("header .google_site_search_form_textbox").attr("value", "Search...");
				
		if ($("header .google_site_search_form_textbox").attr("value") == null) {
			$("header .google_site_search_form_textbox").attr("value", "Search...");
		}
		
		$("header .google_site_search_form_textbox").focus(function() {
			if ($("header .google_site_search_form_textbox").attr("value") == "Search...") {
				$("header .google_site_search_form_textbox").attr("value", "");
			}
		});
		
		$("header .google_site_search_form_textbox").blur(function() {
			if ($("header .google_site_search_form_textbox").attr("value") == null || $("header .google_site_search_form_textbox").attr("value") == "") {
				$("header .google_site_search_form_textbox").attr("value", "Search...");
			}
		});
		// END dressing up search fields
		//

	}
);
