$(document).ready(function() {
	$(".review p").hide();
	$(".review p:first").show();
	
	$(".review h2").css("cursor", "pointer");
		
	
	$(".review h2").hover(
      function () {
        $(this).css("color", "#d8c325");
      }, 
      function () {
        $(this).css("color", "#fcfd2b");
      }
    );

		
	
	$(".review h2").click(function() {
		$(this).next().next().slideToggle();

	});
});
