$(document).ready(function(){    
	
	$('div#wyszukiwarka form label').click( function(){       
		
		$('div#wyszukiwarka form label').removeClass('checked');      
		$(this).addClass('checked');
		$(this).children('input').attr('checked', 'checked');
		
	}); 
	
	$('div#wyszukiwarka form input#input_search').focus( function(){       
		if($(this).attr('value')=="Szukaj...") { $(this).attr('value', ''); }
	});
	
	$('div#wyszukiwarka form input#input_search').blur( function(){       
		if($(this).attr('value')=="") { $(this).attr('value', 'Szukaj...'); }
	});
	
});