var fieldValues = new Array();

$(document).ready(function () {
	$("#loginRPanel").focus(function() {
		if(!fieldValues[$(this).attr('name')])
		{
			fieldValues[$(this).attr('name')] = $(this).val();
			$(this).val('');
		}
	});
	
	$("#loginRPanel").blur(function() {
		if($(this).val().length == 0)
		{
			$(this).val(fieldValues[$(this).attr('name')]);
			delete fieldValues[$(this).attr('name')];
		}
	});
	
	$("#hasloRPanel").focus(function() {
		if(!fieldValues[$(this).attr('name')])
		{
			fieldValues[$(this).attr('name')] = 'haslo';
			$(this).attr('style', 'background: #FFFFFF;');
		}
	});
	
	$("#hasloRPanel").blur(function() {
		if($(this).val().length == 0)
		{
			$(this).removeAttr('style');
			delete fieldValues[$(this).attr('name')];
		}
	});
	
	$(".zalozkonto").click(function() {
		document.location = '/uzytkownik/rejestracja';
	});
	

});
