

function highlighter(cat) {
	
var splitter=document.title;
var pageName=splitter.split(" ");
var changeIt=pageName[4].toLowerCase();

if (changeIt=="about" || changeIt=="amenities" || changeIt=="location" || changeIt=="photos" || changeIt=="site" || changeIt=="homes" || changeIt=="contact" || changeIt=="homes"){
var theTag=document.getElementById(changeIt);
theTag.style.color='#ffffff';
theTag.style.backgroundColor='#d15600';
} else if (changeIt=="rv"){
	var theTag=document.getElementById(changeIt);
theTag.style.color='#ffffff';
theTag.style.backgroundColor='#9D0224';
} else if (changeIt=="espanol"){
	
document.getElementById(changeIt).src=$path+changeIt+'O.gif';
}


}

function pictureFlip($number){
	
var thePic=document.getElementById("mainPhoto");
var thePath="photos/lg/";

thePic.src=thePath+$number+".jpg";
	

}

function forSaleFlip($max,$listing){
var thePict=document.getElementById($listing);
var thePath="homes/";

var chopper=thePict.src.split("_");
var chopper2=chopper[1].split(".");
var $numb=chopper2[0];

if ($numb<$max){
$numb++;
} else {
$numb=1;
}
thePict.src=thePath+$listing+"_"+$numb+".jpg";
	
}

function offerPop(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=450,height=330,left=0,top=0');");
}
