var Imgs1 = new Array();
 
  Imgs1[0]="images/BS051810055.jpg";
  Imgs1[1]="images/BS051810046.jpg";
  Imgs1[2]="images/BS051810050.jpg";
  Imgs1[3]="images/BS051810051.jpg";
  Imgs1[4]="images/BS051810055.jpg";
  Imgs1[5]="images/BS051810007.jpg";
  Imgs1[6]="images/BS051810011.jpg";
  Imgs1[7]="images/BS051810021.jpg";
  Imgs1[8]="images/BS051810026.jpg";
  Imgs1[9]="images/BS051810027.jpg";
  Imgs1[10]="images/BS051810110.jpg";
  Imgs1[11]="images/BS051810079.jpg";
  Imgs1[12]="images/BS051810086.jpg";
 
var alt1 = new Array();
//alternate description 
 
 alt1[0]="Surgical T-Shirt";
 alt1[1]="Dental T-Shirt";
 alt1[2]="Culinary T-Shirt";
 alt1[3]="Medical Assistants T-Shirt";
 alt1[4]="Surgical T-Shirt";
 alt1[5]="LOGO T-Shirts";
 alt1[6]="LOGO T-Shirts";
 alt1[7]="Flip-flops for sale $7.99";
 alt1[8]="Lynette Saulsberry from Student Affairs enjoys Campus Shop snack and a kind word!";
 alt1[9]="Graduation Items";
 alt1[10]="Waiting on Student";
 alt1[11]="Scrubs on Sale!";
 alt1[12]="International Chef Snacks at Campus Shop";

var currentAd1 = 0;
var imgCtl = Imgs1.length;

function cycle1() {
  if(currentAd1 == imgCtl) {
    currentAd1 = 0;
  }
var banner1 = document.getElementById('banner2');
var link1 = document.getElementById('adLink1');
  banner1.src=Imgs1[currentAd1];
  banner1.title=alt1[currentAd1];
  currentAd1++;
}
  window.setInterval("cycle1()",7000);
//<img src="image_jss.gif" id="adBanner1" border="0" width="400" height="300"--></a>
