if (document.images) {
home_on = new Image();
home_on.src = "images/m_home_on.gif";
home_span_on = new Image();
home_span_on.src = "images/m_home_span_on.gif";
home_fr_on = new Image();
home_fr_on.src = "images/m_home_fr_on.gif";
forms_on = new Image();
forms_on.src = "images/m_forms_on.gif";
english_on = new Image();
english_on.src = "images/spl_english_on.gif";
french_on = new Image();
french_on.src = "images/spl_french_on.gif";
spanish_on = new Image();
spanish_on.src = "images/spl_spanish_on.gif";

// OFF ROLLOVER LIST
home_off = new Image();
home_off.src = "images/m_home_off.gif";
home_span_off = new Image();
home_span_off.src = "images/m_home_span_off.gif";
home_fr_off = new Image();
home_fr_off.src = "images/m_home_fr_off.gif";
forms_off = new Image();
forms_off.src = "images/m_forms_off.gif";
english_off = new Image();
english_off.src = "images/spl_english_off.gif";
french_off = new Image();
french_off.src = "images/spl_french_off.gif";
spanish_off = new Image();
spanish_off.src = "images/spl_spanish_off.gif";
//ROLL Handles
}
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");
}
}

