﻿$(document).ready(function() {
        $("a#loadLoginModal").click(function(e) {
        showLogin(0);
    });
});

function showLogin(div) {
    var theID = 'loginModal';
    var topVal = 70;
    var divWidth = 200;
    var mid;
    var winwidth = $(window).width();

    if (winwidth <= 926) {
        mid = 463;
    } else {
        mid = winwidth / 2;
    }

    var leftVal = mid + 467 - divWidth;

    //show the popup message
    $('div#' + theID).css({ left: leftVal, top: topVal }).fadeIn();
    $('div#' + theID).find("div.close").click(function() { $('div#' + theID).fadeOut(); })
    
    if(div==1)
    {
        $('#login').hide();$('#forgot').show();
        }else{
         $('#login').show();$('#forgot').hide();
    }
}
