$(document).ready(function(){
	$('.table-holder').find('.popup').hide();
	$('.popup-tt').hide();
	//$('input:radio,[name=r1]').click(
		//function() {
			//$('.table-holder').find('.popup').hide();
			//$(this).parent().parent().parent().find('.popup').show();
		//}
	//);
	$('.pop-tooltip').mousemove(
		function(e){
			var offset = $(this).offset();
			_x = e.pageX - offset.left + 175;
			var _popId = this.rel;
			if ($('#'+_popId).get(0)) {
				$('#'+_popId).css({left:_x-20})
			}
		}
       );
	$('.pop-tooltip').hover(
		function() {
			var _popId = this.rel;
			_popup = $('#'+_popId);
			_popup.show();
		}, function() {
			var _popId = this.rel;
			_popup.hide();
		}
	);
});