/**
 * Phone Conversion Tracking
 * 
 * Used in conjunction with advertising and a special phone number
 * to track offline conversions.
 *
 * @author Sean Murphy <smurphy@highforge.com>
 */
$(function() {
	if (document.URL.match(/\?.*src=googlead/)) {
		$.cookie('ad-referral', true, {path: '/', expires: 90});
	}
	
	if ($.cookie('ad-referral')) {
		$('span.phone').html('407.905.9726');
	}
});