$(document).ready(function() {   
	$('td.pts').cluetip({     
		splitTitle: '| ', // use the invoking element's title attribute to populate the clueTip... 
				   // ...and split the contents into separate divs where there is a "|"     
        width: 300,
        sticky: true,
        closePosition: 'title',
		showTitle: true // hide the clueTip's heading   
	}); 
	$('td.ag').cluetip({     
		splitTitle: '| ', // use the invoking element's title attribute to populate the clueTip... 
				   // ...and split the contents into separate divs where there is a "|"     
        width: 300,
        sticky: true,
        closePosition: 'title',
		showTitle: true // hide the clueTip's heading   
	}); 
});
