/***************************************************************************
 * @Author: NetChillies - PepUp The Web!
 * @Website: http://www.netchillies.com/
 * @Contact: http://www.netchillies.com/contact
 * @Privacy Policy & Terms of Use: http://www.netchillies.com/terms
 * @License Info: http://www.netchillies.com/license
 ***************************************************************************/
$(document).ready(function(){
    $('#featured-slidehow').cycle({
        fx:     'scrollHorz',
        speed:  'fast',
        timeout: 0,
        pager:  '#nav',

        // callback fn that creates a thumbnail to use as pager anchor
        pagerAnchorBuilder: function(idx, slide) {
            return '#nav li:eq(' + idx + ') a'; 
        }
    });
})
