      $(document).ready(function() {
       // hides the slickbox as soon as the DOM is ready
       // (a little sooner than page load)
		$('#two').hide();
		$('#three').hide();
       // shows the slickbox on clicking the noted link  
        $('a#one-toggle').mouseenter(function() {
          $('#one').fadeIn(600);
		  $('#two').hide();
		$('#three').hide();
		window.scrollTo(0, 500);
          return false;
        });
       // toggles the slickbox on clicking the noted link  
		$('a#two-toggle').mouseenter(function() {
          $('#two').fadeIn(600);
		  $('#one').hide();
		$('#three').hide();
		window.scrollTo(0, 500);
          return false;
        });
		$('a#three-toggle').mouseenter(function() {
          $('#three').fadeIn(600);
		  $('#two').hide();
		$('#one').hide();
		window.scrollTo(0, 500);
          return false;
        });
      });


