var detect = navigator.userAgent.toLowerCase();
var thestring;

function checkIt(string)
{
	place = detect.indexOf(string) + 1;
	thestring = string;
	return place;
}

var i = -1
function runPropertySlide(max)
{
	if (i == max) i = 0;
	else i++;
	
	if (propertyList.length > 0)
	{
		var oDiv = document.getElementById("slideshow_div");
		if (checkIt('msie')) oDiv.filters[0].apply();

		oDiv.innerHTML = propertyList[i]
		if (checkIt('msie')) oDiv.filters[0].play();

		mytimeout = setTimeout("runPropertySlide(" + max + ")",8000)
	}
}