$(document).ready(function(){
	
	$('input[type="text"]').focus(function(){
		$(this).removeClass("conField errField").addClass("conFieldFocus");
		
		if (this.value != ''){
			this.select();}
	});
	
	$('input[type="text"]').blur(function(){
		$(this).removeClass("conFieldFocus").addClass("conField");  
	});				
	
	$('textarea').focus(function(){
		$(this).removeClass("conField errField").addClass("conFieldFocus");
		
		if (this.value != ''){
			this.select();}
	});
	
	$('textarea').blur(function(){
		$(this).removeClass("conFieldFocus").addClass("conField");
	});
	
});