window.addEvent('domready',function(){
    $$('#topnav a').each(function(item,index){
        if($(item).href == window.location.href){
            $(item).addClass('active');
        }
    });

    $$('#footernav a').each(function(item,index){
        if($(item).href == window.location.href){
            $(item).addClass('active');
        }
    });

    $$('.follow li a').each(function(item,index){
        if(!item.hasClass('active')){
            item.addEvent('mouseover',function(){
                this.getFirst().set('tween', {duration: 700,transition: Fx.Transitions.Quint.easeOut});
                this.getFirst().tween('margin-top', '0px');
            });

            item.addEvent('mouseout',function(){
                this.getFirst().set('tween', {duration: 350,transition: Fx.Transitions.Quint.easeOut});
                this.getFirst().tween('margin-top', '-25px');
            });
        }
    });
});
