$('.commentFormOpener, .joinBtn').ready(
	
	function (i) {
		$('.commentFormOpener, .joinBtn').livequery('click', toggleCommentsForm);
	}
);
	
$('.commentFormCloser').ready(
	
	function (i) {
		$('.commentFormCloser').livequery('click', closeCommentsForm);
	}
);

function toggleCommentsForm() {
	if (document.getElementById('commentsContent').style.display == 'none') {
		$('#commentsContent').show('fast');
	}
	else {
		$('#commentsContent').hide('fast');
	}
	
	alert(e.target);
	return false; 			
}

function closeCommentsForm() {
	$('#commentsContent').hide('fast');
	return false; 			
}
