// JavaScript Document
var w = window.innerWidth;  
var h = window.innerHeight;

function corDeFundoIn(id){
	document.getElementById(id).style.background = "#B3E0FF";
}

function corDeFundoOut(id, cor){
	document.getElementById(id).style.background = cor;
}

function destacaPaginaIn(id){	
		document.getElementById(id).style.height = "22px";
		document.getElementById(id).style.width = "22px";

		document.getElementById(id).style.fontSize = "14px";
		document.getElementById(id).style.cursor = "hand";

}

function destacaPaginaOut(id){			
		document.getElementById(id).style.height = "15px";
		document.getElementById(id).style.width = "18px";
		document.getElementById(id).style.fontSize = "12px";
		document.getElementById(id).style.cursor = "pointer";

	
}
