
$(document).ready(function() {
						   
	$('input[type=text],input[type=password],textarea, select').addClass('text-input');
	
	$('input[type=text],input[type=password],textarea, select').focus(function(){
		$(this).addClass('hl')
	});
	
	$('input[type=text],input[type=password],textarea, select').blur(function(){
		$(this).removeClass('hl')		
	});
});

