﻿var mygallery = new fadeSlideShow({
    //documentation see
    //http://www.dynamicdrive.com/dynamicindex14/fadeinslideshow.htm
    wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow --FAQ page
    dimensions: [400, 285], //width/height of gallery in pixels. Should reflect dimensions of largest image
    imagearray: [
		["/Content/images/layer_1.jpg", "", "", "Outbuilders custom building in action"],
		["/Content/images/layer_2.jpg", "", "", "Initial framing of the shed completed"],
		["/Content/images/layer_3.jpg", "", "", "Exterior framing completed"],
        ["/Content/images/layer_4.jpg", "", "", "We can match any roofing style you like"],
        ["/Content/images/layer_5.jpg", "", "", "The finished shed, all in one day"]//<--no trailing comma after very last image element!
	],
    displaymode: { type: 'auto', pause: 2500, cycles: 0, wraparound: false },
    persist: false, //remember last viewed slide and recall within same session?
    fadeduration: 500, //transition duration (milliseconds)
    descreveal: "always",
    togglerid: ""
})
var mygallery2 = new fadeSlideShow({
    //documentation see
    //http://www.dynamicdrive.com/dynamicindex14/fadeinslideshow.htm
    wrapperid: "fadeshow2", //ID of blank DIV on page to house Slideshow --home page
    dimensions: [400, 325], //width/height of gallery in pixels. Should reflect dimensions of largest image
    imagearray: [
		["/Content/images/classic_gable-show.jpg", "Default.aspx?p=83", "", "Classic Gable Shed"],
		["/Content/images/better_barn-show.jpg", "Default.aspx?p=85", "", "Better Barn"],
		["/Content/images/walker-show.jpg", "Default.aspx?p=84", "", "The Walker"]//<--no trailing comma after very last image element!
	],
    displaymode: { type: 'auto', pause: 2500, cycles: 0, wraparound: false },
    persist: false, //remember last viewed slide and recall within same session?
    fadeduration: 500, //transition duration (milliseconds)
    descreveal: "always",
    togglerid: ""
})
