$(document).ready(function(){
    $('a.submit').click(function(){
        $('form.login').submit();
        return false;
    });
});

