﻿        $.fn.cycle.defaults.timeout = 6000;
        $(function() {
            // run the code in the markup!
            $('td pre code').each(function() {
                eval($(this).text());
            });
            
            $('#ads')
                .cycle({
                fx: 'scrollDown',
                speedIn: 2000,
                speedOut: 500,
                easeIn: 'bounceout',
                easeOut: 'backin',
                delay: 2000,
                timeout: 7000,
                pause: true,
                pager: '#feature_list'
            });
        });