

<!-- funcao font scale -->
$(document).ready(function(){
	$("#up").fontscale("#content","up",{unit:"percent",increment:20});
	$("#down").fontscale("#content","down",{unit:"percent",increment:20});
	$("#reset").fontscale("#content","reset");
});

<!-- funcao menu effect -->
$(document).ready(function() {
	$('.menubt').append('<span class="hover"></span>').each(function () {
		var $span = $('> span.hover', this).css('opacity', 0);
		$(this).hover(function () {
			$span.stop().fadeTo(300, 1);
		}, function () {
			$span.stop().fadeTo(300, 0);
		});
	});
});



