
$(document).ready(function(){
  $('.page').attr('id','height');
  var pageHeight = document.getElementById('height').offsetHeight;
  $('.login-popup').css('height',pageHeight);
  $('.topnav > li').mouseover(function(){
    $(this).find('a').addClass('active');
    $(this).find('ul').css('display','block');
  })
  $('.topnav > li').mouseout(function(){
    $(this).find('a').removeClass('active');
    $(this).find('ul').css('display','none');
  })
});
function closeLoginForm(el) {
  $('.'+el).animate({height: 'hide'},400);
  $('.login-wrap').animate({height: 'hide'},400);
}
function openLoginForm(el) {
  $('.'+el).animate({height: 'show'},400);
  $('.login-wrap').animate({height: 'show'},400);
}
