// Initialize Variables
var CurIdx = 0;
var slide_size = 13;	// Number of images in the slideshow
var slide_time = 4000;	// Time in miliseconds
var element;

// the function to change the images reference from body onload
function slides() {
//	document.slideshow.src = ImageA[CurIdx];
	if (element == null) {
		element = document.getElementById("mydiv");
//		alert ('b = '+element.style.background+'\nbi = '+element.style.backgroundimage);
	}
//	element.style.background = '#'+CurIdx+CurIdx+CurIdx;
	element.style.background = 'url("'+ImageA[CurIdx]+'")';
//	element.style.backgroundrepeat = 'no-repeat';
//	element.style.backgroundimage = ImageA[CurIdx];
	CurIdx += 1;
	if (CurIdx == (slide_size)) {
		CurIdx = 0;
//		alert (element.style.backgroundimage);
	}
	setTimeout("slides()", slide_time);	//change picture
}

// Images
var ImageA = new Array (
//	"/images/topbg/ist2_3859049_luxury_home_new_construction.jpg",
//	"/images/topbg/ist2_4526551_estate_house_miami_florida.jpg",
//	"/images/topbg/ist2_4558996_wireframe_of_house.jpg",
//	"/images/topbg/ist2_4597248_site_inspection.jpg",
//	"/images/topbg/ist2_4772945_luxury_home_entryway.jpg",
//	"/images/topbg/ist2_4871310_florida_home_at_dusk.jpg",
//	"/images/topbg/ist2_4962111_blueprint.jpg",
//	"/images/topbg/ist2_5208817_handing_over_the_keys.jpg",
//	"/images/topbg/ist2_5286242_contemporary_bathroom.jpg",
//	"/images/topbg/ist2_5343589_happy_married_couple_shopping_for_their_new_home.jpg",
//	"/images/topbg/ist2_5704186_relaxing_back_yard.jpg",
//	"/images/topbg/ist2_5712645_luxury_custom_home.jpg",
//	"/images/topbg/ist2_5931033_luxury_home_theater.jpg",
//	"/images/topbg/ist2_5961236_swimming_pool.jpg"
	"/images/topbg/1.jpg",
	"/images/topbg/2.jpg",
	"/images/topbg/3.jpg",
	"/images/topbg/4.jpg",
	"/images/topbg/5.jpg",
	"/images/topbg/6.jpg",
	"/images/topbg/7.jpg",
	"/images/topbg/8.jpg",
	"/images/topbg/9.jpg",
	"/images/topbg/10.jpg",
	"/images/topbg/11.jpg",
	"/images/topbg/12.jpg",
	"/images/topbg/13.jpg"
);
