window.addEvent("domready", function() {
	//highlight menus
	var menuitems = $$(".menu li");
	menuitems.each(function(el) {
		if(!(el.hasClass("current-cat") || el.hasClass("current-post"))) {
			el.set("tween", {
				"duration": 200
			});
			el.addEvent("mouseover",function(){
				this.tween("background-color", "#444");				
			});
			el.addEvent("mouseout",function(){
				this.tween("background-color", "#FFF");
			});
		}
	});
	
	
});