$(document).ready(function() {
		$('#top_login').click(function(){
		$(this).val('');
	});
	
	$('#top_login').blur(function(){
		if ( $(this).val().length == 0 ) {
			$(this).val('login...');
		};
	});
	
	$('#top_pass').focus(function() {
		$(this).val('');
	});
	
	$('#top_pass').blur(function() {
		if ($(this).val().length == 0) {
			$(this).val('hasło...');
		}
	});
});

