$(document).ready(function(){

/* botao ir para o topo */
	$().UItoTop({ easingType: 'easeOutQuart' });

// efeito em imagens com links

	$('a[class!=logo] img').stop().fadeTo('slow', 0.6);
	$('a[class!=logo] img').hover(function() { $(this).stop().fadeTo('slow', 1.0); },		
	function() { $(this).stop().fadeTo('slow', 0.6); });	

// menu lateral

	$('#conteudo #col_lateral ul li[class!=ativo]').hover(function() { $(this).addClass("sobre");
	}, function() { $(this).removeClass("sobre"); });

// tabelas

	$('table tr:even').addClass('zebra');

});
