window.addEvent('domready',function(){ new SmoothScroll(); });
// Navigation (TESTING!):
window.addEvent('domready', function(){
    /*$('home').addEvents({
        'mouseenter': function(e){
            this.addClass('hover');
        },
        'mouseleave': function(e){
            this.removeClass('hover');
        }
    });*/
    $each(['products','literature','solutions','company','support','downloads'], function(item, index){
        $(item).addEvents({
            'mouseenter': function(e){
                this.addClass('hover');
                $(this.id+'-nav').setStyles({left: 'auto'});
            },
            'mouseleave': function(e){
                this.removeClass('hover');
                $(this.id+'-nav').setStyles({left: '-999em'});
            }
        });
    });
}); 