
function overItems() {
	if(document.getElementsByTagName) {
		document.getElementById("menu01").onmouseover =function() {
		document.getElementById("menu01_over").style.visibility = "visible";
  document.getElementById("menu01_over").style.filter = "alpha(opacity=90)";
  document.getElementById("menu01_over").style.MozOpacity = 0.9;
  document.getElementById("menu01_over").style.opacity = 0.9;
		}
		document.getElementById("menu01").onmouseout =function() {
		document.getElementById("menu01_over").style.visibility = "hidden";
		}
		document.getElementById("menu02").onmouseover =function() {
		document.getElementById("menu02_over").style.visibility = "visible";
  document.getElementById("menu02_over").style.filter = "alpha(opacity=90)";
  document.getElementById("menu02_over").style.MozOpacity = 0.9;
  document.getElementById("menu02_over").style.opacity = 0.9;
		}
		document.getElementById("menu02").onmouseout =function() {
		document.getElementById("menu02_over").style.visibility = "hidden";
		}
	}
}
if (window.addEventListener) {
window.addEventListener("load", overItems, false);
}
if (window.attachEvent) {
window.attachEvent("onload", overItems);
}



//
//$(function(){
//$("#menu01").mouseover(function(){
//		$("#menu01_over").fadeIn("slow");
//	});
//$("#menu01").mouseout(function(){
//		$("#menu01_over").hide("fast");
//	});
//$("#menu02").mouseover(function(){
//		$("#menu02_over").fadeIn("slow");
//	});
//$("#menu02").mouseout(function(){
//		$("#menu02_over").hide("fast");
//	});
//});
