window.onload = function(){initULMenu('menu_topnav');}
$.fn.cycle.defaults.timeout = 6000;
/*
function onBefore() {
    $('#output').html("Scrolling image:<br>" + this.src);
    //window.console.log(  $(this).parent().children().index(this) );
}
function onAfter() {
    $('#output').html("Scroll complete for:<br>" + this.src)
        .append('<h3>' + this.alt + '</h3>');
}
*/
$(function() {
     $(".carousel").jCarouselLite({
          btnNext: ".prev",
          btnPrev: ".next"
     });

    // run the code in the markup!
    $('table pre code').not('#skip,#skip2').each(function() {
        eval($(this).text());
    });
    
    $('#homenumbers').before('<div id="navslide" class="navslide">').cycle({
        fx:     'fade',
        speed:  'fast',
        timeout: 8000,
        pager:  '#navslide'
    });

    $('#homeslideContaner').before('<div id="homeslide" class="homeslide">').cycle({
        fx:     'fade',
        speed:  'fast',
        timeout: 8000,
        pager:  '#navslide2'
    });
});
