
// Hover hints

$(document).ready(function(){

	$("#links a").hover(function() {
		$(this).next("div").animate({opacity: "show", top: "-200", left: "50"}, "slow");
	}, function() {
		$(this).next("div").animate({opacity: "hide", top: "-200", left: "50"}, "slow");
	});

});



