(function(){
	window.addEvent("domready", init);
	
	function init() {
		document.getElement(".TDW_module_mainmenu").getElements("a").addEvents({
			"mouseenter": function() {
				this.set({
					"morph": {duration: 300}
				}).morph({
					"padding-right": "12px",
					"background-color": "#e0c8bd"
				});
			},
			"mouseleave": function() {
				this.morph({
					"padding-right": "4px",
					"background-color": "#f6ece5"
				});
			}
		});
		
		document.getElement("#TDW_topMenuHolder ul").getLast("li").setStyle("background-image", "none");
		
		document.getElement("#TDW_topMenuHolder").getElements("a").addEvents({
			"mouseenter": function() {
			this.set({
				"morph": {duration: 500}
			}).morph({
				"background-color": "#fff",
				"color": "#333"
			});
		},
		"mouseleave": function() {
			this.morph({
				"background-color": "#666",
				"color": "#fff"
					
			});
		}
		});
	}
})();
