/***************************************
 * Login Page related functions *
 ***************************************/
$(document).ready(function() {
  
  if ($("#partner").length == 0) {
    
    $("#login").focus();
    
    if ($("#account-create").length == 0) {
      
      var marginBottomLength;
      
      if ($.browser.mozilla) {
        
        if (/1.9/.test($.browser.version)) {
          marginBottomLength = "12px";
        } else {
          marginBottomLength = "17px";
        }
        
      } else if ($.browser.safari) {
        
        marginBottomLength = "22px";
        
      } else if ($.browser.msie) {
        
        marginBottomLength = "12px";
        
      } else {
        
        marginBottomLength = "auto";
        
      }
      
      $("#forgotten-password").css("margin-bottom", marginBottomLength);
      
    }
    
  } else {
    
    $("#partner").focus();
    
    if ($("#account-create").length == 0) {
      
      $("#forgotten-password").css("margin-bottom", "10px");
      
    }
    
  }
  
});