$(function() {

	$('#wlpeUsername').focus(function(){
		if($(this).attr('value')=='E-mail'){
			$(this).attr('value','');
			$(this).addClass('active');
		}
	});
	
	$('#wlpeUsername').blur(function(){
		if($(this).attr('value')==''){
			$(this).attr('value','E-mail');
			$(this).removeClass('active');
		}
	});
 
 

	$('#wlpePassword').focus(function(){
		if($(this).attr('value')=='Пароль'){
			$(this).attr('value','');
			$(this).addClass('active');
		}
	});
	
	$('#wlpePassword').blur(function(){
		if($(this).attr('value')==''){
			$(this).attr('value','Пароль');
			$(this).removeClass('active');
		}
	});	
	
	
	$('#ajaxusername').focus(function(){
		if($(this).attr('value')=='E-mail'){
			$(this).attr('value','');
			$(this).addClass('active');
		}
	});
	
	$('#ajaxusername').blur(function(){
		if($(this).attr('value')==''){
			$(this).attr('value','E-mail');
			$(this).removeClass('active');
		}
	});
	
	
	$('#ajaxpassword').focus(function(){
		if($(this).attr('value')=='Пароль'){
			$(this).attr('value','');
			$(this).addClass('active');
		}
	});
	
	$('#ajaxpassword').blur(function(){
		if($(this).attr('value')==''){
			$(this).attr('value','Пароль');
			$(this).removeClass('active');
		}
	});
	
});
