function showHideComments(id) {
	if($("#comment-"+id).attr("rel") == 'show') {
		$("#comment-"+id).slideDown();
		$("#comment-"+id).attr("rel",'hide');
	} else {
		$("#comment-"+id).slideUp();
		$("#comment-"+id).attr("rel",'show');
	}
}
