Event.observe(window, 'load', function(evnt)
{
        var ProtFlowExample = new ProtoFlow($("myCoverFlow"), {
                startIndex: 2,  //which image do you want the flow
                                                //to focus on by default
                slider: true,   //show or hide slider?
                captions: true, //show or hide captions, by default we hide it. 
                                //So YOU MUST turn it on here
                useReflection: false,   //Add reflection to your images. Please 
                                //note that this will slow down rendering.
                enableOnClickScroll: false //add NEW! if you wish to keep scrolling 
                                //on click just set this to be true 
        });
});

