// JavaScript Document

$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#homenav').hide();
 // hides the slickbox on clicking the noted link  
  $('a#intro-hide').click(function() {
    $('#intro').fadeOut('fast');
    return false;
  });
  $('a#intro-hide').click(function() {
    $('#homenav').fadeIn('fast');
    return false;
  });
});	
