<!-- 
/* Check to make sure rollovers will work with the browser */
if (document.images)
{
var loaded = (!(navigator.userAgent.indexOf('Netscape6')+1));

meet_our_team_off = new Image();
meet_our_team_off.src = "../images/subnav/meet_our_team_off.gif";

meet_our_team_on = new Image();
meet_our_team_on.src = "../images/subnav/meet_our_team_on.gif";

cost_segregation_off = new Image();
cost_segregation_off.src = "../images/subnav/cost_segregation_off.gif";

cost_segregation_on = new Image();
cost_segregation_on.src = "../images/subnav/cost_segregation_on.gif";

other_appraisal_off = new Image();
other_appraisal_off.src = "../images/subnav/other_appraisal_off.gif";

other_appraisal_on = new Image();
other_appraisal_on.src = "../images/subnav/other_appraisal_on.gif";

cpa_reference_off = new Image();
cpa_reference_off.src = "../images/subnav/cpa_reference_off.gif";

cpa_reference_on = new Image();
cpa_reference_on.src = "../images/subnav/cpa_reference_on.gif";

property_qualify_off = new Image();
property_qualify_off.src = "../images/subnav/property_qualify_off.gif";

property_qualify_on = new Image();
property_qualify_on.src = "../images/subnav/property_qualify_on.gif";

contact_off = new Image();
contact_off.src = "../images/subnav/contact_off.gif";

contact_on = new Image();
contact_on.src = "../images/subnav/contact_on.gif";

recent_dev_off = new Image();
recent_dev_off.src = "../images/subnav/recent_dev_off.gif";

recent_dev_on = new Image();
recent_dev_on.src = "../images/subnav/recent_dev_on.gif";

recent_pub_off = new Image();
recent_pub_off.src = "../images/subnav/recent_pub_off.gif";

recent_pub_on = new Image();
recent_pub_on.src = "../images/subnav/recent_pub_on.gif";
}

function onRoll(imageName)
{ if (document.images && loaded)
  { document[imageName].src = eval(imageName + "_on.src"); }
 // alert (document[imageName].src)
}

function offRoll(imageName)
{ if (document.images && loaded)
  { document[imageName].src = eval(imageName + "_off.src"); }
 // alert (document[imageName].src)
} 
//-->