// JavaScript Document
/*
The original code for this slide show is from Stephen Chapman, About.com Guide, http://javascript.about.com/od/funwithimages/a/cycle.htm
 */
(function() {
var imgs = new Array(); var imgcnt = 0; var thisimg = 0;
imgs[imgcnt++] = 'images\/RSA_ADI_logo_small.jpg'; 
imgs[imgcnt++] = 'images\/rsa_logo.jpg';
imgs[imgcnt++] = 'images\/RSA_ADI_logo_small.jpg'; // Michael wants this image to pop up more!
imgs[imgcnt++] = 'images\/dirlogo_web.gif';

function rotate() {
if (document.images) {
thisimg++;
if (thisimg >= imgcnt) thisimg = 0;
document.getElementById('rollimg').src = imgs[thisimg];
}
}
setInterval(rotate,4000);
})(); 


