$(document).ready(function(){
	// Creates the hook for the blue paw for third Col
	$('#MedicalPlans .thirdColumn:contains(Yes)').wrapInner('<span />');
	// Creates the hook for the rgt btm select plan corner
	$('#MedicalPlans tr.lastRow td.secondColumn').wrapInner('<span />');
	// Creates the hook for the rgt top select plan corner
	$('th.secondColumn').wrapInner('<span />');
	// Creates the hook for the blue paw in the fourth col for three and four product tables
	var threeProd = $('table').hasClass('threeProducts');
	if (threeProd)
	{
		$('#MedicalPlans .forthColumn:contains(Yes)').wrapInner('<span />');
	};
});