window.addEvent('domready', function() {
	var els = $$('#banner-menu li');
	els.each(function(link) {
		link.get('tween').options.link = 'cancel';
		link.addEvent('mouseover', function() {
			els.each(function(tmp) {
				if (tmp == link) {
					tmp.fade('in');
				}
				else {
					tmp.fade(0.5);
				}
			});
		});
		link.addEvent('mouseout', function() {
			els.each(function(tmp) {
				if (tmp == link) {
					tmp.fade('in');
				}
				else {
					tmp.fade('in');
				}
			});
		});
	});
});