﻿jQuery(function()
{

	jQuery("#ForumContent .Forum_Profile").bind("click", function()
	{
		if (jQuery("#ForumContent .Forum_NormalTextBox").val() == "")
		{
			jQuery("#ForumContent .Forum_NormalTextBox").val("-").css("color","white");
		}
	});
	
	jQuery("#mySearch input").each(function(){
		this.value = "חיפוש מאמרים כללי";
	});

	jQuery("#mySearch input").click(function(){
		if(this.value!="" && 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);
	});
});