$(function() {
$("#textfield").css("color","#4E4E4E");
$("#textfield").val("Buscar...");
$("#textfield").click(function(){
if ($("#textfield").val()!="Buscar..." )  {} else { $("#textfield").val('')  }
});
$("#textfield").blur(function(){
if ($("#textfield").val()=="Buscar..." ||  $("#textfield").val()=="")  { $("#textfield").val('Buscar...'); $("#textfield").css("color","#4E4E4E");  } else {   }
});
});

