jQuery(document).ready(function($) {
  	
	
	// Make entire block cliackable
	$('#lesson-table tr.available, .quiz-notice, #testimonials li').click(function() {
        var href = $(this).find("a").attr("href");
        if(href) {
            window.location = href;
        }
    });


	$('#testimonials li').setAllToMaxHeight();
	
	$(".review-toggle .btn").click(function(){
		$(".review .panel").slideToggle("slow");
	  	$(this).parent().toggleClass("active");
	});
	
	
})


// Equal heights
	$.fn.setAllToMaxHeight = function(){
		return this.height( Math.max.apply(this, $.map( this , function(e){ return $(e).height() }) ) );
	}
