// JavaScript Document

$j(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $j('div[class^=more2008]').hide();
 // shows the slickbox on clicking the noted link  
  $j('a#slick-show').click(function() {
    $j('#slickbox').show('slow');
    return false;
  });
 // hides the slickbox on clicking the noted link  
  $j('a#slick-hide').click(function() {
    $j('#slickbox').hide('fast');
    return false;
  });
 
 $j('a[class^=2008]').click(function() {
var $jthis = $j(this);
var x = $jthis.attr("className");
$j('.more' + x).toggle(400);
$j(this).text($j(this).text() == 'Click here to hide all 2008 articles' ? 'Click here to read all 2008 articles' : 'Click here to hide all 2008 articles');
return false;
});
});