// JavaScript Document
startList = function() {
	if (document.all&&document.getElementById) {
    $$("#menuItemsList LI", "#menuItemsList LI LI").each(function(item) {
				item.onmouseover=function() {
					this.className+=" over";
				};
				item.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				};
    });
	}
};

