

var secs = 7;

img1 = new Image();
img1.src = "http://www.penndhamaka.com/img/PhillyFest2007.jpg";
img2 = new Image();
img2.src = "http://www.penndhamaka.com/img/Troc2010Finale.jpg";
img3 = new Image();
img3.src = "http://www.penndhamaka.com/img/2008Dhafunkafied.jpg";
img4 = new Image();
img4.src = "http://www.penndhamaka.com/img/phillyfest.jpg";
img5 = new Image();
img5.src = "http://www.penndhamaka.com/img/Group.jpg";
img6 = new Image();
img6.src = "http://www.penndhamaka.com/img/Group and Alumni.jpg";
img7 = new Image();
img7.src = "http://www.penndhamaka.com/img/websitefront.jpg";



var pics = new Array(7);
pics[0] = img1.src;
pics[1] = img2.src;
pics[2] = img3.src;
pics[3] = img4.src;
pics[4] = img5.src;
pics[5] = img6.src;
pics[6] = img7.src;

var thisPic = 0;

var placeCt = 7;

function nextPic(){

       if (document.images){

       thisPic++

       if (thisPic == placeCt){thisPic = 0}

       document.ranpic.src = pics[thisPic];

       setTimeout("nextPic()",secs * 1000)
       }
}
