Your main problem is an extra [ at the beginning of each array item declaration:
Code:
var slides2=[]; //SECOND SLIDESHOW
//configure the below images and descriptions to your own.
[slides2[0] = ["roisinban/text2.gif", "<b>Róisín Bán</b><br><br>"];
[slides2[1] = ["roisinban/poem.gif", "<b>Róisín Bán</b><br><br>"];
[slides2[2] = ["roisinban/roisin_ban_001.jpg", "<b>Róisín Bán</b><br><br>Emigrants return to the USA from Shannon airport after a visit home 1968"];
[slides2[3] = ["roisinban/roisin_ban_002.jpg", "<b>Róisín Bán</b><br><br>Tallaghan Bawn Geesala, County Mayo, 1957"];
However, once that's fixed, you will notice that your custom styles are not working. That's because even though you've named the array sildes2, it doesn't change the fact that this is the first slideshow on the page, its style hooks should end in 0, not 2, for example:
Code:
#controls2 {width: 505px; float: left; text-align: center; margin-top: 13px; }
should be:
Code:
#controls0 {width: 505px; float: left; text-align: center; margin-top: 13px; }
Bookmarks