$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready (a little sooner that page load)
  $('div[class^=contenttab]').hide();
  // shows and hides and toggles the slickbox on click  
 
$('a[class^=tab]').click(function() {
	var $this = $(this);
	var x = $this.attr("className");
	$('.content' + x).toggle(400);
	//$(this).text($(this).text() == 'Keep reading...' ? 'Click to close' : 'Keep reading...');
	//$(this).text($(this).text() == 'Click to Show/Hide' ? 'Click to close' : 'Keep reading...');
	return false;
	});
});