/**
 * @author matthewhowell
 * @description	Comment Hide/Show
 */
jQuery(document).ready(function($) {
	$('.comment-expand').hide();
	$('.comment-expand').css("cursor","pointer");
	$('.comment-expand-link').click(function() {
		$('.comment-expand').toggle();
		return false;
	});
});