var Top = {
	load : function () {  	
		$$('#top ul .topMenuText').addEvents({
	        mouseenter: function(){
	            $(this.getParent().getParent().getElement('.topMenuBackground')).morph({
	        		'opacity': [1],
	        		'background-color': '#F3F3F3'
	        	});	
			},
	        mouseleave: function(){
	            $(this.getParent().getParent().getElement('.topMenuBackground')).morph({
	        		'opacity': [0.4],
	        		'background-color': '#FFFFFF'
	        	});	
			},
	        click: function(){
				//document.location = this.getParent().getProperty('href');
				//alert(this.getParent().getProperty('rel'));
			}
	    });
    
	    $$('.topMenuBackground').each(function(el) {
	    	el.set('opacity','0.4');
	    });
  }
}
window.addEvent('load', Top.load);