$(document).ready(function(){
						   
$(".list3 li").hover(function(){
	$(this).find("img").fadeOut("fast");
	$(this).find(".txt").fadeIn("fast");
	},
	function(){
	$(this).find("img").fadeIn("fast");
	$(this).find(".txt").fadeOut("fast");
});

$("ul.listlogos li").hover(function () {
      $(this).fadeTo("fast", 0.5);
    }, function () {
      $(this).fadeTo("fast", 1);
    }
);

});

$(function() {
	$("#over_honor").mouseover(function(event) {
		$("#tooltip_honor").fadeIn();
	});
	$("#over_honor").mouseout(function(event) {
		$("#tooltip_honor").fadeOut();
	});
});
