    $(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#events').hide();
  $('#about').hide();
  $('#photos').hide();
  $('#shop').hide();
  $('#contact').hide();
  
 // shows the slickbox on clicking the noted link  
  $('a.news').click(function() {
   $('#events').fadeOut('fast');
   $('#about').fadeOut('fast');
   $('#photos').fadeOut('fast');
   $('#contact').fadeOut('fast');
   $('#shop').fadeOut('fast');
   $('#news').delay(205).fadeIn('slow');
    return false;
  });
 

$('a.events').click(function() {
   $('#news').fadeOut('fast');
   $('#about').fadeOut('fast');
   $('#photos').fadeOut('fast');
   $('#contact').fadeOut('fast');
   $('#shop').fadeOut('fast');
   $('#events').delay(205).fadeIn('slow');
    return false;
  });

$('a.about').click(function() {
   $('#news').fadeOut('fast');
   $('#events').fadeOut('fast');
   $('#photos').fadeOut('fast');
   $('#contact').fadeOut('fast');
   $('#shop').fadeOut('fast');
   $('#about').delay(205).fadeIn('slow');
    return false;
  });
 
 $('a.photos').click(function() {
   $('#news').fadeOut('fast');
   $('#about').fadeOut('fast');
   $('#events').fadeOut('fast');
   $('#contact').fadeOut('fast');
   $('#shop').fadeOut('fast');
   $('#photos').delay(205).fadeIn('slow');
    return false;
  });
 
 $('a.contact').click(function() {
   $('#news').fadeOut('fast');
   $('#about').fadeOut('fast');
   $('#photos').fadeOut('fast');
   $('#events').fadeOut('fast');
   $('#shop').fadeOut('fast');
   $('#contact').delay(205).fadeIn('slow');
    return false;
  });
 
 $('a.shop').click(function() {
   $('#news').fadeOut('fast');
   $('#about').fadeOut('fast');
   $('#photos').fadeOut('fast');
   $('#contact').fadeOut('fast');
   $('#events').fadeOut('fast');
   $('#shop').delay(205).fadeIn('slow');
    return false;
  });
 
 



});

