$(document).ready(JT_init);

function JT_init(){
	   $("a.jTip")
	   .hover(
		function(){
			JT_show(this)
		}
		,
		function()
		{
			$(this).attr("title", $('#JT_close_left').html());
			$('#JT').remove()
		})
        .click(function(){ if ($(this).attr("href") == "#") { return false; } });	   
}

function JT_show(elementID){
		this.p = $(elementID).position();
		$("body").append("<div id='JT' style='width:550px'><div id='JT_arrow_left'></div><div id='JT_close_left'>"+$("#"+elementID.id).attr("title")+"</div><div id='JT_copy'>"+$("#C"+elementID.id).html()+"</div></div>");
		$("#"+elementID.id).attr("title", "");
			$("#JT")
			.css("top",(this.p.top) + "px")
			.css("left",(this.p.left) + $("#"+elementID.id).width() + 15 + "px")
			.fadeIn("fast");
}
