/*
 * jQuery Beauty Tips (jquery.bt.js) on the "group exercise" pages
 * @example
 * <div title="Cycling" instructor="Jane" description="This is a description.." time="9am - 10am" price="$100 for 1 year">Cycling, 9am - 10am</div>
 */
jQuery.fn.getScheduleToolTipHTML = function() {
	var html = '';
	html += '<div class="fact-box"><p class="fact1"><strong>' + $(this).attr('fact1s') + "</strong><br />";
	html += $(this).attr('fact1') + "</p>";
	html += '<p class="fact2"><strong>' + $(this).attr('fact2s') + "</strong><br />";
	html += $(this).attr('fact2') + "</p>";
	html += '<div class="fact-box-link">Click Number to Learn More</div>';
	html += "</div>";
	return html;
};

$('#choose-stat-container a').bt({
	titleSelector: "getScheduleToolTipHTML()",
	fill: "rgb(218, 218, 218)",
	width: '170',
	strokeStyle: '#fff',
	animate: !$.browser.msie
});
