 window.addEvent('domready', function() { 
		$$("img.ghost").each(function (ghostimg) {
			ghostimg.setStyle('opacity', 0);
		});
		$$("#menu a").each(function (link) {
			if(link.getElement('img.ghost')) {
			link.addEvents({
				'mouseover' : function() { 
					this.getElement('img.ghost').tween('opacity', 0.99);
					this.getParent().tween('color', '#333331');
				},
				'mouseout' : function() { 
					this.getElement('img.ghost').tween('opacity', 0);
					this.getParent().tween('color', '#666666');
				}
			});
			}
		});
})
