$('document').ready(function(){
$("input, textarea").bind({
            focus: function(){
                $(this).addClass("focused");
                $(this).addClass("hover");
            },
            mouseenter: function(){
                
                $(this).addClass("hover");
            },
            mouseleave: function(){
                if(!$(this).hasClass("focused")){
                    $(this).removeClass("hover");
                }
            },
            blur: function(){
                $(this).removeClass("focused");
                $(this).removeClass("hover");
            }
        });
    
    $("input.inputTypeSubmit").bind({
    		mouseenter: function(){
    			$(this).addClass("hover");
    			
    		},
		    mouseleave: function(){
		        $(this).removeClass("hover");
		        
		    }
    });
    
});
