// TO MAKE DROPDOWNS WORK IN IE6 //

Event.addBehavior({
	'#menu li:mouseover': function() { 
		$('menu').childElements().each(function(item) { item.removeClassName('active'); })
		this.addClassName("visible");
	},
	'#menu:mouseout': function() { 
		$('menu').childElements().each(function(item) { item.removeClassName('visible'); })
	}
});

// ADDS _BLANK IN NON-DEPRECATED WAY //

Event.observe(window, 'load', function() {
    $$('a[rel="external"]').each(function(link){
        if(link.readAttribute('href') != '' && link.readAttribute('href') != '#'){
			link.writeAttribute('target','_blank');
			link.writeAttribute('title','Opens in new window');
		}
	});
});
