var current=0;

function changeItem(){
//var sPath = window.location.pathname;
//var indexpage = '';
//	if (sPath == '' || sPath == '/index.asp' || sPath == '/atnursery/index.asp') indexpage = '-index'
	document.TopPhoto.src = SrvrName + 'images/nurseries/' + NImage[current];

	if (current==(NoI-1)) current=0
	else current++
	setTimeout("changeItem()",5000);
}
window.onload=changeItem
