// Phone Tracking
function initPhoneTracker() {
	var phone = $("#phone").html()
	if (phone != "&nbsp;" && !$("#phone").hasClass('custom')) {
		var cleanPhone = phone.replace(/[^\d]/g, "");
		cleanPhone = (cleanPhone.substr(0,1) != "1")  ? "1" + cleanPhone : cleanPhone;		
		var output = '<a href="tel://' + cleanPhone + '" onclick="_gaq.push([\'_trackEvent\', \'Contact\', \'Phone\', \'' + phone + '\']);"></a>';
		$("#phone").wrapInner(output)
	}
}
checkjQuery(initPhoneTracker);

