var imgs = new Array();
var links = new Array();
 

links[0] = 'http://www.welladvantage.com/Integrated-Wellness-Platform.aspx';
imgs[0] = 'http://www.chra.com/ads/welladvbanner.jpg';

links[1] = 'http://www.transamericaaffinity.com/';
imgs[1] = 'http://www.chra.com/ads/transamericaad.jpg';

links[2] = 'http://www.smbcinc.com';
imgs[2] = 'http://www.chra.com/ads/smbcad.jpg';

links[3] = 'http://psafinancial.com/TeamProfiles/JaniaStout.html';
imgs[3] = 'http://www.chra.com/ads/PSAbannerad.jpg';

links[4] = 'http://www.umbc.edu/isd';
imgs[4] = 'http://www.chra.com/ads/UMBC.jpg';

links[5] = 'http://baltimore.bizjournals.com/baltimore/';
imgs[5] = 'http://www.chra.com/ads/adBBJ.jpg';

links[6] = 'http://www.fivel.net';
imgs[6] = 'http://www.chra.com/ads/adFiveL.gif';

var last_rand_no = 0;
var rand_no = 0;
var thisimg;

function navigate(){
  window.location = thisimg;
}

function rotate() {

   while(rand_no == last_rand_no){
      rand_no = Math.floor((links.length - 0)*Math.random()) + 0;
   }

   last_rand_no = rand_no;
   document.rotator.src = imgs[rand_no];
   thisimg = links[rand_no];
   //setTimeout("rotate();",5000);

}
rotate();
//setTimeout("rotate();",5000);
