$(document).ready(function() {
		//chefe
				$('li.links').hover(
			function() { $('ul', this).fadeIn(300); $(this).find('a').addClass('ativo'); },
			function() { $('ul', this).css('display', 'none'); $('li.links a').removeClass('ativo'); });
	});

$(function() {
// set opacity to nill on page load
	$("#menu ul li a span").css("opacity","0");
	$("#menu ul li a span").hover(function () {
		// animate opacity to full
		$(this).stop().animate({
			opacity: 1
		}, 500);
	},
	// on mouse out
	function () {
		// animate opacity to nill
		$(this).stop().animate({
			opacity: 0
		}, 500);
	});
						   
			//lk						   
		$('.boxes-superiores ul li').each(function(){
			$(this).hover(function(){
				var caminho = $(this).find('a').attr('href');
				$(this).find('p').css('text-decoration','underline');
			},function(){
				$(this).find('p').css('text-decoration','none');
			}).click(function(){
				var caminho = $(this).find('a').attr('href');
				window.location = caminho;
				return false
			});
		});
});
