$(document).ready(function(){

	$(".tabs .tabIndex a").each(function(){
		if(!$(this).hasClass("emph")) {
			$(this.href.substr(this.href.indexOf("#"))).hide();
		}
		
		$(this).click(function(){
			$(".tabs .tabIndex a").removeClass("emph");
			$(this).addClass("emph");
			$(".tabs .tabTab").hide();
			$(this.href.substr(this.href.indexOf("#"))).show();
			return false;
		});
	});
		
	if($("#forgotSend").length > 0) {
		$("#forgotSend").click(function(){
			$("#frmForgot").fadeIn();
			$(this).hide();
		});
	}		
		
});

