<!--
if (document.images) {
// Active images
artiston = new Image();		
artiston.src = "images/artist_resume_on.gif"; 
toolon = new Image();
toolon.src = "images/tool_series_on.gif"; 
sacredon = new Image();
sacredon.src = "images/sacred_series_on.gif"; 
keyon = new Image();
keyon.src = "images/key_series_on.gif"; 
emailon = new Image();
emailon.src = "images/email_on.gif";

previouson = new Image();
previouson.src = "images/previous_on.gif";
mainon = new Image();
mainon.src = "images/main_on.gif";
nexton = new Image();
nexton.src = "images/next_on.gif";

// Inactive images
artistoff = new Image();		
artistoff.src = "images/artist_resume_off.gif";  
tooloff = new Image();		
tooloff.src = "images/tool_series_off.gif"; 
sacredoff = new Image();
sacredoff.src = "images/sacred_series_off.gif"; 
keyoff = new Image();
keyoff.src = "images/key_series_off.gif";
emailoff = new Image();
emailoff.src = "images/email_off.gif"; 

previousoff = new Image();
previousoff.src = "images/previous_off.gif";
mainoff = new Image();
mainoff.src = "images/main_off.gif";
nextoff = new Image();
nextoff.src = "images/next_off.gif";

}

function imgOn(imgName) {

if (document.images) {
document[imgName].src = eval(imgName + "on.src");
}
}

function imgOff(imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "off.src");
}
}

// -->