You've included the fadeslideshow.js file twice. Get rid of one of them. From the page's source code as viewed in the browser:
Code:
. . . ify-v1" content="ePApIkQw+GoYBX3/s7+CP2dnCzTAOTIUp7cSJHWDyqM=">
<meta name="verify-v1" content="NLzsSx/FL7Tqx5g+5z611IkoloPvjZieji4WIz+AzgQ=">
<link rel="stylesheet" type="text/css" href="../style/emx_nav_new.css">
<link rel="stylesheet" type="text/css" href="../style/ddfiles/ddmegamenu.css">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript" src="../scripts/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" src="../scripts/ddmegamenu.js">
/***********************************************
* DD Mega Menu (c) Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/
</script>
<script type="text/javascript">
ddmegamenu.docinit({
menuid:'solidmenu',
dur:200 //<--no comma after last setting
})
</script>
<!--banner_top closes out the HEADER-->
<!--add individual page javascript here-->
<script type="text/javascript" src="../scripts/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">
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [400, 300], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["images/morris/morris.1.jpg","","",""],
["images/morris/morris.2.jpg","","",""],
["images/m . . .
That's probably due to its being on two includes or its being on the main page and on an include. There could also be other problems. But best to fix this and see.
Edit: I did some testing and it's not the only problem:
You do need to get rid of that duplicate call to fadesliseshow.js but that's not enough. Once you get rid of it, this is how things need to be organized in the head:
Code:
. . . fy-v1" content="ePApIkQw+GoYBX3/s7+CP2dnCzTAOTIUp7cSJHWDyqM=">
<meta name="verify-v1" content="NLzsSx/FL7Tqx5g+5z611IkoloPvjZieji4WIz+AzgQ=">
<link rel="stylesheet" type="text/css" href="../style/emx_nav_new.css">
<link rel="stylesheet" type="text/css" href="../style/ddfiles/ddmegamenu.css">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript" src="../scripts/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">
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [400, 300], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["images/morris/morris.1.jpg","","",""],
["images/morris/morris.2.jpg","","",""],
["images/morris/morris.3.jpg","","",""],
["images/morris/morris.4.jpg","","",""],
["images/morris/morris.5.jpg","","",""],
["images/morris/morris.6.jpg","","",""]
],
displaymode: {type:'auto', pause:2500, cycles:0, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 1000, //transition duration (milliseconds)
descreveal: "always",
togglerid: ""
})
</script>
<script type="text/javascript" src="../scripts/ddmegamenu.js">
/***********************************************
* DD Mega Menu (c) Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/
</script>
<script type="text/javascript">
ddmegamenu.docinit({
menuid:'solidmenu',
dur:200 //<--no comma after last setting
})
</script>
</head>
Well, it can be any order as long as jQuery comes first, the two other external scripts come before the on page script code that use them, and the on page script code for the menu comes after the on page script code for the slideshow.
BTW, this is not used:
Code:
ddmegamenu.docinit({
menuid:'megaanchorlink',
dur:500,
easing:'easeOutBack' //<--no comma after last setting
})
So I got rid of it.
Bookmarks