var howOften = 10; //number often in seconds to rotate
var current = 0; //start the counter at 0
var timer;
var ns6 = document.getElementById&&!document.all; //detect netscape 6

// place your images, text, etc in the array elements here
var items = new Array();
/*
items[0]="<img src='/gta/images/QuickMoveIn.jpg'/> <p class='Title'>Quick Move-Ins</p> Move in soon to your new Mattamy Home! Special pricing now on specific lots!<br/><a href='http://www.mattamyhomes.com/corporate/inventory/inventory.asp#Newmarket'>Newmarket</a> "; 
*/


  items[0]="<a href='http://www.mattamyhomes.com/GTA/Communities/Milton/Vista-Pointe/About.asp'><img src='/gta/images/VistaPointeLogo.jpg' alt='Rotate'><p class='Title'>VISTA POINTE</p></a>This is the Pointe. Only 28 Townhomes. An unobstructed view of the escarpment. A forest and a pond. Only one community entrance.  For the best in escarpment living, come to the Pointe. Priced from $469,990.<br><br><a href='http://www.mattamyhomes.com/GTA/Communities/Milton/Vista-Pointe/About.asp'>Click Here for More Information</a>";	

	items[1]="<a href='http://www.mattamyhomes.com/GTA/Communities/Pickering/Seaton/About.asp'><img src='/gta/images/SeatonBanner.jpg' alt='Rotate'><p class='Title'>SEATON</p></a> Seaton in Pickering brings you family homes that are surrounded by nature. Very affordable Townhomes are readily available including two new designs. Visit Seaton today and find out how you can live in modern, style at affordable prices.<br><br><a href='http://www.mattamyhomes.com/GTA/Communities/Pickering/Seaton/About.asp'>Click Here for More Information</a>";	

	items[2]="<a href='http://www.mattamyhomes.com/GTA/Communities/Brampton/Fletchers/About.asp'><img src='/gta/images/FletchersLogo.jpg' alt='Rotate'><p class='Title'>FLETCHER'S MEADOW</p></a> Our final phase in this highly-regarded Brampton community will soon be available. The last collection of homes will include 36', 41' and 45' WideLot™ homes. To pre-register for information, click here.<br><br><a href='http://www.mattamyhomes.com/GTA/Communities/Brampton/Fletchers/About.asp'>Click Here for More Information</a>";	

/*
function rotatepics() {
    if(document.layers) {
        document.placeholderlayer.document.write(items[current]);
        document.placeholderlayer.document.close();
    }
    if(ns6)document.getElementById("placeholderdiv").innerHTML=items[current] 
        if(document.all)
            placeholderdiv.innerHTML=items[current];

    current = (current==items.length) ? 0 : current + 1; //increment or reset
    setTimeout("rotatepics()",howOften*1000);
}
*/

function rotatepics() {
	clearTimeout(timer);
    document.getElementById("rotatepics").innerHTML = items[current];

	for (var i=0;i<items.length;i++){
		document.getElementById("N" + i).setAttribute("class", '');
		document.getElementById("N" + i).setAttribute("className", '');
	}
	
	document.getElementById("N" + current).setAttribute("class", 'currentpage');
    document.getElementById("N" + current).setAttribute("className", 'currentpage');
    current = (current==items.length-1) ? 0 : current + 1;
    timer=setTimeout("rotatepics()",howOften*1000);
	//document.getElementById("N" + current).style.fontSize = '26';	
}


