// JavaScript Document

jQuery(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  jQuery('div[class^=morestory]').hide();
 // shows the slickbox on clicking the noted link  
  jQuery('a#slick-show').click(function() {
    jQuery('#slickbox').show('slow');
    return false;
  });
 // hides the slickbox on clicking the noted link  
  jQuery('a#slick-hide').click(function() {
    jQuery('#slickbox').hide('fast');
    return false;
  });
 
 jQuery('a[class^=story]').click(function() {
var jQuerythis = jQuery(this);
var x = jQuerythis.attr("className");
jQuery('.more' + x).toggle(400);
jQuery(this).text(jQuery(this).text() == 'Show Story' ? 'Hide Story' : 'Show Story');
return false;
});
});