<!-- 
/* 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/nav/meet_our_team_off.gif";

meet_our_team_on = new Image();
meet_our_team_on.src = "images/nav/meet_our_team_on.gif";

cost_segregation_off = new Image();
cost_segregation_off.src = "images/nav/cost_segregation_off.gif";

cost_segregation_on = new Image();
cost_segregation_on.src = "images/nav/cost_segregation_on.gif";

other_appraisal_off = new Image();
other_appraisal_off.src = "images/nav/other_appraisal_off.gif";

other_appraisal_on = new Image();
other_appraisal_on.src = "images/nav/other_appraisal_on.gif";

cpa_reference_off = new Image();
cpa_reference_off.src = "images/nav/cpa_reference_off.gif";

cpa_reference_on = new Image();
cpa_reference_on.src = "images/nav/cpa_reference_on.gif";

property_qualify_off = new Image();
property_qualify_off.src = "images/nav/property_qualify_off.gif";

property_qualify_on = new Image();
property_qualify_on.src = "images/nav/property_qualify_on.gif";

recent_off = new Image();
recent_off.src = "images/nav/recent_off.gif";

recent_on = new Image();
recent_on.src = "images/nav/recent_on.gif";

recentpub_off = new Image();
recentpub_off.src = "images/nav/recentpub_off.gif";

recentpub_on = new Image();
recentpub_on.src = "images/nav/recentpub_on.gif";

contact_off = new Image();
contact_off.src = "images/nav/contact_off.gif";

contact_on = new Image();
contact_on.src = "images/nav/contact_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)
} 
//-->