$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
  $('span.revealthis').hide();
  $('a.hide').hide();
 // shows the extra text on clicking the more link  
  $('a.reveal').click(function() {
    $('a.reveal').hide();
	$('span.revealthis').show();
	$('a.hide').show();
	return false;
  });

  $('a.hide').click(function() {
	$('a.hide').hide();
	$('span.revealthis').hide();
    $('a.reveal').show();
	return false;
  });  
 // hides the slickbox on clicking the noted link  
//  $('#slick-hide').click(function() {
//    $('#slickbox').hide('fast');
//    return false;
//  });
// 
// // toggles the slickbox on clicking the noted link  
//  $('#slick-toggle').click(function() {
//    $('#slickbox').toggle(400);
//    return false;
//  });
});
