function preload_images(images) { for (var i = 0; i< images.length; i++) { $('').attr('src',images[i]); console.log(images[i]); } console.log('finish...'); } $(window).resize(function() { $('#slideshow').height($('#banner').height()); }); $(document).ready(function() { //$('#banner_overlay').show(); }); $(window).load(function() { var images = []; $('#banner > li').each(function() { images.push($(this).children('a').children('img').attr('src')); //console.log($(this).children('a').children('img').attr('src')); }); //preload_images(images); $('#slideshow').height($('#banner').height()); //$('#banner_overlay').hide(); });