$(document).ready(function() {

	$("#frmLogin a.forgot_pwd").click(function() {
		$("#frmLogin").fadeOut("fast", function() {
			$("#frmForgotPwd").fadeIn();
		});
		return false;
	});

	$("#frmForgotPwd a.back_to_login").click(function() {
		$("#frmForgotPwd").fadeOut("fast", function() {
			$("#frmLogin").fadeIn();
		});
		return false;
	});

	/**
	 * Open all external links in a new window
	 */
	$("a[@href^=http]").each(
		function() {
			if ((this.href.indexOf(location.hostname) == -1) && ($(this).attr('target') == '')) { 
				$(this).attr('target', '_blank');
			}
		}
	);

});