
ActivateMenu = function(){
	this.PageNameDiv = document.getElementById("PageName");
	
	if(!document.all){
		this.PageName = this.PageNameDiv.getAttribute("class");
		document.getElementById(this.PageName).setAttribute("class","Active");
	}else{
		this.PageName = this.PageNameDiv.className;
		document.getElementById(this.PageName).className = "Active";
	}
}

AMObj = new ActivateMenu();

/*
CenteringStage = function(){
	this.WrapObj = document.getElementById("Wrap");
  this.w = window.innerWidth || self.innerWidth || document.body.clientWidth;
	if(document.all){
		MarginLeft = (this.w - 830 ) / 2;
		if(MarginLeft>0){
			this.WrapObj.style.cssText = "margin-left:"+MarginLeft+"px;";	
		}
	}

}

CSObj = new CenteringStage();
*/