$(document).ready(function() {
	var animationSpeed = 700;
	$('a.addCommentLink').click(function() {
		if ($('div.addCommentSpecific').css('display') == 'none')
			$('div.addCommentSpecific').slideDown(animationSpeed,function() {
				$('#commentValue').focus();
			});
		else
			$('div.addCommentSpecific').slideUp(animationSpeed);
		return false;
	});
	if ($('input#userName').length == 1)
		$('#userName').focus();
	if ($('input#joinGroupId').length == 1)
		$('#joinGroupId').focus();
	
});