function cycle(effect)
{
	new Effect.Appear('benefit2', {duration: 0.5});
	new Element.remove('benefit1');
	$('benefit2').id = 'benefit1';			
	requestImage(effect.options.next_index);			
}

function requestImage(index)
{

	imageInfo = getImageInfo(index);
	
	new Insertion.After('benefit1','<div id="benefit2"><img class="homeswap" src="' + imageInfo[0] + '" alt="Support Service Group, LLC"/><div class="homeswap">' + imageInfo[1] + '</div></div>	');window.setTimeout("new Effect.Fade('benefit1', {duration: 0.5, afterFinish: cycle, next_index: " + imageInfo[2] + "})",4000);
}

function getImageInfo(index)
{
	image_urls = new Array(
		'/images/pano/chef.jpg', 
		'/images/pano/machineroom.jpg', 
		'/images/pano/mower.jpg', 
		'/images/pano/chef.jpg', 
		'/images/pano/machineroom.jpg', 
		'/images/pano/mower.jpg',
		'/images/pano/chef.jpg', 
		'/images/pano/machineroom.jpg', 
		'/images/pano/mower.jpg',
		'/images/pano/chef.jpg', 
		'/images/pano/machineroom.jpg', 
		'/images/pano/mower.jpg')

	paragraph_texts = new Array(
		'"SSG exceeded our expectations in all areas…"<div class="cap">VP of Business Affairs</div>',
		'"I really appreciate your professionalism…"<div class="cap">President</div>', 
		'"SSG saved us over $1,000,000, without having to go through a RFP process…"<div class="cap">Business Manager</div>',
		'"Your experience with process management definitely saved us…"<div class="cap">Associate VP</div>',
		'"…The most ethical consultant that we’ve ever used…"<div class="cap">Director of Auxiliary Services</div>', 
		'"The contract negotiations were handled by SSG ethically and professionally…"<div class="cap">Senior VP</div>',
		'"Total independence…totally objective…never showed any favoritism…"<div class="cap">VP of Student Affairs</div>',
		'"Their references could not have been more favorable…"<div class="cap">VP of Business &amp; CFO</div>', 
		'"They helped us immensely and our facilities have never looked better…"<div class="cap">VP of Business &amp; Finance</div>', 
		'"From a contractor’s perspective, they are the best consultants that we deal with…"<div class="cap">Senior VP Major International Contractor</div>', 
		'"The maintenance agreement that they crafted for us was simply superb…"<div class="cap">Senior Associate VP</div>',
		'"The contract negotiations were handled by SSG ethically and professionally…"<div class="cap">Senior VP</div>')
	
	if(!index) index = 0;	
	if (index >= image_urls.length) index = 0; 
		image_url = image_urls[index]
	paragraph_text = paragraph_texts[index]
		next_index = index + 1
	return new Array(image_url, paragraph_text, next_index);
}


