window.onload = function() {

	// AlphaImageLoader for IE6
	var img = document.getElementsByTagName("img");
	for (i=0; i<img.length; i++) {
		if (typeof document.body.style.maxHeight=="undefined") {
			var src=img[i].getAttribute("src");
			if (src.match(/\.(png)$/i)) {
				img[i].setAttribute("src", "image/transparent.gif");
				img[i].style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+src+"',sizingMethod=scale)";
			}
		}
	}

	// button
	document.getElementById('menu1').onmouseout=function() { document.getElementById('menu1').className='menu1_off'; }
	document.getElementById('menu1').onmouseover=function() { document.getElementById('menu1').className='menu1_on'; }
	document.getElementById('menu2').onmouseout=function() { document.getElementById('menu2').className='menu2_off'; }
	document.getElementById('menu2').onmouseover=function() { document.getElementById('menu2').className='menu2_on'; }
	document.getElementById('menu3').onmouseout=function() { document.getElementById('menu3').className='menu3_off'; }
	document.getElementById('menu3').onmouseover=function() { document.getElementById('menu3').className='menu3_on'; }
	document.getElementById('menu4').onmouseout=function() { document.getElementById('menu4').className='menu4_off'; }
	document.getElementById('menu4').onmouseover=function() { document.getElementById('menu4').className='menu4_on'; }





}

