if (document.images) 
{
indexoff = new Image(); 
indexoff.src = "images/profile.jpg"; 
indexon = new Image(); 
indexon.src = "images/profile_f2.jpg";
attorneysoff = new Image(); 
attorneysoff.src = "images/attorneys.jpg"; 
attorneyson = new Image(); 
attorneyson.src = "images/attorneys_f2.jpg";
highlightsoff = new Image(); 
highlightsoff.src = "images/highlights.jpg"; 
highlightson = new Image(); 
highlightson.src = "images/highlights_f2.jpg";
pressoff = new Image(); 
pressoff.src = "images/press.jpg"; 
presson = new Image(); 
presson.src = "images/press_f2.jpg";
clientsoff = new Image(); 
clientsoff.src = "images/clients.jpg"; 
clientson = new Image(); 
clientson.src = "images/clients_f2.jpg";
linkoff = new Image();
linkoff.src = "images/links.jpg"; 
linkon = new Image(); 
linkon.src = "images/links_f2.jpg";
}
function On(imageName) 
{
if (document.images) 
{
document[imageName].src = eval(imageName+"on.src"); 
}
}
function Off(imageName) 
{
if (document.images) 
{
document[imageName].src = eval(imageName+"off.src"); 
}
}
