       $(document).ready(function() {
            $('.slideshow').cycle({
                fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
				//delay:  -4000,
				timeout: 2000
            });
			jQuery('.slideshow').click(function (){
      				popup('flash.html');
					
   			});
        });

  
  var stack = []; 
 
    // preload images into an array; we will preload intro3.jpg - intro7.jpg 
    for (var i = 3; i <= 7; i++) { 
        var img = new Image(700,429); 
        img.src = 'images/intro' + i + '.jpg'; 
        $(img).bind('load', function() { 
            stack.push(this); 
        }); 
    }  
 
    // start slideshow 
    $('.slideshow').cycle({ 
		delay: 4000,
        before:   onBefore 
	});
	
 
    // add images to slideshow 
    function onBefore(curr, next, opts) { 
        if (opts.addSlide) // <-- important! 
            while(stack.length) 
                opts.addSlide(stack.pop());  
    }; 