$(document).ready(function() {
    // do stuff when DOM is ready
    $("#form1\\:email").attr("for", "j_username");
    $("#form1\\:j_password").attr("name", "j_password");
    $("#form1\\:j_password").attr("id", "j_password");
    $("#form1\\:j_username").attr("name", "j_username");
    $("#form1\\:j_username").attr("id", "j_username");
    $("#j_password").live("keypress", function (e) {
        if ((e.which && e.which == 13) || (e.keyCode && e.keyCode == 13)) {
            $("#form1\\:commandLink_logIn").click();
            return false;
        } else {
            return true;
        }
    });
    // Add tracking for goals and funnels for google analytics
    pageTracker._trackPageview("/funnel_G1/step1.html");
    pageTracker._trackPageview("/funnel_G1/step3.html");
}); 


