var t1 = null;
window.addEvent('load',function() {
	$$('.jv-tiptitle a').each(function(e) {
		var did = "d" + e.id.replace(/a/,"");
		e.addEvent('mouseenter',function(event) {
			//hideAll();
			//console.log(event.page.x);
			var thediv = $(did);
			var theimg = $('jv-arrow');
			if (thediv.style.display != 'block') thediv.setStyle('display','block');
			if (theimg.style.display != 'block') theimg.setStyle('display','block');
			var theleft = event.page.x;//e.getCoordinates().left + e.offsetWidth;
			var thetop = e.getCoordinates().top - Math.floor(thediv.offsetHeight/2);
			var thetop1 = e.getCoordinates().top + 2;
			thediv.setStyle('left',theleft + 60);
			thediv.setStyle('top',thetop);
			theimg.setStyle('left',theleft + 23);
			theimg.setStyle('top',thetop1);
		});
		e.addEvent('mouseleave',function(elm) {
			$(did).setStyle('display','none');
			$('jv-arrow').setStyle('display','none');
		});
	});
	
});