
// JavaScript Document

$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#second7').hide();
 // shows the slickbox on clicking the noted link
  $('a#slick1').click(function() {
 $('#first7').hide('fast');
 $('#second7').show('slow');
 return false;
  });
 // hides the slickbox on clicking the noted link
  $('a#slick2').click(function() {
 $('#second7').hide('fast');
 $('#first7').show('slow');
 return false;
  });
});

