<!--// JavaScript Document
function propRotate() {
	if($x > propArray.length-1) {
		$x=0;
	}
	if (document.getElementById) {
		document.getElementById("properties").innerHTML=propArray[$x];
	}
	else if (document.all) { // IE specific, not needed cos ^ works in IE
		x=document.document.all[properties];
		x.innerHTML="";
		x.innerHTML=propArray[$x];
	}
	else if (document.layers) { // NN specific
		document.layers.properties.document.open();
		document.layers.properties.document.write(propArray[$x]);
		document.layers.properties.document.close();
	}
setTimeout("propRotate()", 3000);
$x++;
}
window.onload=propRotate
//-->