// JavaScript for Nina Storey - adds rotating images to page

//array is for new image designations (all images in the rotate directory)
var adArray = new Array("nina1.png", "nina2.png", "nina3.png", "nina4.png", "nina5.png","nina6.png","nina7.png","nina8.png","nina9.png");
var currAd = 0;
function changeAd() {
currAd = currAd +1;
if (currAd >= adArray.length) {
currAd = 0;
}
document.ad.src="http://www.ninastorey.com/images/"+ adArray[currAd];
setTimeout("changeAd();",5000);
}
//you can choose the speed by changing the number above
//mjaret 2007-12-13
// updated with new photos 2007-12-13
// copyright 2006-2007 jaretmedia.com all rights reserved

