/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(function(){
	$('.loginUser').focus(function(){
		if($(this).val() == "Felhasználó")
			$(this).val('');
	});
	$('.loginUser').blur(function(){
		if($(this).val() == "")
			$(this).val('Felhasználó');
	});
	$('.loginPass').focus(function(){
		if($(this).val() == "******")
			$(this).val('');
	});
	$('.loginPass').blur(function(){
		if($(this).val() == "")
			$(this).val('******');
	});
});
