var oTemplate = new Template();

function Template() {
	
	this.initBeforeLoad = function(){
	}
	
	this.initAfterLoad = function() {
	}
	
	this.fontSizer = function(action) {
		var oFontSizer = new FontSizer();
		if (action == 'dec') {
			oFontSizer.dec();
		} else {
			oFontSizer.inc();
		}
	}
}

