window.onload = function() {
	var searchbox = document.getElementById("frmsearch_search");
	if (searchbox.value == searchbox.title) searchbox.value = "";
	if (searchbox.value == "") {
		searchbox.blur();
		searchbox.style.color = "#9c9c9c";
		searchbox.value = searchbox.title;
		window.setTimeout(function() {
			searchbox.onfocus = function() {
				searchbox.value = "";
				searchbox.style.color = "#000000";
				searchbox.onfocus = null;
			}
		},100)
	}
}