window.addEvent('domready', function() {
	var list = $$('ul.menu li');
	list.each(function(element) { 	
		var fx = new Fx.Morph(element, {duration: 'normal'});
		var fx2 = new Fx.Morph(element.getElement('a'), {duration: 'normal'});
		element.addEvent('mouseover', function() {
			fx.cancel();
			fx2.cancel();
			fx.start({'color':'#efe5d8','background-color':'#684420'});
			fx2.start({'color':'#efe5d8'});
		});
		element.addEvent('mouseout', function() {
			fx.cancel();
			fx2.cancel();
			fx.start({'color':'#5a330d','background-color':'#FFFFFF'});
			fx2.start({'color':'#5a330d'});
		});
		element.addEvent('click', function(e) {
			if(this.getElement("a").get("target") && this.getElement("a").get("target").toUpperCase()=="_BLANK") {
				e.stop();
				window.open(this.getElement("a").get('href'),"newWin");
			} else {
				e.stop();
				location.href = this.getElement("a").get('href');
			}
		});
	});
});
