// JavaScript Document



$(function() { //this is on HTML ready
$('#ImgContainer').fadeIn(1000); //1. select the div using regular css, 2. fade it in
});


$(function() { //this is on HTML ready
$('#LogoHome').fadeIn(1000); //1. select the div using regular css, 2. fade it in
});


$.fn.cycle.defaults.timeout = 6000;
$(function() {
    // run the code in the markup!
    $('table pre code').not('#skip,#skip2').each(function() {
        eval($(this).text());
    });
    
    $('#s4').before('<div id="nav" class="nav">').cycle({
        fx:     'fade',
        speed:  1000,
        timeout: 0, //triggers slideshow
        pager:  '#nav'
    });
});

