$(document).ready(function() { 
   // $("#searchbar").attr("value", "Я ищу ..."); 
  
    var text = "Я ищу ..."; 
  
    $(".searchbar").focus(function() { 
        $(this).addClass("active"); 
        if($(this).attr("value") == $(this).attr("defaultValue")) $(this).attr("value", ""); 
    }); 
  
    $(".searchbar").blur(function() { 
        $(this).removeClass("active"); 
        if($(this).attr("value") == "") $(this).val($(this).attr("defaultValue")); 
    }); 
	
});
