$(document).ready( function () {
    $('#diapo_specials').cycle({ 
            fx:    'fade', 
            timeout: 3000 
    });
        
        
    $('#product_main_image').cycle({ 
        fx:     'scrollRight', 
        speed:  'slow', 
        timeout: 0, 
        pager:  '#product_thumbnails_nav',     
         
        // callback fn that creates a thumbnail to use as pager anchor 
        pagerAnchorBuilder: function(idx, slide) {    
            return '<li><a href="#"><img src="' + slide.src + '" width="50" height="50" /></a></li>'; 
        } 
    });
});

