$(document).ready(function(){
	$("input[type='text'],input[type='password'],textarea").css("border","1px solid #8e8e8e");
	$("input[type='text'],input[type='password'],textarea").focus(function(){
		$(this).css("border","1px solid #e67227"); 
	});
	$("input[type='text'],input[type='password'],textarea").blur(function(){
		$(this).css("border","1px solid #8e8e8e");
	});
});
