$(function(){
	$("#menu_wrapper a").each(function(){
		if ($(this).attr("class")!="selected"){
			$(this).stop().animate({ "opacity": .6 },300);
		}
	});
	$("#menu_wrapper a").hover(
		function(){
			$(this).stop().animate({ "opacity": 1 },300);
		},
		function(){
			if ($(this).attr("class")!="selected"){
				$(this).stop().animate({ "opacity": .6 },300);
			}
		}
	);
});

$(function(){
	$("#sigla_normal").hover(
      function () {
        $(this).stop().animate({ "opacity": 0 });
      },
      function () {
        $(this).stop().animate({ "opacity": 1 });
      }
	);
})
