/*
 * hoverIntent, superfish, subfish, exeter.custom, emailProtector 
 */
(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev])}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob)},cfg.interval)}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev])};var handleHover=function(e){var p=(e.type=="mouseover"?e.fromElement:e.toElement)||e.relatedTarget;while(p&&p!=this){try{p=p.parentNode}catch(e){p=this}}if(p==this){return false}var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t)}if(e.type=="mouseover"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob)},cfg.interval)}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob)},cfg.timeout)}}};return this.mouseover(handleHover).mouseout(handleHover)}})(jQuery);(function($){$.fn.superfish=function(op){var sf=$.fn.superfish,c=sf.c,$arrow=$(['<span class="',c.arrowClass,'"> &#187;</span>'].join("")),over=function(){var $$=$(this),menu=getMenu($$);clearTimeout(menu.sfTimer);$$.showSuperfishUl().siblings().hideSuperfishUl()},out=function(){var $$=$(this),menu=getMenu($$),o=sf.op;clearTimeout(menu.sfTimer);menu.sfTimer=setTimeout(function(){o.retainPath=($.inArray($$[0],o.$path)>-1);$$.hideSuperfishUl();if(o.$path.length&&$$.parents(["li.",o.hoverClass].join("")).length<1){over.call(o.$path)}},o.delay)},getMenu=function($menu){var menu=$menu.parents(["ul.",c.menuClass,":first"].join(""))[0];sf.op=sf.o[menu.serial];return menu},addArrow=function($a){$a.addClass(c.anchorClass).append($arrow.clone())};return this.each(function(){var s=this.serial=sf.o.length;var o=$.extend({},sf.defaults,op);o.$path=$("li."+o.pathClass,this).slice(0,o.pathLevels).each(function(){$(this).addClass([o.hoverClass,c.bcClass].join(" ")).filter("li:has(ul)").removeClass(o.pathClass)});sf.o[s]=sf.op=o;$("li:has(ul)",this)[($.fn.hoverIntent&&!o.disableHI)?"hoverIntent":"hover"](over,out).each(function(){if(o.autoArrows){addArrow($(">a:first-child",this))}}).not("."+c.bcClass).hideSuperfishUl();var $a=$("a",this);$a.each(function(i){var $li=$a.eq(i).parents("li");$a.eq(i).focus(function(){over.call($li)}).blur(function(){out.call($li)})});o.onInit.call(this)}).each(function(){var menuClasses=[c.menuClass];if(sf.op.dropShadows&&!($.browser.msie&&$.browser.version<7)){menuClasses.push(c.shadowClass)}$(this).addClass(menuClasses.join(" "))})};var sf=$.fn.superfish;sf.o=[];sf.op={};sf.IE7fix=function(){var o=sf.op;if($.browser.msie&&$.browser.version>6&&o.dropShadows&&o.animation.opacity!=undefined){this.toggleClass(sf.c.shadowClass+"-off")}};sf.c={bcClass:"sf-breadcrumb",menuClass:"sf-js-enabled",anchorClass:"sf-with-ul",arrowClass:"sf-sub-indicator",shadowClass:"sf-shadow"};sf.defaults={hoverClass:"sfHover",pathClass:"overideThisToUse",pathLevels:1,delay:800,animation:{opacity:"show"},speed:"normal",autoArrows:true,dropShadows:true,disableHI:false,onInit:function(){},onBeforeShow:function(){},onShow:function(){},onHide:function(){}};$.fn.extend({hideSuperfishUl:function(){var o=sf.op,not=(o.retainPath===true)?o.$path:"";o.retainPath=false;var $ul=$(["li.",o.hoverClass].join(""),this).add(this).not(not).removeClass(o.hoverClass).find(">ul").hide().css("visibility","hidden");o.onHide.call($ul);return this},showSuperfishUl:function(){var o=sf.op,sh=sf.c.shadowClass+"-off",$ul=this.addClass(o.hoverClass).find(">ul:hidden").css("visibility","visible");sf.IE7fix.call($ul);o.onBeforeShow.call($ul);$ul.animate(o.animation,o.speed,function(){sf.IE7fix.call($ul);o.onShow.call($ul)});return this}})})(jQuery);(function($){$.fn.supersubs=function(options){var opts=$.extend({},$.fn.supersubs.defaults,options);return this.each(function(){var $$=$(this);var o=$.meta?$.extend({},opts,$$.data()):opts;var fontsize=$('<li id="menu-fontsize">&#8212;</li>').css({padding:0,position:"absolute",top:"-999em",width:"auto"}).appendTo($$).width();$("#menu-fontsize").remove();$ULs=$$.find("ul");$ULs.each(function(i){var $ul=$ULs.eq(i);var $LIs=$ul.children();var $As=$LIs.children("a");var liFloat=$LIs.css("white-space","nowrap").css("float");var emWidth=$ul.add($LIs).add($As).css({"float":"none",width:"auto"}).end().end()[0].clientWidth/fontsize;emWidth+=o.extraWidth;if(emWidth>o.maxWidth){emWidth=o.maxWidth}else{if(emWidth<o.minWidth){emWidth=o.minWidth}}emWidth+="em";$ul.css("width",emWidth);$LIs.css({"float":liFloat,width:"100%","white-space":"normal"}).each(function(){var $childUl=$(">ul",this);var offsetDirection=$childUl.css("left")!==undefined?"left":"right";$childUl.css(offsetDirection,emWidth)})})})};$.fn.supersubs.defaults={minWidth:9,maxWidth:25,extraWidth:0}})(jQuery);$(document).ready(function(){$("ul.sf-menu").supersubs({minWidth:12,maxWidth:27,extraWidth:1}).superfish({autoArrows:false,dropShadows:true});$("li.subsection a","#navigationlist").hover(function(){var curSrc=$(this).children("img").attr("src"),newSrc=$(this).children("img").attr("src").replace("nav_arrow_right_black.gif","nav_arrow_right_white.gif");if(curSrc!=newSrc){$(this).children("img").attr("src",newSrc)}},function(){var origSrc=$(this).children("img").attr("src").replace("nav_arrow_right_white.gif","nav_arrow_right_black.gif");if(!$(this).closest("li").hasClass("sel")){$(this).children("img").attr("src",origSrc)}});$("#anormal,#amedium,#alarge").hover(function(){$(this).addClass("lnkhover")},function(){$(this).removeClass("lnkhover")}).click(function(){var ourText=$("#textcontent");var currFontSize=ourText.css("fontSize");var finalNum=parseFloat(currFontSize,10);var stringEnding=currFontSize.slice(-2);if(this.id=="amedium"||this.id=="alarge"){finalNum*=1.2}else{if(this.id=="anormal"){finalNum/=1.2}}ourText.css("fontSize",finalNum+stringEnding)});$("#printpage").hover(function(){$(this).addClass("lnkhover")},function(){$(this).removeClass("lnkhover")}).click(function(){window.print()});$("#sterm").focus(function(){var strm=$(this).val();if(strm=="Search..."){$(this).val("")}}).blur(function(){var strm=$(this).val();if(strm==""){$(this).val("Search...")}});$("div.block180","#homecontainer").hover(function(){var idx=$("div.block180","#homecontainer").index($(this)),block=idx+1;$(this).addClass("lnkhover");$("div.photoblock","div.block660").hide().eq(idx).show();$("div.photodivider","div.block660").removeAttr("class").addClass("photodivider block"+block)},function(){$(this).removeClass("lnkhover")})});var decryption_cache=new Array();function decrypt_string(crypted_string,n,decryption_key,just_email_address){var cache_index="'"+crypted_string+","+just_email_address+"'";if(decryption_cache[cache_index]){return decryption_cache[cache_index]}if(addresses[crypted_string]){var crypted_string=addresses[crypted_string]}if(!crypted_string.length){return"Error, not a valid index."}if(n==0||decryption_key==0){var numbers=crypted_string.split(" ");n=numbers[0];decryption_key=numbers[1];numbers[0]="";numbers[1]="";crypted_string=numbers.join(" ").substr(2)}var decrypted_string="";var crypted_characters=crypted_string.split(" ");for(var i in crypted_characters){var current_character=crypted_characters[i];var decrypted_character=exponentialModulo(current_character,n,decryption_key);if(just_email_address&&i<7){continue}if(just_email_address&&decrypted_character==63){break}decrypted_string+=String.fromCharCode(decrypted_character)}decryption_cache[cache_index]=decrypted_string;return decrypted_string}function decrypt_and_email(crypted_string,n,decryption_key){if(!n||!decryption_key){n=0;decryption_key=0}if(!crypted_string){crypted_string=0}var decrypted_string=decrypt_string(crypted_string,n,decryption_key,false);parent.location=decrypted_string}function decrypt_and_echo(crypted_string,n,decryption_key){if(!n||!decryption_key){n=0;decryption_key=0}if(!crypted_string){crypted_string=0}var decrypted_string=decrypt_string(crypted_string,n,decryption_key,true);document.write(decrypted_string);return true}function exponentialModulo(base,exponent,y){if(y%2==0){answer=1;for(var i=1;i<=y/2;i++){temp=(base*base)%exponent;answer=(temp*answer)%exponent}}else{answer=base;for(var i=1;i<=y/2;i++){temp=(base*base)%exponent;answer=(temp*answer)%exponent}}return answer};
