On a friends site there is a JavaScript carousel
Its only displaying one image, I want it to display all the images in the img folder, I'm pretty sure that its the code thats in the change code section, what do I need to change so it will display all the images.
Code:
///////////////////////////////////////////////////////////////////////////////////////
// START OF SCRIPT-CONFIGURATION ZONE
//////////////////////////////////////////////////////////////////////////////////////
// Set the path and name (or URL) of your images. Add as many images as you like
// Take care that the images have a decent resolution as they are used for the zoom-images as well
rotatingimage[0]="http://mnemee.com/mnemee/wp-content/themes/gift-anthony/images/img/1.jpg"
rotatingimage[1]="http://mnemee.com/mnemee/wp-content/themes/gift-anthony/images/img/1.jpg"
rotatingimage[2]="http://mnemee.com/mnemee/wp-content/themes/gift-anthony/images/img/2.jpg"
rotatingimage[3]="http://mnemee.com/mnemee/wp-content/themes/gift-anthony/images/img/3.jpg"
rotatingimage[4]="http://mnemee.com/mnemee/wp-content/themes/gift-anthony/images/img/4.jpg"
rotatingimage[5]="http://mnemee.com/mnemee/wp-content/themes/gift-anthony/images/img/5.jpg"
rotatingimage[6]="http://mnemee.com/mnemee/wp-content/themes/gift-anthony/images/img/6.jpg"
rotatingimage[7]="http://mnemee.com/mnemee/wp-content/themes/gift-anthony/images/img/7.gif"
rotatingimage[8]="http://mnemee.com/mnemee/wp-content/themes/gift-anthony/images/img/8.jpg"
rotatingimage[9]="http://mnemee.com/mnemee/wp-content/themes/gift-anthony/images/img/1.jpg"
rotatingimage[10]="http://mnemee.com/mnemee/wp-content/themes/gift-anthony/images/img/2.jpg"
rotatingimage[11]="http://mnemee.com/mnemee/wp-content/themes/gift-anthony/images/img/3.jpg"
rotatingimage[12]="http://mnemee.com/mnemee/wp-content/themes/gift-anthony/images/img/4.jpg"
rotatingimage[13]="http://mnemee.com/mnemee/wp-content/themes/gift-anthony/images/img/5.jpg"
rotatingimage[14]="http://mnemee.com/mnemee/wp-content/themes/gift-anthony/images/img/6.jpg"
rotatingimage[15]="http://mnemee.com/mnemee/wp-content/themes/gift-anthony/images/img/7.gif"
rotatingimage[16]="http://mnemee.com/mnemee/wp-content/themes/gift-anthony/images/img/8.jpg"
// Set the the comments corresponding to the images above (requires the same amount as images!)
rotatingtext[0]="Deep blue"
rotatingtext[1]="Not as sweet as you"
rotatingtext[2]="Fly, butterfly, fly"
rotatingtext[3]="Fruit Paradise"
rotatingtext[4]="Lost in the forrest"
rotatingtext[5]="My castle is my home"
rotatingtext[6]="This is my lucky day"
rotatingtext[7]="John Lemon"
rotatingtext[8]="Free the tree"
rotatingtext[9]="Not as sweet as you"
rotatingtext[10]="Fly, butterfly, fly"
rotatingtext[11]="Fruit Paradise"
rotatingtext[12]="Lost in the forrest"
rotatingtext[13]="My castle is my home"
rotatingtext[14]="This is my lucky day"
rotatingtext[15]="John Lemon"
rotatingtext[16]="Free the tree"
// Set the the comments corresoponding to the images above (requires the same amount as images!)
// Set "#" if no link is required
rotatinglink[0]="http://www.hotscripts.com"
rotatinglink[1]="http://www.hotscripts.com"
rotatinglink[2]="http://www.hotscripts.com"
rotatinglink[3]="http://www.hotscripts.com"
rotatinglink[4]="http://www.hotscripts.com"
rotatinglink[5]="http://www.hotscripts.com"
rotatinglink[6]="http://www.hotscripts.com"
rotatinglink[7]="http://www.hotscripts.com"
rotatinglink[8]="http://www.hotscripts.com"
rotatinglink[9]="http://www.hotscripts.com"
rotatinglink[10]="http://www.hotscripts.com"
rotatinglink[11]="http://www.hotscripts.com"
rotatinglink[12]="http://www.hotscripts.com"
rotatinglink[13]="http://www.hotscripts.com"
rotatinglink[14]="http://www.hotscripts.com"
rotatinglink[15]="http://www.hotscripts.com"
rotatinglink[16]="http://www.hotscripts.com"
//<!-- change code -->
var rotatingimage=new Array()
var rotatinglink=new Array()
rotatingimage[0]='http://mnemee.com/mnemee/wp-content/uploads/2011/06/images-5.jpg';rotatinglink[0]='http://mnemee.com/mnemee/?page_id=18';rotatingimage[1]='http://mnemee.com/mnemee/wp-content/uploads/2011/06/images-6.jpg';rotatinglink[1]='http://mnemee.com/mnemee/?page_id=15';//<!-- end change code -->
Its only displaying one image, I want it to display all the images in the img folder, I'm pretty sure that its the code thats in the change code section, what do I need to change so it will display all the images.