//  <!--  

var home=new Array('lifestyle','neighborhoods','golfcourse','santaluzclub','aboutus','stayinformed','customhomesites1','realty');
var secondary=new Array('lifestyle2','neighborhoods2','golfcourse2','santaluzclub2','aboutus2','stayinformed2','customhomesites2','realty2');
var tertiary=new Array('trailslandmarks','theland','events','santaluzliving','schools','drivingdirections','guestbuilders',
	'customhomesites','reesjones','coursetour','golfmemberships','proshop','pooltennis','fitnessgym','campsantaluz',
	'freshroastcafe','theclubhouse','developerstory','thepeople','faq','townmanager','santaluzliving','awards',
	'buildergalley','hacienda','golf','memberships','clubhousespa','contactus','eventsliving','tennis');

var act=new Array('on','off')

if (document.images) {
 for (i=0;i<home.length;i++)    {
   for (j=0;j<2;j++)    {
     eval(home[i]+act[j]+"= new Image();");
     eval(home[i]+act[j]+".src = '/images/nav/homenav_"+home[i]+act[j]+".gif';")
   }
 }
 for (i=0;i<secondary.length;i++)    {
   for (j=0;j<2;j++)    {
     eval(secondary[i]+act[j]+"= new Image();");
     eval(secondary[i]+act[j]+".src = '/images/nav/snav_"+secondary[i]+act[j]+".gif';")
   }
 }
 for (i=0;i<tertiary.length;i++)    {
   for (j=0;j<2;j++)    {
     eval(tertiary[i]+act[j]+"= new Image();");
     eval(tertiary[i]+act[j]+".src = '/images/nav/tnav_"+tertiary[i]+act[j]+".gif';")
   }
 }
}

function homeswap(x,y) {
  if (document.images) {
    eval("document.images['"+home[x]+"'].src = "+home[x]+act[y]+".src");
  }
}
function secondaryswap(x,y) {
  if (document.images) {
    eval("document.images['"+secondary[x]+"'].src = "+secondary[x]+act[y]+".src");
  }
}
function tertiaryswap(x,y) {
  if (document.images) {
    eval("document.images['"+tertiary[x]+"'].src = "+tertiary[x]+act[y]+".src");
  }
}
// -->