﻿$(document).ready(function(){
	$(".tooltip-link").hover(
			function() { 
				var id = $(this).attr('id'); 
				//$('#'+id+'-content').css({ display: "block" });
				$(this).parent().parent().contents("div:last-child").css({ display: "block" }); 
			},
			function() {
				$(this).parent().parent().contents("div:last-child").css({ display: "none"}); 
			}
		);
	$(".tooltip-link").mousemove(function(e) {
			var mousex = e.pageX + 10;
			var mousey = e.pageY + 5;
			$(this).contents("div:last-child").css({  top: mousey, left: mousex });
		});


});
