// JavaScript Document
function mudaGoogle(identifier,total){
	var numTotal=Number;
	numTotal=parseInt(total,10);
	for(i=1;i<=total;i++){
		document.getElementById('mapa'+i).className='closed';
	}
	document.getElementById(identifier).className=' ';
}

function tabNav(identifier,total){
	var numTotal=Number;
	numTotal=parseInt(total,10);
	for(i=1;i<=total;i++){
		document.getElementById('tabBlock'+i).className='closedBlock';
		document.getElementById('tab'+i).className='closed';
	}
	document.getElementById('tabBlock'+identifier).className='tabBlock';
	document.getElementById('tab'+identifier).className='selected';
}