// Copyright 2000-2005, DataCom of Duluth

// Setups
var rPics = new Array();
rPics[0]="new.jpg";
rPics[1]="HL1.jpg";
rPics[2]="buhlEXT.jpg";
rPics[3]="exterior.jpg";
rPics[4]="HL3.jpg";
rPics[5]="HL4.jpg";
rPics[6]="walking.jpg";
rPics[7]="HL2.jpg";
rPics[8]="milk.jpg";
rPics[9]="coffee.jpg";
rPics[10]="6oclubs.jpg";
rPics[11]="livingrm.jpg";
rPics[12]="suite.jpg";
rPics[13]="fireplace.jpg";
rPics[14]="lpn.jpg";
rPics[15]="sunroom.jpg";
rPics[16]="familyhats.jpg";
rPics[17]="squeezebox.jpg";
rPics[18]="wave.jpg";

var rTxts = new Array();
rTxts[0]="Fun things are always \"growing on\" at Northland Village. ";
rTxts[1]="We have communities in Hoyt Lakes…";
rTxts[2]="...Buhl...";
rTxts[3]="… and McGregor.";
rTxts[4]="Outdoor spaces are comfortable spots for fresh air.";
rTxts[5]="Sit awhile and relax...";
rTxts[6]="...or get some exercise.";
rTxts[7]="The Great Room in Hoyt Lakes is sunny and bright.";
rTxts[8]="It's nice to be waited on at mealtime.";
rTxts[9]="Service with a smile!";
rTxts[10]="Who's winning? Enjoy activities with friends and staff.";
rTxts[11]="Kitchen and dining rooms look like home, and the coffee is always on.";
rTxts[12]="Decorate your own private suite with your favorite things.";
rTxts[13]="Warm up on a cool day near the gas fireplace.";
rTxts[14]="Friendly care attendants are on site 24 hours a day.";
rTxts[15]="Each location offers cozy nooks to read, chat, and relax.";
rTxts[16]="Residents, families, and friends are invited to join in special events.";
rTxts[17]="A musician entertains an appreciative crowd.";
rTxts[18]="Here at Northland Village, friends are close at hand.";

var rPic="0";
var rTxt="0";
	
//SlideShow
function rbPics() {
	if (rPic > 0) {
	rPic--;
	document.getElementById('gallery').src = "/images/gallery/"+rPics[rPic];
	document.getElementById('pTxt').innerHTML = rTxts[rPic];
	} else {
	rPic = rPics.length-1;
	document.getElementById('gallery').src = "/images/gallery/"+rPics[rPic];
	document.getElementById('pTxt').innerHTML = rTxts[rPic];
	}
}

function rnPics() {
	if (rPic < (rPics.length-1)) {
	rPic++;
	document.getElementById('gallery').src = "/images/gallery/"+rPics[rPic];
	document.getElementById('pTxt').innerHTML = rTxts[rPic];
	} else {
	rPic = 0;
	document.getElementById('gallery').src = "/images/gallery/"+rPics[rPic];
	document.getElementById('pTxt').innerHTML = rTxts[rPic];
	}
}

