/* Ultimate Fade-in slideshow (v2.1)
* Last updated: Sept 10th, 2009. This notice must stay intact for usage 
* Author: Dynamic Drive at http://www.dynamicdrive.com/
* Visit http://www.dynamicdrive.com/ for full source code
*/

//Oct 6th, 09' (v2.1): Adds option to randomize display order of images, via new option displaymode.randomize

var mygallery=new fadeSlideShow({
	wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
	dimensions: [200, 200], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		["/products/krakel/refrigeration225.jpg", "/landing.cfm/3608", "", "<center>CONTINENTAL - ASCEND</center>"],
		["/products/krakel/cooking225.jpg", "/landing.cfm/3560", "_new", "<center>BAKERS PRIDE - AMANA</center>"],
		["/products/krakel/countertop225.jpg", "/landing.cfm/3572", "", "<center>AMANA - EURODIB</center>"],
		["/products/krakel/tabletop225.jpg", "/landing.cfm/3736", "", "<center>FOCUS - UPDATE</center>"], 
		["/products/krakel/barsupplies225.jpg", "/landing.cfm/3513", "", "<center>WARING - EURODIB</center>"] //<--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: "ondemand",
	togglerid: ""
})

