thisImg = 0;

slideImgs = new Array(
	"/uploads/images/slideshow/1_office_building.jpg",
	"/uploads/images/slideshow/2_front_door.jpg",
	"/uploads/images/slideshow/3_supplements_backpacks.jpg",
	"/uploads/images/slideshow/4_hallway.jpg",
	"/uploads/images/slideshow/5_inside_office.jpg",
	"/uploads/images/slideshow/6_brown_table.jpg",
	"/uploads/images/slideshow/7_green_table.jpg",
	"/uploads/images/slideshow/8_massage.jpg",
	"/uploads/images/slideshow/9_sidelying.jpg"
);

function doSlideShow()
{
	thisImg++;
	if (thisImg == slideImgs.length) thisImg = 0;
	document.getElementById("slide_show_img").src = slideImgs[thisImg];
	setTimeout("doSlideShow()",3000);
}