$(function () {
	var textbox = $('#searchBox').get(0);
	if (!textbox) {
		return;
	}
	textbox.onblur = function() {
		if (textbox.value == '') {
			textbox.style.background = '#FFFFFF url(http://www.google.com/coop/intl/en/images/google_custom_search_watermark.gif) left no-repeat';
		}
	};
	textbox.onfocus = function() {
		textbox.style.background = '#ffffff';
	};
	textbox.onblur();
});

