/* ---------------------01. MA Logo Animation02. External Windows03. Bios Toggle04. Success Stories reveal--------------------- */$(document).ready(function(){	/*	----------------------------------------------------------	01. MA LOGO ANIMATION	---------------------------------------------------------- */	$("#moncur a").hover(function() {		$(this).prev("span").animate({opacity: "show", right: "5"}, "slow");	}, function() {		$(this).prev("span").animate({opacity: "hide"}, "fast");	});			/*	----------------------------------------------------------	02. EXTERNAL WINDOWS	---------------------------------------------------------- */	$(function(){	    $('a.external').click(function(){		   window.open(this.href);		   return false;	    });	});		/*	----------------------------------------------------------	03. BIOS TOGGLE	---------------------------------------------------------- */	$("div.member-bio").hide();	$("div.member a").click(function(){		$("div.member-bio").hide();		$("div.member").removeClass("active");		return false;		});		$("#ann a").click(function(){ //toggle		$("#ann-bio").animate({opacity: "show"}, "slow");		$("#ann").addClass("active");		return false;	});		$("#jeanne a").click(function(){ //toggle 		$("#jeanne-bio").animate({opacity: "show"}, "slow");		$("#jeanne").addClass("active");		return false;	});		$("#anna a").click(function(){ //toggle 		$("#anna-bio").animate({opacity: "show"}, "slow");		$("#anna").addClass("active");		return false;	});	$("#lerona a").click(function(){ //toggle 		$("#lerona-bio").animate({opacity: "show"}, "normal");		$("#lerona").addClass("active");		return false;	});	 	$("#brenda a").click(function(){ //toggle 		$("#brenda-bio").animate({opacity: "show"}, "normal");		$("#brenda").addClass("active");		return false;	});		/*	----------------------------------------------------------	04. SUCCESS STORIES	---------------------------------------------------------- */	$("dl.slider dd").hide();	//$("dl.slider dd:not(:first)").hide();	//$("dt:first").addClass("active");	$("dl.slider dt").click(function(){		$("dl.slider dd").hide();		$("dl.slider dt").removeClass("active");		return false;		});		$("dl.slider dt").click(function(){ //toggle		$(this).next("dd").animate({opacity: "show"}, "normal");		$(this).toggleClass("active")		return false;	});	});