There could also be other problems but the first two descriptions have invalid markup:
Code:
<script type="text/javascript">
var firstbgcarousel=new bgCarousel({
wrapperid: 'mybgcarousel', //ID of blank DIV on page to house carousel
imagearray: [
['./slideshow/audience1.jpg', '<div align="left"><img src="images/hitman cropped logo for website.jpg" width="100" height="66">'], //["image_path", "optional description"]
['./slideshow/balcony.jpg', '<div align="left"><img src="images/hitman cropped logo for website.jpg" width="100" height="66">'],
['./slideshow/slide1.jpg', 'The scent of spring invigorates her as she inhales whilst the warm breeze brings a wave of tranquility.'],
['./slideshow/bass.jpg','holder'],
['./slideshow/slide2.jpg', 'Alone and Lonliness- Peace and Inner Struggle'] //<--no trailing comma after very last image element!
],
displaymode: {type:'auto', pause:3000, cycles:2, stoponclick:false, pauseonmouseover:true},
navbuttons: ['./slideshow/left.gif', './slideshow/right.gif', './slideshow/up.gif', './slideshow/down.gif'], // path to nav images
activeslideclass: 'selectedslide', // CSS class that gets added to currently shown DIV slide
orientation: 'h', //Valid values: "h" or "v"
persist: true, //remember last viewed slide and recall within same session?
slideduration: 500 //transition duration (milliseconds)
})
</script>
Try closing the divs:
Code:
<script type="text/javascript">
var firstbgcarousel=new bgCarousel({
wrapperid: 'mybgcarousel', //ID of blank DIV on page to house carousel
imagearray: [
['./slideshow/audience1.jpg', '<div align="left"><img src="images/hitman cropped logo for website.jpg" width="100" height="66"></div>'], //["image_path", "optional description"]
['./slideshow/balcony.jpg', '<div align="left"><img src="images/hitman cropped logo for website.jpg" width="100" height="66"></div>'],
['./slideshow/slide1.jpg', 'The scent of spring invigorates her as she inhales whilst the warm breeze brings a wave of tranquility.'],
['./slideshow/bass.jpg','holder'],
['./slideshow/slide2.jpg', 'Alone and Lonliness- Peace and Inner Struggle'] //<--no trailing comma after very last image element!
],
displaymode: {type:'auto', pause:3000, cycles:2, stoponclick:false, pauseonmouseover:true},
navbuttons: ['./slideshow/left.gif', './slideshow/right.gif', './slideshow/up.gif', './slideshow/down.gif'], // path to nav images
activeslideclass: 'selectedslide', // CSS class that gets added to currently shown DIV slide
orientation: 'h', //Valid values: "h" or "v"
persist: true, //remember last viewed slide and recall within same session?
slideduration: 500 //transition duration (milliseconds)
})
</script>
As I say though, there could also be something else. (I just tested it and that seems to be the only issue with the slideshow, though the page itself has other errors.)
The browser cache may need to be cleared and/or the page refreshed to see changes.
Bookmarks