$(function(){
	function effecto_user(id)
	{
		$("#" + id).focus(function(){
			var pthis = $(this);
			if(pthis.val() == "...write your search here")
			{
				pthis.val("");
			}
		});
	   
		$("#" + id).blur(function(){
			var pthis = $(this);
			if(pthis.val() == "")
			{
				pthis.val("...write your search here");
			}
		});
	}
   
	effecto_user("q");
});