﻿window.addEvent('domready', function() {
	
	$$('#topMenuHolder a').addEvents({
		'mouseover' : function(event) {
				this.set('morph', {duration: '100', transition: 'sine:out'});
				if(Browser.Engine.trident) {
					this.morph({backgroundColor:'#eee', borderBottomColor:'#4fbce4'});
				} else {
					this.morph({borderBottomColor:'#4fbce4'});
				}
			},
		'mouseout' : function(event) {
			this.morph({background:'none', borderBottomColor:'#e0e0e0'});
		}
	});
	//flashBanner();

});

function hideStatus(message) {
	window.status=message;
}


