The path to fadeslideshow.js is incorrect. For example, on the bio page we see:
Code:
<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>
That looks for:
outsider-inside.com/bio/fadeslideshow.js
But the file is really in the root:
outsider-inside.com/fadeslideshow.js
You could use the network path, then it would be valid from anywhere on the site:
Code:
<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>
Bookmarks