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]="<p class='Title'><a href='/Alberta/Communities/Airdrie/Windsong/Homes-For-Sale.asp'><img src='/alberta/images/mainbutton_1.jpg' alt='Rotate'></a><font color='red'>Welcome To Our Merry Month Of May Sale!</p><p><strong><i>Save Up To $15,000 On Select Homes In Windsong.</i></strong></font></p><p>May is one of the best months of the year. And we’re going to make it even better with our first ever Merry Month Of May Sale.</p><p>This is a perfect opportunity to save thousands on the price of almost every single home in Windsong.</p><p>A merry May stroll through Windsong will be rewarded with a renewal of growth as nature blooms all around you.<br>You’ll see the many family features that make this a great place to live for hundreds of families.</p><p>Our Village Homes, WideLot™ Townhomes, Urban Townhomes and our stylish Single Car and Double Car Garage Homes are available all this May at a very special savings.</p><p>Come and join us during our Merry Month Of May Sale and enjoy big spring savings on every home in Windsong.</p>";

	items[1]="<p class='Title'> <a href='/Alberta/Difference/Wide-lot-story.asp'><img src='/alberta/images/mainbutton_3.jpg' alt='Rotate'></a>The WideLot&trade; Story </p><p>As a builder and developer, we believe there is no better design than WideLot™ It’s a different way to look at and use space. WideLot™ opens up more exterior and interior design possibilities and creates a more distinctive looking neighbourhood. <br /><br />We have built more than 46,000 homes so we have significant experience in maximizing all of the benefits of this kind of homebuilding.  <br /> <br /><a href='/Alberta/Difference/Wide-lot-story.asp'>Read More </a>  ";
	
	items[2]="<p class='Title'><a href='/Alberta/Communities/Airdrie/Windsong/Homes-For-Sale.asp'><img src='/alberta/images/mainbutton_7.jpg' /></a>Now Available. </p>8 New-Age WideLot™ Townhome Designs.<br /> <br /><a href='/Alberta/Communities/Airdrie/Windsong/Homes-For-Sale.asp'>Click here for a peek at our new, affordable WideLot™ collection. </a> ";

/*items[4]="<img width='400' src='/alberta/images/mainbutton_6.jpg' /><p class='Title'>Special Early Occupancy Pricing Now In Effect On Single Car Garage Homes.</p> <p>Priced from $279,990</p> <a href='/Alberta/ContactUs'><p>Contact the Sales Office for Details</p></a>";*/

function rotatepics() {
	clearTimeout(timer);
    document.getElementById("rotatepics").innerHTML = items[current];

	for (var i=0;i<items.length;i++){
		document.getElementById("R" + i).setAttribute("class", '');
		document.getElementById("R" + i).setAttribute("className", '');
	}
	
	document.getElementById("R" + current).setAttribute("class", 'currentpage');
    document.getElementById("R" + current).setAttribute("className", 'currentpage');
    current = (current==items.length-1) ? 0 : current + 1;
    timer=setTimeout("rotatepics()",howOften*1000);
	//document.getElementById("N" + current).style.fontSize = '26';	
}


