//author: cibele bueno
//06-03-2010
//touch tecnologia

//criar uma função para cada class do css

//-------------------------------------------------------------------------------------------------------------------------------

// inicio função para aumentar e diminuir letra
$(document).ready(function(){
	
		tamanho_fonte = 10 //tamanho da fonte inicial
		
		$("#aumentar").click(function(){
			$(".tituloAzul10").css('font-size', tamanho_fonte+1+'px')
			$(".textoBranco10").css('font-size', tamanho_fonte+1+'px')
			$(".textoPadrao10").css('font-size', tamanho_fonte+1+'px')
			$(".tituloAzul11").css('font-size', tamanho_fonte+1+'px')
			$(".textonormal").css('font-size', tamanho_fonte+1+'px')
			$(".textomenu").css('font-size', tamanho_fonte+1+'px')
			$(".textoForm").css('font-size', tamanho_fonte+1+'px')
			$(".linkMenuTopo").css('font-size', tamanho_fonte+1+'px')
			tamanho_fonte = tamanho_fonte+1
		})
		$("#diminuir").click(function(){
     		$(".tituloAzul10").css('font-size', tamanho_fonte-1+'px')
			$(".textoBranco10").css('font-size', tamanho_fonte-1+'px')
			$(".textoPadrao10").css('font-size', tamanho_fonte-1+'px')
			$(".tituloAzul11").css('font-size', tamanho_fonte-1+'px')
			$(".textonormal").css('font-size', tamanho_fonte-1+'px')
			$(".textomenu").css('font-size', tamanho_fonte-1+'px')
			$(".textoForm").css('font-size', tamanho_fonte-1+'px')
			$(".linkMenuTopo").css('font-size', tamanho_fonte-1+'px')
			tamanho_fonte = tamanho_fonte-1
		})
})
//fim da função

//-------------------------------------------------------------------------------------------------------------------------------

