ZD.onReady(function() {
	var search = jQuery("#search");
	if (search.value == "SEARCH") search.style.color = "#777";
	ZD.on(search, "focus", function() {
		this.style.color = "#000";
		this.value = this.value == "SEARCH" ? "" : this.value;
	});
	ZD.on(search, "blur", function() {
		if (this.value == "") this.style.color = "#777";
		this.value = this.value == "" ? "SEARCH" : this.value;
	});
	ZD.onClick(jQuery("#go"),function() {
		if (search.value != "SEARCH" && search.value != "") 
			this.form.submit();
	});
});

