	var count = 0;
	var timeOut;
	var currentSelection = 1;

function init()
{
	AutoRotate();
}

function AutoRotate()
{
	count = count + 1;
	timeOut = setTimeout('AutoRotate()',1000);

	if(count == 4)
	{
		count = 0;		
		
		switch (currentSelection + 1)
		{
			case 1:	Rotate('sel1');
			break;

			case 2:	Rotate('sel2');
			break;

			case 3: Rotate('sel3');
			break;

			case 4:	Rotate('sel4');
			break;

			case 5:	Rotate('sel5');	
			break;

			case 6:	Rotate('sel6');
			break;

			default: 	;
		}
		
		if(currentSelection == 6)
		{
			currentSelection = 0;
		}
		
		else {}
	}
}

function Rotate(property)
{
	if(document.getElementById)
	{

	var image = '';
	var title = '';
	var text = '';
	var pdf = '';
	var selected = '<img src="images/rotator/selected.gif" />';
	
	ClearSelected();

			switch (property)
	{
	case 'sel1':
	image = '<img src="images/properties/bumby.jpg" />'
	title = '<img src="images/rotator/offspc_ttl.jpg" style="position: relative; left: 40px" />'
	text = '1604 S. BUMBY AVE.<br />ORLANDO, FL 32806'
	pdf = '<a href="pdfs/flyer1.pdf" id="flyer"><span>View</span></a>'
	document.getElementById('sel1').innerHTML = selected
	currentSelection = 1;
	break;

	case 'sel2':
	image = '<img src="images/properties/altamonte.jpg" />'
	title = '<img src="images/rotator/altprom_ttl.jpg" style="position: relative; right: 10px" />'
	text = '455 W. STATE ROAD 436<br />ALTAMONTE SPRINGS, FL'
	pdf = '<a href="pdfs/flyer2.pdf" id="flyer"><span>View</span></a>'
	document.getElementById('sel2').innerHTML = selected
	currentSelection = 2;
	break;
	
	case 'sel3':
	image = '<img src="images/properties/east_central.jpg" />'
	title = '<img src="images/rotator/profoffice_ttl.jpg" />'
	text = '19 EAST CENTRAL BOULEVARD<br />ORLANDO, FL 32801'
	pdf = '<a href="pdfs/flyer3.pdf" id="flyer"><span>View</span></a>'
	document.getElementById('sel3').innerHTML = selected
	currentSelection = 3;
	break;

	case 'sel4':
	image = '<img src="images/properties/east_central.jpg" />'
	title = '<img src="images/rotator/profbuild_ttl.jpg" style="position: relative; right: 11px" />'
	text = '19 EAST CENTRAL BOULEVARD<br />ORLANDO, FL 32801'
	pdf = '<a href="pdfs/flyer4.pdf" id="flyer"><span>View</span></a>'
	document.getElementById('sel4').innerHTML = selected
	currentSelection = 4;
	break;

	case 'sel5':
	image = '<img src="images/properties/mattress_giant.jpg" style="position: relative; top: -1px;" />'
	title = '<img src="images/rotator/mattgiant_ttl.jpg" style="position: relative; left: 8px" />'
	text = '445 W. STATE ROAD 436, SUITE 1017<br />ALTAMONTE SPRINGS, FL 32714'
	pdf = '<a href="pdfs/flyer5.pdf" id="flyer"><span>View</span></a>'
	document.getElementById('sel5').innerHTML = selected
	currentSelection = 5;
	break;

	case 'sel6':
	image = '<img src="images/properties/oak_forest.jpg" />'
	title = '<img src="images/rotator/oak_ttl.jpg" style="position: relative; left: 50px" />'
	text = '704 W. STATE ROAD 436, SUITE 124<br />ALTAMONTE SPRINGS, FL 32714'
	pdf = '<a href="pdfs/flyer6.pdf" id="flyer"><span>View</span></a>'
	document.getElementById('sel6').innerHTML = selected
	currentSelection = 6;
	break;

	default: ;
	}
	
	
	document.getElementById('property_img').innerHTML = image;
	document.getElementById('prop_title').innerHTML = title;
	document.getElementById('prop_desc').innerHTML = text;
	document.getElementById('flyerhlink').innerHTML = pdf;
	}
}


function ClearSelected()
{
		var unselected = '<img src="images/rotator/selector.gif" />';
		document.getElementById('sel1').innerHTML = unselected;
		document.getElementById('sel2').innerHTML = unselected;
		document.getElementById('sel3').innerHTML = unselected;
		document.getElementById('sel4').innerHTML = unselected;
		document.getElementById('sel5').innerHTML = unselected;
		document.getElementById('sel6').innerHTML = unselected;		
}
