// JavaScript Document - Random Sponsor Content Functions

var sponsorLogoArray = new Array();
	sponsorLogoArray[0] = "sponsor_asu";
	sponsorLogoArray[1] = "sponsor_grs";
	sponsorLogoArray[2] = "sponsor_healthsouth";
	sponsorLogoArray[3] = "sponsor_jchp";
	sponsorLogoArray[4] = "sponsor_mu";
	sponsorLogoArray[5] = "sponsor_rehabcare";
	//sponsorLogoArray[6] = "sponsor_sundancerehab";

var sponsorNameArray = new Array();
	sponsorNameArray[0] = "Arkansas State University";
	sponsorNameArray[1] = "Genesis Rehab Services";
	sponsorNameArray[2] = "HealthSouth";
	sponsorNameArray[3] = "Thomas Jefferson University | Jefferson College of Health Professions";
	sponsorNameArray[4] = "MU School of Health Professions";
	sponsorNameArray[5] = "RehabCare";
	//sponsorNameArray[6] = "SunDance Rehabilitation";

var sponsorTextArray = new Array();
	sponsorTextArray[0] = "Nursing and health professions programs committed to meeting the unique needs of northern and eastern Arkansas.";
	sponsorTextArray[1] = "Genesis Rehab Services is a leader in the Long-term care rehabilitation industry. Our success stems from our commitment to those we serve.  We truly are a <em>patient-centered</em> and <em>employee-focused</em> company.";
	sponsorTextArray[2] = "One of the nation&rsquo;s largest providers of integrated healthcare services, with locations nationwide.";
	sponsorTextArray[3] = "Clinicians, physicians, researchers, and educators. A healthcare team that works together.";
	sponsorTextArray[4] = "Dedicated to providing the highest quality education and clinical experience.";
	sponsorTextArray[5] = "Proud to celebrate our 25th anniversary, RehabCare is a leading provider of physical rehabilitation program management services.";
	//sponsorTextArray[6] = "We've grown to become one of the nations largest providers of contract rehabilitation services with customers in 38 states.";

var sponsorLinkArray = new Array();
	sponsorLinkArray[0] = "http://www.conhp.astate.edu/index-front%20page.html";
	sponsorLinkArray[1] = "http://www.rehab.com";
	sponsorLinkArray[2] = "http://www.healthsouth.com";
	sponsorLinkArray[3] = "http://www.jefferson.edu/jchp/home/index.cfm";
	sponsorLinkArray[4] = "http://www.umshp.org";
	sponsorLinkArray[5] = "http://www.rehabcare.com/";
	//sponsorLinkArray[6] = "http://www.sundancerehab.com/";

var s = sponsorLogoArray.length;
var sponsorNum = Math.round(Math.random()*(s-1));


function writeIndexSponsor() {
	document.getElementById('indexSponsor').innerHTML = "<div id='sponsorLogo'><p><img src='/assets/image/" + sponsorLogoArray[sponsorNum] + "_index.gif' width='221' height='83' alt='" + sponsorNameArray[sponsorNum] + "' title='" + sponsorNameArray[sponsorNum] + "' /></p></div><h5>Featured Sponsor</h5><p>" + sponsorTextArray[sponsorNum] + " <a href='" + sponsorLinkArray[sponsorNum] + "' target='_blank'>learn&nbsp;more</a></p>";
};

function writeSubSponsor() {
	document.getElementById('sponsor').innerHTML = "<div id='sponsorLogo'><p><img src='/assets/image/" + sponsorLogoArray[sponsorNum] + "_sub.gif' width='180' height='68' alt='" + sponsorNameArray[sponsorNum] + "' title='" + sponsorNameArray[sponsorNum] + "' /></p></div><h5>Featured Sponsor</h5><p>" + sponsorTextArray[sponsorNum] + " <a href='" + sponsorLinkArray[sponsorNum] + "' target='_blank'>learn&nbsp;more</a></p>";
};