// JavaScript Document
/*window.onload = function() {
	alert("");
	if (/MSIE (5\.5|6).+Win/.test(navigator.userAgent)) {
		var qwe = document.getElementById("qwe");
		var menuList = document.getElementById("menuSub");
	//	alert(menuList);
		for(var node = menuList.firstChild; node; node = node.nextSibling) {
	//		alert(node);
	
			node.firstChild.onmouseover = over;
				
			node.firstChild.onmouseout = out;
			
		}
		
		function over() {
			if(this.className == "menuItemRefer iePNG") {
				this.style.background = "url(images/referBcgrSub.jpg) top left no-repeat";
			}
			
		}
		
		function out() {
			if(this.className == "menuItemRefer iePNG") {
				this.style.background = "none";
			}
		}
		
		
		
		
		
		
		
		
	}
	
	
}

*/











