var home=new Array('club','lifestyle','realty','developer','contact','members');
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 = '/includes/templates/homepage_07/images/nav/"+home[i]+"_"+act[j]+".jpg';")
   }
 }
}


function homepage_07_nav(x,y) 
{
  if (document.images) {
    eval("document.images['"+home[x]+"'].src = "+home[x]+"_"+act[y]+".src");
  }
}
