fontSize = 11;

function font() {
	if(fontSize == 11) {
		fontSize = 14;
	} else {
		fontSize = 11;
	}
	//document.body.style.fontSize = fontSize+"px";
	$("#main-content").css('font-size', fontSize+"px");
	
}

