$(document).ready(function() {
 
 $('div[class^=contentpress]').hide();
 
 $('a[class^=press]').click(function() {
 	$('div[class^=pressFeatured]').hide();
	$('div[class^=contentpress]').hide();
	$('div[class^=contentpress]').css("padding-right","10px");
  var $this = $(this);
  var x = $this.attr("className");
  $('.content' + x).toggle(400);
  // $(this).text($(this).text() == 'Click here to see the rules for this puzzle.' ? 'Click here to hide these rules.' : 'Click here to see the rules for this puzzle.');
  
	return false;
  });
});