$(function() {
	
	var offsetX = 16;
	var offsetY = -30;
	
	
	$("a.popup").hover(function(e) {
		
		var getid = $(this).attr("rel");
		
		$("<div/>").addClass("tip").load("http://www.thewaytoyahuweh.com/notes.html " + getid).hide().appendTo("body");
		$(".tip").fadeIn("slow");
		$(".tip").css({
					top: e.pageY + offsetY,
					left: e.pageX + offsetX,
					});
		
	}, function() { 
		
		$(".tip").fadeOut("fast", function() { $(".tip").remove(); });
	
	});	
});
