$(document).ready(function() {
						   
	// hides the testimonials as soon as the DOM is ready
	// (a little sooner than page load)
	$('.testimonial .inner').hide();
	
	// toggles the testimonials on clicking the noted link
	$('.testimonial a.read').click(function() {
		$(this).next('.inner').toggle(400);
		return false;
	});
	
	// do similar for the games, toggling the anchor text
	$('a.playGame').click(function() {
		$(this).text( ($(this).text()=='Hide the game') ? 'Play the game' : 'Hide the game');
		$(this).parent().parent().next('.game').toggle(400);
		return false;
	});
  
});
