function linkFade(a){$$(a).each(function(c){var b=new Fx.Tween(c,{duration:240,wait:false});c.set("opacity",0.85);c.addEvents({mouseover:function(){b.start("opacity",[0.85,1])},mouseout:function(){b.start("opacity",[1,0.85])}})})}function contentFade(a,b){$$(a).each(function(e){var c=e.getElement(b);var d=new Fx.Tween(c,{duration:180,wait:false});c.set("opacity",0);e.addEvents({mouseenter:function(){d.start("opacity",[0,1])},mouseleave:function(){d.start("opacity",[1,0])}})})}function contentSlide(c,a,b){$$(c).each(function(g){var f=g.getElement(b);var d=g.getElement(a);var e=new Fx.Slide(d,{duration:240,mode:"vertical",onComplete:alert(f)}).hide();f.addEvent("click",function(){e.toggle()})})};
