function doIt() {
	var divref = document.getElementById("menu");
	var divplacer = document.createElement("div");
	divplacer.id = "info"
	var imgs = divref.getElementsByTagName("IMG");

	for (i=0; i<imgs.length; i++) {
		if ((imgs[i])) {
			var menu_imgs = imgs[i];
			menu_imgs.onmouseover=function() {
				var alts = this.getAttribute("alt");
				alt = document.createTextNode(alts);
				divplacer.appendChild(alt);
				this.parentNode.parentNode.appendChild(divplacer);
			}
			menu_imgs.onmouseout=function() {
				divplacer.removeChild(alt);
				this.parentNode.parentNode.removeChild(divplacer);
			}
		}
	}
}