$(document).ready(function() {

	// hides the slickbox as soon as the DOM is ready (a little sooner that page load)
	$('div.info').hide();
	$('#nav li.page-item-42').hide();
	
	// shows and hides and toggles the slickbox on click
	$('#slick-show').click(function() {
	$('#slickbox').show('slow');
	return false;
	});
	
	$('#slick-hide').click(function() {
	$('#slickbox').hide('fast');
	return false;
	});
	
	$('#slick-toggle').click(function() {
	$('#slickbox').toggle(400);
	return false;
	});
	
	// slides down, up, and toggle the slickbox on click
	$('a#info-show').click(function() {
	$('div.info').slideDown('slow');
	return false;
	});
	
	$('a#info-show').click(function() {
	$('div.info').slideUp('fast');
	return false;
	});
	
	$('a#info').click(function() {
	$('div.info').slideToggle(400);
	return false;
	});

	// slides down, up, and toggle the slickbox on click
	$('#nav li.page-item-6-show a').click(function() {
	$('#nav li.page-item-42').slideDown('slow');
	return false;
	});
	
	$('#nav li.page-item-6-show a').click(function() {
	$('#nav li.page-item-42').slideUp('fast');
	return false;
	});
	
	$('#nav li.page-item-6 a').click(function() {
	$('#nav li.page-item-42').slideToggle(400);
	return false;
	});

});
/*

<script>		
      $(document).ready(function() {
       // hides the slickbox as soon as the DOM is ready
       // (a little sooner than page load)
        $('div.info').hide();
       // shows the slickbox on clicking the noted link  
        $('a#info-show').click(function() {
          $('div.info').fadeIn('slow');
          return false;
        });
       // hides the slickbox on clicking the noted link  
        $('a#info-hide').click(function() {
          $('div.info').fadeOut('fast');
          return false;
        });
       
       // toggles the slickbox on clicking the noted link  
        $('a#info').click(function() {
          $('div.info').toggle(400);
          return false;
        });
      });
</script>

*/