    $(document).ready(function(){

	$(".dir .curso a").hover(function() {
		$(".cursotips").animate({opacity: "show"}, "slow");
	}, function() {
		$(".cursotips").animate({opacity: "hide"}, "slow");
	});

	$(".dir .dicas a").hover(function() {
		$(".dicastips").animate({opacity: "show"}, "slow");
	}, function() {
		$(".dicastips").animate({opacity: "hide"}, "slow");
	});

	$(".dir .contato a").hover(function() {
		$(".contatotips").animate({opacity: "show"}, "slow");
	}, function() {
		$(".contatotips").animate({opacity: "hide"}, "slow");
	});

    });
