// JavaScript Document
	function loaded() {
		changeCategory(document.all.category.options[document.all.category.selectedIndex].value);
		// below hides the submit till the page loads
		if( document.getElementById ) { // NS6+
			var target = subbutton //document.getElementById(targetName);
		} else if( document.all ) { // IE4+
			var target = subbutton //target = document.all[targetName];
		}

		if( target ) {
			if( target.style.display == "none" ) {
				target.style.display = "inline";
			} else {
				target.style.display = "none";
			}
		}
	}
	
	
	function MM_openBrWindow(theURL,winName,features) { file://v2.0
  window.open(theURL,winName,features);
}


function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location.href='http://www.official-merchandise.com/index.htm?"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}