

<!-- 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);
		});
	});
});


<!-- funcao zebra table -->
$(function(){
  $("table.tiger-stripe tr:even").addClass("oddrow");
});

// player

$(document).ready(function(){

	$("#jquery_jplayer_1").jPlayer({
		ready: function () {
			$(this).jPlayer("setMedia", {
				mp3: "http://agroindfamiliar.com.br/anexos/jingle.mp3"
			}).jPlayer("play");
		},
		ended: function (event) {
			$(this).jPlayer("play");
		},
		swfPath: "js",
		supplied: "mp3"
	});
});
