Hi:
The problem is due to an error in your rssticker.js file, specifically:
Code:
var linktitle='<div class="rsstitle"><a href="files/%27+this.link%5Bthis.pointer%5D+%27">'+this.title[this.pointer]+'</a></div>'
Not sure why you added that in the first place, but remove the "files/..." portion from the URL:
Code:
var linktitle='<div class="rsstitle"><a href="'+this.link[this.pointer]+'">'+this.title[this.pointer]+'</a></div>'
That should do it.
On another note, per our usage terms. please note that the credit notice for this script must remain intact in the page's visible source. So please restore the code in the HEAD section of your page to:
Code:
<script src="files/rssticker.js" type="text/javascript">
/***********************************************
* Advanced RSS Ticker (Ajax invocation)- © 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>
Thanks,
Bookmarks