Hi, I have the cycle plugin setup so a series of thumbnails of the
image switch the bigger image upon mouseover.  Much like this
example... http://www.malsup.com/jquery/cycle/pager6.html
except mine works by hovering over the thumbs like:

.cycle({
        fx:     'fade',
        speed:  'fast',
        timeout: 9000,
        pager:  '#home-thumbs',
                pagerEvent: 'mouseover',
        pagerAnchorBuilder: function(idx, slide) {
            return '#home-thumbs li:eq(' + (idx) + ') a';
        }


I am trying to figure out how to also make those same thumbs also be
working links to other pages as well as hover controls.  Any thoughts
on how I can execute this ?

Reply via email to