$(document).ready(function() 
{
		$('.gallery,').fancybox({'transitionIn'	:	'elastic', 'transitionOut'	:	'elastic'});
		
	
		
		var fonte = 1;
				var line = 1.4;
				$('.aumenta').click(function(){
					if (fonte<50)
					{
						fonte = fonte+0.1;
						line = line+0.02;
						$('#conteudo *').attr('style','font-size:'+fonte+'em');
					}
				});
				
				$('.diminui').click(function(){
					if (fonte>1){
						fonte = fonte-0.1;
						line = line-0.02;
						$('#conteudo *').attr('style' , 'font-size:'+fonte+'em');
							
					}
				});

			
		$('.tooltipImg, #pagina img, #tt img').tooltip({ 
				delay: 0, 
				showURL: false, 
				fade: true,
				bodyHandler: function() { 
					return $("<img/>").attr("src", this.src); 
				}	 
		});
});
