/* Copyright 2009 Joshua Allen allentech.net */
// Including page must add <script src='js/jquery.cdsfade.js' type='text/javascript'></script>

function startFading()
{
//Image id must be set to FADING_IMAGE_ID
// Settings for cdsFade().
var settings={

	/*** CONFIGURE IMAGES AND DURATIONS FOR THIS PAGE ***/
	//Set images to fade for this page
	srcPath:'./',	// Path to graphics.
	fadingImages:['img/special.jpg','img/home-temp.jpg','images/home-storage.jpg','img/home-storage2.jpg','img/home-storage3.jpg','img/home-storage4.jpg','img/home-storage5.jpg'],
	// Fade pattern in sequence / \_ = 1,2,3,4 referenced below...
	//Durations in ms
	fadeInDuration:	1000,	// How long to fade in (1)
	fadeOutDuration:1000,	// How long to fade out (3)
	fadeInWait:	5000,	// How long to display image (2)
	fadeOutWait:	100	// How long to remain invisible (4)
	/***  END CONFIGURE ***/

};// End settings object.

// Start cdsFade() with settings.
$('#FADING_IMAGE_ID').cdsFade(settings);}




