function startList() {
	document.getElementById("color_div").style.height = document.getElementById("gallery").clientHeight - 10 + "px";
	document.getElementById("content_div").style.height = document.getElementById("gallery").clientHeight + "px";
//	document.getElementById("color_div").style.height = document.all.gallery.scrollHeight-10;
//	document.getElementById("content_div").style.height = document.all.gallery.scrollHeight;
	if (document.all&&document.getElementById) {
		cssdropdownRoot = document.getElementById("mc");
		for (x = cssdropdownRoot.childNodes.length; x-- > 0; ) {
			node = cssdropdownRoot.childNodes[x];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}