// 1.1. Search value
jQuery(document).ready(function(){
    jQuery('#searchbox input[type="text"]').focus(function() {  
    	this.value = '';  
    });  
    jQuery('#searchbox input[type="text"]').blur(function() {  
        jQuery(this).removeClass("focusField").addClass("idleField");  
       		this.value = 'Wyszukiwanie'; 
    });  // JavaScript Document

});



