$(document.body).ready(function(){
  $("a#loginFadeIn").toggle(function(){
    $("div#LOGIN").animate({ height: 'show', opacity: 'show' }, 'fast');
  },function(){
    $("div#LOGIN").animate({ height: 'hide', opacity: 'hide' }, 'fast');
  })
});
