window.onload = function(){
	
	var fileUrl = location.href;

	menuHref = new Array;
	menuHref[0] = "ribbon101.html";
	menuHref[1] = "ribbon102.html";
	menuHref[2] = "ribbon103.html";
	menuHref[3] = "ribbon104.html";
	menuHref[4] = "ribbon201.html";
	menuHref[5] = "ribbon202.html";
	menuHref[6] = "ribbon301.html";
	menuHref[7] = "ribbon401.html";
	menuHref[8] = "ribbon402.html";
	menuHref[9] = "ribbon403.html";
	menuHref[10] = "ribbon501.html";
	menuHref[11] = "ribbon601.html";
	menuHref[12] = "ribbon701.html";
	menuHref[13] = "outdoor101.html";
	menuHref[14] = "outdoor102.html";
	menuHref[15] = "outdoor103.html";
	menuHref[16] = "outdoor104.html";
	menuHref[17] = "outdoor201.html";
	menuHref[18] = "outdoor202.html";
	menuHref[19] = "outdoor203.html";
	menuHref[20] = "outdoor301.html";
	menuHref[21] = "accessory101.html";
	menuHref[22] = "accessory201.html";
	menuHref[23] = "accessory301.html";
	menuHref[24] = "accessory401.html";
	menuHref[25] = "accessory501.html";
	menuHref[26] = "apparel101.html";
	menuHref[27] = "apparel102.html";
	menuHref[28] = "accessory601.html";
	
	menuId = new Array;
	menuId[0] = document.getElementById("ribbon101");
	menuId[1] = document.getElementById("ribbon101");
	menuId[2] = document.getElementById("ribbon101");
	menuId[3] = document.getElementById("ribbon104");
	menuId[4] = document.getElementById("ribbon201");
	menuId[5] = document.getElementById("ribbon202");
	menuId[6] = document.getElementById("ribbon301");
	menuId[7] = document.getElementById("ribbon401");
	menuId[8] = document.getElementById("ribbon402");
	menuId[9] = document.getElementById("ribbon403");
	menuId[10] = document.getElementById("ribbon501");
	menuId[11] = document.getElementById("ribbon601");
	menuId[12] = document.getElementById("ribbon701");
	menuId[13] = document.getElementById("outdoor101");
	menuId[14] = document.getElementById("outdoor102");
	menuId[15] = document.getElementById("outdoor103");
	menuId[16] = document.getElementById("outdoor104");
	menuId[17] = document.getElementById("outdoor201");
	menuId[18] = document.getElementById("outdoor202");
	menuId[19] = document.getElementById("outdoor203");
	menuId[20] = document.getElementById("outdoor301");
	menuId[21] = document.getElementById("accessory101");
	menuId[22] = document.getElementById("accessory201");
	menuId[23] = document.getElementById("accessory301");
	menuId[24] = document.getElementById("accessory401");
	menuId[25] = document.getElementById("accessory501");
	menuId[26] = document.getElementById("apparel101");
	menuId[27] = document.getElementById("apparel102");
	menuId[28] = document.getElementById("accessory601");

	var menuIdNum = menuId.length;
	
	var imgTag = document.createElement("img");
	imgTag.src = "http://www.msdsgroup.com/web_catalog/shared/images/ic_004.gif";
	imgTag.width = 8;
	imgTag.height = 10;
	imgTag.style.position = "absolute";
	imgTag.style.right = "-8px";
	imgTag.style.top = "10px";
	
	for(var i=0; i<menuIdNum; i++){
		if(fileUrl.match(menuHref[i])){
			menuId[i].style.backgroundColor = "#e8e2df";
			menuId[i].appendChild(imgTag);
			break;
		}
	}

}
