window.addEvent('domready', function() {
    $$('a.external').each(function(item) {
        item.setProperty('target', '_blank');
    });
    $$('#navigation dd').each(function(item) {
        item.addEvent('mouseover', function() {
            item.tween('opacity', 1);
        });
        item.addEvent('mouseout', function() {
            var tgt = (item.hasClass('sel')) ? 1 : 0.5;
            item.tween('opacity', tgt);
        });
        item.fireEvent('mouseout');
    });
    $$('#subnavigation dd a').each(function(item) {
        item.addEvent('mouseover', function() {
            item.tween('color', '#00ccff');
        });
        item.addEvent('mouseout', function() {
            var tgt = (item.getParent().hasClass('sel')) ? '#00ccff' : '#ffffff';
            item.tween('color', tgt);
        });
        item.fireEvent('mouseout');
    });
});