 $(document).ready(function() {
 // when the Professors' Guide in the News button is clicked
 // It hides that button and shows the Advance Praise/testimonials button  
 	$('#inthenewsbutton').click(function () {
	$('#testimonials').slideUp("fast");
	$('#inthenewsbutton').fadeOut("fast");
	$('#inthenewsbox').fadeIn("fast");
	$('#testimonialsbutton').fadeIn("fast");
	});
// when the Advance Praise for the Book button is clicked
// It shows the In the News button	
	$('#testimonialsbutton').click(function () {
	$('#inthenewsbox').fadeOut("fast");
	$('#testimonials').slideDown("fast");
	$('#testimonialsbutton').fadeOut("fast");
	$('#inthenewsbutton').fadeIn("fast");
	});
   
   
 });

