var tam = 12;
function mudaFonte( tipo )
{
  if( tipo == 'mais' )
  {
    if( tam < 16 ) tam += 2 ;    			 
  }
  else
  {
    if( tam > 9 ) tam -= 2 ;
  }
  if( document.getElementById( 'mudaFonte' ) )
    mudaFonteRecursiva( tipo , document.getElementById( 'mudaFonte' ) ) ;

  if( document.getElementById( 'mudaFoto' ) )
    mudaFonteRecursiva( tipo , document.getElementById( 'mudaFoto' ) ) ;  
}

function mudaFonteRecursiva( tipo , domElement )
{		
  for( var i = 0 ; i < domElement.childNodes.length ; i++ )
  {
    mudaFonteRecursiva( tipo , domElement.childNodes.item( i )  ) ;
  }
  if( domElement.style )
    domElement.style.fontSize = tam+'px';
}

var flag=0;
function mudaBg(num){
	if (flag==0){
		document.getElementById('tab'+num).style.backgroundColor='#EEEEEE';
		document.getElementById('tab'+num).style.color='#D90000';
		flag=num;
	}else{
		document.getElementById('tab'+num).style.backgroundColor='#EEEEEE';
		document.getElementById('tab'+num).style.color='#D90000';
		document.getElementById('tab'+flag).style.color='#333333';
		document.getElementById('tab'+flag).style.backgroundColor='#C8CED3';
		flag=num;
	}
}
