You've got some sort of typo and/or other screwup (perhaps caused by the editor) in implementing the new code. From the source code:
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="fadeslideshow.js">
/***********************************************
* Ultimate Fade In Slideshow v2.0- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
***********************************************/
<script _wpro_type="text/javascript" type="text/wpro">
(function($){
var ims = [], imsCount = 0, galleries = [], galleryObj = {
dimensions: [190, 150], //width/height of gallery in pixels. Should reflect dimensions of largest image
displaymode: {type:'auto', pause:10 . . .
There's no closing </script> tag for the external tag of fadeslideshow.js and the opening tag (highlighted) for the on page script below it is invalid. It should look like so:
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="fadeslideshow.js">
/***********************************************
* Ultimate Fade In Slideshow v2.0- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
***********************************************/
</script>
<script type="text/javascript">
(function($){
var ims = [], imsCount = 0, galleries = [], galleryObj = {
dimensions: [190, 150], //width/height of gallery in pixels. Should reflect dimensions of largest image
displaymode: {type:'auto', pause:10 . . .
Bookmarks