$(document).ready(function(){

$(".pagina").colorbox({width:"80%", height:"80%", iframe:true});

$(".product li img").bubbleup();		
//logomarca
$('.logomarca').hover(function() { 	$('.logomarca a').animate({opacity: 0.5}, 200);		},  function () {	$('.logomarca a').animate({opacity: 1.0}, 200);});

//redes
$('.redes ul li a').hover(function() {	$(this).animate({opacity: 0.5}, 200);		},  function () {	$(this).animate({opacity: 1.0}, 200);});

//font
var fonte = 14;$(".aumenta-fonte").click(function(){	if (fonte<22)		{	fonte = fonte+2;			$(".main-texto").css({"font-size" : fonte+"px "});		}});$(".reduz-fonte").click(function(){		if (fonte>11)			{				fonte = fonte-2;				$(".main-texto").css({"font-size" : fonte+"px "});			}});		


});
