var oTemplate = new Template();

function Template() {
	this.oDDM = new DropDownMenu('DDMVertMenu');
	
	this.initBeforeLoad = function(){
	}
	
	this.initAfterLoad = function() {
		this.oDDM.enableMenu();
		
		var menuArea = document.getElementById("menuArea");
		var DDMVertMenu = document.getElementById("DDMVertMenu");
		menuArea.style.height = (DDMVertMenu.offsetHeight - 10) + 'px';
	}
	
	this.fontSizer = function(action) {
		var oFontSizer = new FontSizer();
		if (action == 'dec') {
			oFontSizer.dec();
		} else {
			oFontSizer.inc();
		}			
	}
}
