// JavaScript Document
var intPos = document.URL.indexOf('SubCat');
if (intPos > 1) {
 var strPos = document.URL.substring(intPos + 7, document.URL.length) + "_Menu";
 document.getElementById(strPos).style.display = '';
}
