$(document).ready(function(){

$('.hideComments').css('display','none');
			
		$(".comToggle").click(function () {
		
		if ($(this).parent().siblings(".hideComments").is(":hidden")) {
			
			$(this).parent().siblings(".hideComments").fadeIn("slow");
			return false;
			
		} else {
			
			$(this).parent().siblings(".hideComments").fadeOut();
			return false;
			
		}
	
		});
	
		$(".hideComments").prepend('<a class="close">&nbsp;</a>');
	
		$(".close").click(function () {
	
		$(this).parent().fadeOut("slow");
	
		});

});