// JavaScript Document
// Cria as teclas de atalho

document.onkeyup=function(e){
	var e = e || event;
	var k = e.keyCode || e.which;
	
	if (k==67) { 
		document.location = "#txt"
		document.getElementById("txt").focus();
	}
	if (k==77) { 
		document.location = "#menu"
		document.getElementById("menu_inicio").focus();
	}
	if (k==84) { 
		document.location = "#top"
		document.getElementById('top').focus();
	}
	if (k==65) { 
		Aumenta();
	}
	if (k==68) { 
		Diminui();
	}
}

