var searchFieldCss =
{
	"border" : "1px solid #66b5c1",
	"width":"143px",
	"height":"19px",
	"background":"url(/images/searchbox.gif) no-repeat"
};
function overrideGoogle()
{
	var $queryField = $("#cse-search-box input[name=q]");
	if ($queryField.attr("style")=="")
	{	//wait for google to load
		setTimeout(overrideGoogle, 1000);
		return;
	}
	else if ($queryField.val()=="")
		$queryField.css(searchFieldCss);
}
//override google
$(function(){
	overrideGoogle();
	$("#cse-search-box input[name=q]").bind("blur",function(){
		if ($(this).val()=="")
			$(this).css(searchFieldCss);
	});
});
