function toggletab(tab) {
	$('.boxlist').hide();
	$('.morelink').hide();
	$('#user' + tab).show();
	$('#more' + tab).show();
	$('.rlink').removeClass('rcurrent');
	$('#toggle' + tab).addClass('rcurrent');
}

var type = 'user';

$(document).ready(function() {
	checkformlen("comment", 1000);

	$('#commentform').ajaxForm({
		beforeSubmit: function() { return checkform('comment', maxcommentlen); },
		dataType: 'json',
		success: addcomment
	});
});
