/* Table Highlighter */
jQuery(document).ready(function($) {
	$('#vsChart').tableHover({
		colClass: 'col',
		rowClass: 'row',
		clickClass: 'click',
		cellClass: 'cell',
		headCols: true,
		headRows: false,
		ignoreCols: [1]
	});
	$("td.help div").css({ display: "none"});
	$(".help a").tooltip({ 
	    bodyHandler: function() { 
	        return $($(this).attr("href")).html(); 
	    }, 
	    showURL: false,
			opacity: 1
	});
});
