function kicsi() {
document.getElementById('hir').style.fontSize = "9px";
document.getElementById('hir_cim').style.fontSize = "11px";
}


function normal() {
document.getElementById('hir').style.fontSize = "11px";
document.getElementById('hir_cim').style.fontSize = "14px";
}

function nagy() {
document.getElementById('hir').style.fontSize = "16px";
document.getElementById('hir_cim').style.fontSize = "20px";
}


function kontraszt() {
	if(document.getElementById('hir').style.fontSize == "13pt") {
		nagy();
	}
	else {
		normal();
	}
}

