$(document).ready(function() {
  $('.login').hide();
 
 // shows the slickbox on clicking the noted link 
  $('a#loginShow').click(function() {
    $('.login').slideDown('fast');
    return false;
  });
 
 // hides the slickbox on clicking the noted link 
  $('a#loginHide').click(function() {
    $('.login').slideUp('fast');
    return false;
  });

});
