// - shows tip by jQuery

$(document).ready(function (){
	$("a.jTip").click(function (){
		var $nextItem = $(this).next();
		var $divId = 'mytip_' + this.id;
		if ($nextItem.attr('id') == $divId) { // hide tip
			$nextItem.remove();
		} else { // show tip
			$tip = $('<div id="' + $divId + '"></div>').insertAfter(this).addClass("ohmy");
			$tip.css("width" , 250);
			$tiptext = $('<div id="' + $divId + '"></div>').appendTo($tip);
			$tiptext.load(this.href);
			//$tip.append(this.href);
			$tip.fadeIn("slow");
		}
		return false
	});
});
