$(document).ready(function(){
	$("input[@type='text'], input[@type='password']").focus(function(){
		$(this).addClass('input_hover');
	});
	$("input[@type='text'], input[@type='password']").blur(function(){
		$(this).removeClass('input_hover');
	});
});