// 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:     'scrollHorz',
    	speed:  750, 
    	speedOut: 750, 
    	easeIn:  'easeOutExpo', 
    	easeOut: 'easeOutExpo', 
        timeout: 0, //triggers slideshow
        pager:  '#nav'
    });
});
