﻿jQuery(function()
{
	
	jQuery("#mySearch input").each(function(){
		this.value = "חיפוש  כללי באתר";
	});

	jQuery("#mySearch input").click(function(){
		if (this.value != "")
			this.value = "";	
	});

	jQuery("#mySearch span a").text("");

	var div = document.createElement("div");
	div.style.width = div.style.height = "24px"
	div.style.backgroundImage = "url('/Portals/0/Skins/InfoDoc/Images/s.png')";	

	jQuery("#mySearch span a").each(function()
	{
		this.appendChild(div);
	});
});