$(document).ready(function(){
        $('#submit').hover(
            function(){ 
                $(this).attr({ src : 'images/button_form2.gif'});
            },
            function(){ 
                $(this).attr({ src : 'images/button_form1.gif'});             }
        );
         $('form:first *:input[type!=hidden]:first').focus();
    });
