Ok, try the below modified contentslider.js file. Then, to add a title that shows when the mouse rolls over each pagination link, inside your page's HTML, add a "title" attribute inside each content DIV itself, for example:
Code:
<div id="slider1" class="contentslide">
<div class="opacitylayer">
<div class="contentdiv" title="content 1 header">
Content 1
</div>
<div class="contentdiv" title="content 2 header">
Content 2
</div>
<div class="contentdiv" title="content 3 header">
Content 3
</div>
</div>
</div>
The title is added to the pagination DIV itself, specifically, a SPAN tag with the ID attribute "title-"+sliderid. So if your Featured Content Slider as the ID of "slider1", the SPAN element used to contain the title would be called "title-slider1". This is important, since you'll want to style this SPAN tag to ensure the colors are right, formatting etc. For example, you should add something like the below to the HEAD of your page:
Code:
<style type="text/css">
#title-slider1{
color: white;
float:left;
}
}
</style>
Bookmarks