/* 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/frost.jpg','img/frost1.jpg','img/glasses2.jpg','img/frost2.jpg','img/frost9.jpg','img/glasses3.jpg','img/frost3.jpg','img/glasses4.jpg','img/frost4.jpg','img/frost7.jpg','img/glasses5.jpg','img/frost5.jpg','img/frost6.jpg','img/frost8.jpg','img/frost10.jpg'],
	// Fade pattern in sequence / \_ = 1,2,3,4 referenced below...
	//Durations in ms
	fadeInDuration:	800,	// How long to fade in (1)
	fadeOutDuration:800,	// How long to fade out (3)
	fadeInWait:	2500,	// How long to display image (2)
	fadeOutWait:	50	// How long to remain invisible (4)
	/***  END CONFIGURE ***/

};// End settings object.

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



