﻿function randNum(low,high) { 
  return Math.floor(Math.random()*(high-low+1)+low); 
 } 
 function displayRotateArticle(){ 
      i = randNum(1,5) 
  
      if (i == 1) { 
           return '<a href="spotlight-james-ballew.html"><img src="images/HomeStories/jamesballew.jpg" alt="" width="115" height="115" border="0" /><br /><br /><span class="whitebody"><strong>James F. Ballew,</strong><br />President and CEO of Covenant Services Group discusses recent growth.</a></span>'; 
      } 
      else if (i == 2) { 
       	   return '<a href="spotlight-keith-freshour.html"><img src="images/HomeStories/keith.jpg" alt="" width="115" height="115" border="0" /><br /><br /><span class="whitebody"><strong>A. Keith Freshour, Director of<br />Sales and Marketing</strong><br />Keith Freshour Headline</a></span>'; 
      }
	    else if (i == 3) { 
       	   return '<a href="spotlight-city-lagrange.html"><img src="images/HomeStories/lagrange.jpg" alt="" width="115" height="115" border="0" /><br /><br /><span class="whitebody"><strong>City of LaGrange</strong><br />The City of LaGrange Returns to Covenant Services Group</a></span>'; 
      }
	    else if (i == 4) { 
       	   return '<a href="spotlight-benton-county.html"><img src="images/HomeStories/benton.jpg" alt="" width="115" height="115" border="0" /><br /><br /><span class="whitebody"><strong>Benton County</strong><br />Pilot Program with Benton County, Arkansas, Generates Huge Savings</a></span>'; 
      }
	    else if (i == 5) { 
       	   return '<a href="spotlight-barbara-ludwig.html"><img src="images/HomeStories/bludwig.jpg" alt="" width="115" height="115" border="0" /><br /><br /><span class="whitebody"><strong>Barbara Ludwig,<br />HR Manager</strong><br />Chooses Wellness Program to Drive Down Costs</a></span>'; 
      }
 }