/* ---------------------01. MA Logo Animation02. External Windows03. Services Accordion--------------------- */$(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. SERVICES ACCORDION	---------------------------------------------------------- */	$("dl.slider dd").hide();	$("dl.slider dt").click(	function(){		$(this).next("dd").slideToggle("slow")		.siblings("dd:visible").slideUp("normal");		$(this).toggleClass("active");		$(this).siblings("dt").removeClass("active")	});	// $("dl.slider dt").hover(	// function(){	// 	$(this).next("dd").slideToggle("slow")	// 	.siblings("dd:visible").slideUp("normal");	// 	$(this).toggleClass("active");	// 	$(this).siblings("dt").removeClass("active")	// }, function() {	// // empty function for 'hover-out' to prevent errors in IE	// });});
