var oTemplate = new Template();

function Template() {
	this.oDDM = new DropDownMenu('mainNav');
	
	this.initBeforeLoad = function(){
	}
	
	this.initAfterLoad = function() {
		this.oDDM.enableMenu();
	}
	
	this.resize = function() {
		document.body.style.zoom = 1;
	}
	
}

