Since they work together fine, revert to the original scripts to avoid any errors that may have crept in during editing of the main scripts. This part (from your page's source code):
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="../rw_common/themes/multinotheme/css/featuredcontentglider.js">
<script type="text/javascript" src="../rw_common/themes/multinotheme/css/accordion/ddaccordion.js">
/***********************************************
* Accordion Content script AND Featured Content Glider script - (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* Visit http://www.dynamicDrive.com for hundreds of DHTML scripts
* This notice must stay intact for legal use
***********************************************/
</script>
Should look like so:
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="../rw_common/themes/multinotheme/css/featuredcontentglider.js">
/***********************************************
* Featured Content Glider script- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* Visit http://www.dynamicDrive.com for hundreds of DHTML scripts
* This notice must stay intact for legal use
***********************************************/
</script>
<script type="text/javascript" src="../rw_common/themes/multinotheme/css/accordion/ddaccordion.js">
/***********************************************
* Accordion Content script AND Featured Content Glider script - (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* Visit http://www.dynamicDrive.com for hundreds of DHTML scripts
* This notice must stay intact for legal use
***********************************************/
</script>
Part of that is to restore the script credit of Featured Content Glider (required by DD TOS), but the main thing is to close the script tag (red) for featuredcontentglider.js so that the one for ddaccordion.js will be recognized by the browser. The way you have it now, ddaccordion.js is not even being loaded.
There could still be other problems. But as I said in my previous post, the two scripts do work together. So at that point it should just be minor issues relating to each script individually, if anything.
Any problems or questions though, just let me know.
Bookmarks