$(document).ready(function() {

        var stack = [];

        // preload images into an array; we will preload beach3.jpg - beach8.jpg 
        for (var i = 3; i < 7; i++) {
            var img = new Image();
            img.src = 'images/frame-' + i + '.jpg';
            $(img).bind('load', function() {
                stack.push(this);
            });
        }

        // start slideshow 
        $('#rotator').cycle({
            timeout: 4000,
            speed: 2500,
            before: onBefore
        });

        // add images to slideshow 
        function onBefore(curr, next, opts) {
            if (opts.addSlide) // <-- important! 
                while (stack.length)
                opts.addSlide(stack.pop());
        }; 
 
  
    // $('#rotator').cycle({ 
    //		fx:    'fade', 
   // 		timeout:       4000,
    //		speed:  2500 
    // });


    $('#sidebar h2').cycle({ 
         	fx:    'fade', 
    		timeout:       4000,
    		speed:  2500 	
     });		

    $('.scroll-pane').jScrollPane();

    DD_belatedPNG.fix('.png_bg');

});