jQuery(document).ready(function(){

	initHideCommentForms();
	initSignUp();
	initSignIn();
	initPasswordReset();

});


function initHideCommentForms(){

	jQuery('#comment-sign-up').hide();
	jQuery('#comment-password-reset').hide();

}

function initSignUp(){

	jQuery('.sign-up-link').click(function(){

		jQuery('#comment-sign-in').hide();
		jQuery('#comment-password-reset').hide();
		jQuery('#comment-sign-up').show();
	
	});

}

function initSignIn(){

	jQuery('.sign-in-link').click(function(){

		jQuery('#comment-sign-up').hide();
		jQuery('#comment-password-reset').hide();
		jQuery('#comment-sign-in').show();
	
	});

}

function initPasswordReset(){

	jQuery('.reset-password-link').click(function(){

		jQuery('#comment-sign-up').hide();
		jQuery('#comment-sign-in').hide();
		jQuery('#comment-password-reset').show();
	
	});


}
