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