function addLoadEvent(func) {
    jQuery(document).ready(func);
}

jQuery(function(){
	jQuery("#head form .text").click(function(){
		var t = jQuery(this);
		if (t.val() == 'wyszukaj')
			t.val('');
	});
});

