jQuery(function( $ )
{
		$('#s').focus(function()
				{
						if ( $(this).attr("value") == "Aradığınız Kelimeyi Giriniz" )
						{
								$(this).attr("value","");
						}
				}).blur(function()
						{
								if ( $(this).attr("value") == "" )
								{
										$(this).attr("value","Aradığınız Kelimeyi Giriniz");
								}
						});
});
