$(document).ready(function() {
						   
// Tamanho do texto
	var tam = 12;

	$("li#menor a").click(function() {	
		if (tam > 10) {	tam = tam - 2; }
		$('.interna #col2 p').css('font-size', tam + 'px');	
		$('.interna #col2 h3').css('font-size', tam+8 + 'px');	
		$('.interna ul.links li').css('font-size', tam-1 + 'px');	
		
	}); 

	$("li#maior a").click(function() {	
		if (tam < 16) {	tam = tam + 2; }
		$('.interna #col2 p').css('font-size', tam + 'px');
		$('.interna #col2 h3').css('font-size', tam+8 + 'px');
		$('.interna ul.links li').css('font-size', tam-1 + 'px');
	}); 
	

// Hover - Menu e Idiomas
	$("#header #menu ul li").hover(function() {		
		$(this).css({"backgroundPosition": "0 -5px"});
	}, function() {	
		$(this).css({"backgroundPosition": "0 -15px"});
	});

	$("#footer #idiomas ul li").hover(function() {		
		$(this).css({"backgroundPosition": "0 0px"});
	}, function() {	
		$(this).css({"backgroundPosition": "0 10px"});
	});


// Lightbox
    	$(function() {
        	$('#galeria a').lightBox();
    	});

});