// lazy shortcut
d=document;

//rollover array
sections = new Array("home","consulting","expertise","speaking","clients","contact","olinks");
for (x=0;x<=sections.length-1;x++){
setup = sections[x]+'on = new Image();'+sections[x]+'on.src = "images/global/nav/'+sections[x]+'_on.gif";'+sections[x]+'off = new Image();'+sections[x]+'off.src = "images/global/nav/'+sections[x]+'_off.gif";';
eval(setup);
}

// image rollovers
function on(which) {if ((d.images[which])&&(which!="<?echo$section?>")) {document[which].src = eval(which+"on.src");}}
function off(which) {if ((d.images[which])&&(which!="<?echo$section?>")) {document[which].src = eval(which+"off.src");}}

//window dressing
window.status=d.title;