/**
 * Custom jquery code	/jp. 20111212
 */
var commentFunc = function() {
	
	$('#addAComment').hide();
	
	if( $('textarea#commentText').val() ) {

		$('.commentLink').hide();
		$('#addAComment').show();
		
	} else {
		
		$('#addAComment').hide();
		$('.commentLink').show();
		
	}
	
	$('.commentLink').click(function(){

		$('#addAComment').show('slow', function(){
			window.location.hash="#addAComment";	
		});
		$('.commentLink').hide();
		$('span.errText').hide();
		
	});
};
