$(document).ready(function() {
	// Hover me at the top
	$("#tTip").hover(function() {
		if ($(".lh", this).css("display") == "block") { return false; }
		os = $(this).offset();
		$("div.lh", this).css({top: os.top+"px", left: os.left+10+"px"}).animate({top: os.top-90+"px", opacity: "show"}, 750);
	},
	function() {
		os = $(this).offset();
		$(".lh", this).animate({top: os.top+"px", opacity: "hide"}, 500);
	});

});

