// JavaScript Document
var s1 = new SlideShow('slideshowcontainer',250,150,{
                                    delay: 2500,				//Milliseconds to pause after photo has faded-in
                                    frameDelay: 50,				//Milliseconds to pause between each fade step
                                    step: 5,					//Percentage difference in fade with each fade step
                                    repeatFirstImage: true	//Only show first image once if false
                                });
                                /*
                                    parameters:
                                        1 - The id of the image container 'DIV' tag
                                        2 - The width in pixels of the slideshow
                                        3 - The height in pixels of the slideshow
                                        4 - Options as described
                                */