﻿jQuery(function()
{
	jQuery(".mainSearch input").each(function()
	{
		this.value="חפש באתר";
    
	});

	jQuery(".mainSearch input").click(function()
	{
		if(this.value!="" && this.value=="חפש באתר")
			this.value="";
	});
});

