jQuery(document).ready(function() {
 
 $("#newsletter_input").focus(function() { 
    var value = $(this).val();
    if(value == "Váš e-mail"){  
      $(this).val("");
    }
 });
 
 $("#search").focus(function(){
 
 
    var value = $(this).val();
    if(value == "zde zadejte hledaný název ..."){
      $(this).val("");
      $(this).removeClass("gray_search");
      $(this).css("font-weight", "bold");
    }
 });
 
 
});
