If I understand you correctly, since the content in each of the slider panels is ordinary HTML, you should be able to take a link like:
Code:
<a href="somepage.htm" target="someframename"><img . . . /></a>
and do:
Code:
<a href="somepage.htm" target="someframename" onmouseover="open(this.href, this.target);"><img . . . /></a>
Or instead you could just add this script to the page:
Code:
<script type="text/javascript">
(function(id){
var add = (function(){return window.addEventListener? function(el, ev, f){
el.addEventListener(ev, f, false);
}:window.attachEvent? function(el, ev, f){
el.attachEvent('on' + ev, f);
}:function(){return;};
})();
function overthem(){
var links = document.getElementById(id).getElementsByTagName('a');
for(var i = 0; i < links.length; ++i){
(function(link){
var href = link.href, targ = link.target;
add(link, 'mouseover', function(){open(href, targ);});
})(links[i]);
}
}
add(window, 'load', overthem);
})('slider1');
</script>
See the highlighted slider1? That's the id of the sliderwrapper division.
For faster execution (readiness), put it as the last thing before the closing </body> tag and change:
Code:
add(window, 'load', overthem);
to:
Bookmarks