featuredcontentslider.init({
	id: "slider1",  //id of main slider DIV
	contentsource: ["inline", ""],  //Valid values: ["inline", ""] or ["ajax", "path_to_file"]
	toc: "markup",  //Valid values: "#increment", "markup", ["label1", "label2", etc]
	nextprev: ["", ""],  //labels for "prev" and "next" links. Set to "" to hide.
	revealtype: "click", //Behavior of pagination links to reveal the slides: "click" or "mouseover"
	enablefade: [true, 0.09],  //[true/false, fadedegree]
	autorotate: [false, 3000],  //[true/false, pausetime]
	onChange: function(previndex, curindex){  //event handler fired whenever script changes slide
		//previndex holds index of last slide viewed b4 current (1=1st slide, 2nd=2nd etc)
		//curindex holds index of currently shown slide (1=1st slide, 2nd=2nd etc)
	}
})

var imageArray = new Array(); // leave as is.
var switchMilliseconds = 7500;
var divID = 'testing';
//imageArray[0] = '/images/home-image.jpg';
//imageArray[1] = '/images/home1.jpg';
//imageArray[2] = '/images/home6.jpg';
//imageArray[3] = '/images/home7.jpg';
imageArray[0] = 'http://cdn.goldkeyvacations.com/images/hp1.jpg';
imageArray[1] = 'http://cdn.goldkeyvacations.com/images/hp4.jpg';
imageArray[2] = 'http://cdn.goldkeyvacations.com/images/summer5.jpg';
imageArray[3] = 'http://cdn.goldkeyvacations.com/images/summer6.jpg';
imageArray[4] = 'http://cdn.goldkeyvacations.com/images/fallhp3.jpg';
imageArray[5] = 'http://cdn.goldkeyvacations.com/images/summer7.jpg';

function publishPicture(i) {
document.getElementById(divID).style.background = 'url("'+imageArray[i]+'")';
i++;
if( i > (imageArray.length - 1) ) { i = 0; }
setTimeout('publishPicture('+i+')',switchMilliseconds);
}
publishPicture(0);
