// JQUERY$(document).ready(function(){	/* ----------------------------------------	   MONCUR LOGO ANIM	-------------------------------------------*/	$("#moncur a").hover(function() {		$(this).prev("span").animate({opacity: "show", left: "-165"}, "slow");	}, function() {		$(this).prev("span").animate({opacity: "hide", left: "-175"}, "fast");	});		/* ----------------------------------------	   EXTERNAL LINKS	-------------------------------------------*/	$(function(){	    $('a.external').click(function(){		   window.open(this.href);		   return false;	    });	});	});// END JQUERY