/*--------------------------------------------------------------#
#        Slide Show Presentation                                        #
#        slideconfig.js                                                  #
#        by Greg Amer gregamer@gascripts.com                        #
#        http://www.gascripts.com                                #
#_______________________________________________________________#

#---------------------------------------------------------------#
#        Slide Show Presentation -component list                        #
#                                                                #
#        1. slide.js - Class - slide                                #
#                * navigation and slide link functions                #
#        2. slideconfig.js - configuration file                        #
#                * user slide declarations                        #
#                * user defined variables                         #
#        3. slidedummies.js - TOB dummy functions                #
#        *  additional components                                #
#                * slide.htm - html demo                                #
#                * demo images                                        #
#                * navigation images                                #
#                                                                #
#______________________________________________________________*/


/*------REQUIRED Varible----------------------------------------#
#                                                                #
#        show is the name of the image space in the document        #
#        where the slides will be displayed.                        #
#______________________________________________________________*/

show = "show"

/*------Optional Varibles---------------------------------------#
#                                                                #
#        Supply fomname, sldcount & sldname if you are using        #
#        the slide form displays. These are the name of the        #
#        form, and the elements to display the count and Name.        #
#______________________________________________________________*/

formname = "slideshow"
sldcount = "countbox"
sldname  = "namebox"

/*------Create Slides-------------------------------------------#
#                                                                #
#        Supply (Width,Height,src,Name,Link,Title)                #
#______________________________________________________________*/

slide1 = new slide(276,369,"closeup.jpg","Jeff","","Jeff")
slide2 = new slide(276,369,"me_gallery.jpg","In the gallery","","In the gallery")
slide3 = new slide(276,369,"me_sarah.jpg","Sarah and Dad","","Sarah and Dad")
slide4 = new slide(276,369,"hannah_72905.jpg","Daughter Hannah","","Daughter Hannah")


/*--------------------------------------------------------------#
#        Slide Show Presentation                                        #
#        slideconfig.js                                                  #
#        by Greg Amer gregamer@gascripts.com                        #
#        http://www.gascripts.com                                #
#______________________________________________________________*/