/*
 * infoBubble
 *
 * http://www.chrisjhill.co.uk/Articles/jQuery_tooltip
 *
 */



$(document).ready(function() {
	$(".infoBubble").hover(function() {
		if ($(".popup", this).css("display") == "block") { return false; }
		os = $(this).offset();
		$("div.popup", this).css({top: os.top-40+"px", left: os.left+"px"}).animate({top: os.top-95+"px", opacity: "show"}, 700);
	   // $("div.hover", this).css({top: os.top+"px", left: os.left+60+"px"}).animate({top: os.top-60+"px", opacity: "show"}, 750);
	},
	function() {
		os = $(this).offset();
		$(".popup", this).animate({top: os.top+"px", opacity: "hide"}, 500);
	});
});

