// Added by Pete to mod the search box/results a little

window.addEvent( "domready", function( e ) {
	var DEFAULT_SEARCH_TEXT = "Keyword/Resort/Hotel Name or Code";
	var search_box = $("google_query");

	if ( search_box ) {
		var cookie_value = Cookie.get( "last_google_search" );

		if ( cookie_value ) {
			// If we have a search value saved then use it
			search_box.value = cookie_value;
		}
		else {
			// Default text for the search box
			search_box.value = DEFAULT_SEARCH_TEXT;
		}

		search_box.addEvent( "focus", function() {
			if ( search_box.value == DEFAULT_SEARCH_TEXT ) {
				search_box.value = "";
			}
		});

		search_box.addEvent( "blur", function() {
			if ( search_box.value == "" ) {
				search_box.value = DEFAULT_SEARCH_TEXT;
			}
		});

	}
} );



function AssertJSLoadedOk() {
	return true;
}