function goalsgamedate(){  
  jQuery('.model').click(function(e){
  jQuery("#tooltip").html('');
  var uid =  jQuery(this).attr('d');
  var  matchUid = uid;
	jQuery.ajax({
	   context: document.body,     
		 url:'http://www.1division.dk/index.php?id=3&type=201&tx_slscoreboardlive_pi2[matchUid]='+matchUid,
		  success: function(data, textStatus, errorThrown){ 			   			

  			jQuery(this).attr('title','');
  			jQuery('#tooltip').replaceWith('<div id="tooltip">'+data+'</div>');
        //alert(jQuery('#replace tr').size());
        var replacetr = jQuery('#replace tr').size();
    //    if(replacetr <= 1){
     //      jQuery('#tooltip').html('<div class="no-data">No Data</div>');          
      //  }
       
        jQuery("#tooltip").css('display','block');
  			jQuery('#tooltip').css('top', e.pageY + 10 );
		    jQuery('#tooltip').css('left', e.pageX - 110 );
  			//jQuery(this).attr('title',data);
  			//jQuery("#tooltip").html(data);
			}
		});
		//e.preventDefault();
  }).mouseover(function() {
	     
		//Put back the title attribute's value
		//$(this).attr('title',$('.tipBody').html());
	
		//Remove the appended tooltip template
		jQuery("#tooltip").css('display','none');
		
	});
} 

