 // Array that holds the Agent Values	
	var agent = new Array(
		new agentRecord("Wright &amp; Associates", "1-800-968-1100"),
		new agentRecord("National Benefit Plans", "1-800-947-3271"),
		new agentRecord("Altruis Benefit Consultants", "1-888-215-4500"),
		new agentRecord("Gadaleto Ramsby &amp; Associates", "1-877-884-8857"),
		new agentRecord("Agent Benefits", "1-800-882-6230"),
		new agentRecord("Agent Alliance", "1-888-313-9571"),
		new agentRecord("Grotenhuis", "1-866-609-4222"),
		new agentRecord("Health Care Administrators","1-866-600-7083"),
		new agentRecord("Farm Bureau","1-800-292-2680"),
		new agentRecord("Action Benefits","1-866-582-5052"),
		new agentRecord("BCBSM Telesales", "1-877-469-2583"),
		new agentRecord("National Marketing Group", "1-800-359-0980"),
		new agentRecord("Michigan Health Insurance Agency", "1-800-731-1320"),
		new agentRecord("Rick Young &amp; Associates", "1-800-499-3436")
	);

	function agentRecord(name, phone) {
	   this.name = name;
	   this.phone = phone;
	}
	
// gets the day of the year
	var d = new Date();
	Date.prototype.getDOY = function() {
	var onejan = new Date(this.getFullYear(),0,1);
	return Math.ceil((this - onejan) / 86400000);
	}

// iterate through array daily	
	var date = d.getDOY();
	var currentAgent = (date-1)%agent.length;

