function decryptCharcode(D,C,A,B){D=D+B;if(B>0&&D>A){D=C+(D-A-1);}else{if(B<0&&D<C){D=A-(C-D-1);}}return String.fromCharCode(D);}function decryptString(B,D){var F="";var A=B.length;for(var C=0;C<A;C++){var E=B.charCodeAt(C);if(E>=43&&E<=57){F+=decryptCharcode(E,43,58,D);}else{if(E>=64&&E<=90){F+=decryptCharcode(E,64,90,D);}else{if(E>=97&&E<=122){F+=decryptCharcode(E,97,122,D);}else{F+=B.charAt(C);}}}}return F;}function mailto(A,B){B=-B;x=decryptString(A,B);document.location.href="mailto:"+x;}function SwitchImg(n,b){x=new Image();x.src=b;document.images[n].src=eval("x.src");}window.addEvent("domready",function(){$each($$(".fade"),function(B){var A=B.getStyle("color");var C=new Fx.Morph(B,{"duration":"300",link:"cancel"});B.addEvents({"mouseenter":function(){C.start({"color":"#ff8800"});},"mouseleave":function(){C.start({"color":A});}});});$each($$(".menufade"),function(B){var A=B.getStyle("color");var C=new Fx.Morph(B,{"duration":"300",link:"cancel"});B.addEvents({"mouseenter":function(){C.start({"color":"#ffcc33"});},"mouseleave":function(){C.start({"color":A});}});});});
