That's from Featured Content Glider:
http://www.dynamicdrive.com/dynamici...tentglider.htm
You installed it correctly, except for the markup, where you have (from your page's source code):
Code:
<div class='glidecontentwrapper' id='glidercontent'>
<div class='widget-content'>
<div class='glidecontenttoggler' id='togglebox'>
<a class='prev' href='#'></a>
<a class='next' href='#'></a>
</div>
So either remove the script, or follow the instructions from its demo page to create appropriate content, which could (in about its simplest form) look like so (replace the above with this or something like it):
Code:
<div class='glidecontentwrapper' id='glidercontent'>
<div class='glidecontent'>
Hi
</div>
<div class='glidecontent'>
There
</div>
<div class='glidecontent'>
Folks
</div>
</div>
<div class='glidecontenttoggler' id='togglebox'>
<a class='prev' href='#'></a>
<a class='next' href='#'></a>
</div>
Bookmarks