jQuery(document).ready(function() {
	
	initHiddenReviews();
	
});


/**
 * When the user is seeing a table with hidden content, and then click a link for view the rest
 * this function is called to show the rest of the info, placed on a div with the class .hiddenInfo
 */
function initHiddenReviews() {
	jQuery(".showHidden").bind("click", function(e){
		e.preventDefault();
		jQuery(".hiddenInfo").fadeIn(500);
	})
}

