$(document).ready(function() { $(document).ready(function() { $('#stevejobs-main').hide().fadeIn(2000); $('#sj_header').show('drop', 3000); }); $('#slider').cycle({ fx: 'scrollHorz', speed: 'slow', timeout: 0, next: '#next', prev: '#prev' }); /* Every time the window is scrolled ... */ $(window).scroll( function(){ /* Check the location of each desired element */ $('#his_1').each( function(i){ var bottom_of_object = $(this).offset().top + $(this).outerHeight(); var bottom_of_window = $(window).scrollTop() + $(window).height(); /* If the object is completely visible in the window, fade it it */ if( bottom_of_window > bottom_of_object ){ $(this).animate({'opacity':'1'}, 3000); } }); $('#container_list').each( function(i){ var bottom_of_object = $(this).offset().top + $(this).outerHeight(); var bottom_of_window = $(window).scrollTop() + $(window).height(); /* If the object is completely visible in the window, fade it it */ if( bottom_of_window > bottom_of_object ){ $(this).show('drop', 3000); } }); $('#title1_underline').each( function(i){ var bottom_of_object = $(this).offset().top + $(this).outerHeight(); var bottom_of_window = $(window).scrollTop() + $(window).height(); /* If the object is completely visible in the window, fade it it */ if( bottom_of_window > bottom_of_object ){ $(this).show('drop', 3000, 'right'); } }); }); $('#wrapper').mouseenter(function() { $('#next_div').fadeIn('slow'); $('#prev_div').fadeIn('slow'); }); $('#wrapper').mouseleave(function() { $('#next_div').fadeOut('slow'); $('#prev_div').fadeOut('slow'); }); });