	if (window != top) top.location.href = location.href;

	var subMenus = new Array();
	var timerId = null;

	function ResetSubMenus(contentId){
	
		ClearTimer();
	
		for(i=0;i<subMenus.length;i++){
			if(contentId != subMenus[i]){	DisplaySubMenu(subMenus[i] , 0);	}
		}
	}

	function DisplaySubMenu(contentId,display){

		if(display == 1){
			ResetSubMenus(contentId);
		}

		if((display == 1) && (document.getElementById("SubMenu" + contentId) != null)){
			document.getElementById("SubMenu" + contentId).style.top = "272px";
		}
		if((display == 0) && (document.getElementById("SubMenu" + contentId) != null)){
			document.getElementById("SubMenu" + contentId).style.top = "-1000px";
		}
	}

	function OutSubMenu(){
		timerId = setTimeout("ResetSubMenus('')",200);
	}

	function ClearTimer(){
		if(timerId != null){
			clearTimeout(timerId);
			timerId = null;
		}
	}
