/* DEALER LOGIN FUNCTIONS -----------------------------------------------------*/ function login() { var loginForm = ''; // loginForm = '
'; jQuery('').appendTo('body').css({ opacity:0, visibility:'visible', background:'#000', zIndex:100, height:jQuery(document).height(), width:jQuery('body').width(), top:0, left:0, position:'absolute' }).click(closeLogin); jQuery('').appendTo('body').css({ left:(970/2)-150 }).html(loginForm); jQuery('#dealerMask').animate({ opacity:.7 }, 500, function() { jQuery('#overlay').animate({ width:300, height:10 }).animate({ height:170 }).find('#login').focus(); }); return true; } function closeLogin() { jQuery('#overlay').animate({ height:0 }, function() { jQuery('#dealerMask').animate({ opacity:0 }, 500, function() { jQuery(this).remove(); }); jQuery('#overlay').remove(); }); return true; }