<!--
if (document.images) {
img1on = new Image();
img1on.src = "images/navigation/red_home.jpg";
img2on = new Image();
img2on.src = "images/navigation/green_our_services.jpg";
img3on = new Image();
img3on.src = "images/navigation/blue_methodology.jpg";
img4on = new Image();
img4on.src = "images/navigation/red_ethics_integrity.jpg";
img5on = new Image();
img5on.src = "images/navigation/green_why_a2m.jpg";
img6on = new Image();
img6on.src = "images/navigation/blue_about_us.jpg";
img7on = new Image();
img7on.src = "images/navigation/red_contact_us.jpg";

img1off = new Image();
img1off.src = "images/navigation/orange_home.jpg";
img2off = new Image();
img2off.src = "images/navigation/orange_our_services.jpg";
img3off = new Image();
img3off.src = "images/navigation/orange_methodology.jpg";
img4off = new Image();
img4off.src = "images/navigation/orange_ethics_integrity.jpg";
img5off = new Image();
img5off.src = "images/navigation/orange_why_a2m.jpg";
img6off = new Image();
img6off.src = "images/navigation/orange_about_us.jpg";
img7off = new Image();
img7off.src = "images/navigation/orange_contact_us.jpg";
}
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");
}


}
//-->

