$(document).ready(function() {
	
  $("body").addClass("js");
  
  {
  	 if ( $('#header form.search input.text').val() != '' ) {
		$('#header form.search input.text').addClass("focus");
	};
  };
  
  	$('#header form.search input.text').focus(function() {    	
    	$(this).addClass("focus");
    });

	$('#header form.search input.text').blur(function() {
    	if ( $(this).val() == '' ) {
    		$(this).removeClass("focus");
		};
    });
    
   
    
});