// JavaScript Document

<!--
if(document.images) {

        var buttons = new Array("toc1","toc2","toc3","toc4","toc5","toc6","toc7","toc9","toc10","toc11","toc12");

// All the whitesOFF

toc1off = new Image(147, 18);
toc1off.src = "images/btn_about_off.gif";
toc2off = new Image(147, 29);
toc2off.src = "images/btn_how_off.gif";
toc3off = new Image(147, 37);
toc3off.src = "images/btn_how_exec_off.gif";
toc4off = new Image(147, 33);
toc4off.src = "images/btn_how_mgmt_off.gif";
toc5off = new Image(147, 34);
toc5off.src = "images/btn_how_sub_off.gif";
toc6off = new Image(147, 29);
toc6off.src = "images/btn_case_off.gif";
toc7off = new Image(147, 29);
toc7off.src = "images/btn_newsroom_off.gif";


toc10off = new Image(147, 29);
toc10off.src = "images/btn_joinus_off.gif";
toc11off = new Image(147, 29);
toc11off.src = "images/btn_contactus_off.gif";
toc12off = new Image(147, 30);
toc12off.src = "images/btn_home_off.gif";
toc13off = new Image(147, 33);
toc13off.src = "images/btn_how_chg_off.gif";
toc14off = new Image(147, 30);
toc14off.src = "images/btn_who_off.gif";

// All the bluesON

toc1on = new Image(147, 18);
toc1on.src = "images/btn_about_on.gif";
toc2on = new Image(147, 29);
toc2on.src = "images/btn_how_on.gif";
toc3on = new Image(147, 37);
toc3on.src = "images/btn_how_exec_on.gif";
toc4on = new Image(147, 33);
toc4on.src = "images/btn_how_mgmt_on.gif";
toc5on = new Image(147, 34);
toc5on.src = "images/btn_how_sub_on.gif";
toc6on = new Image(147, 29);
toc6on.src = "images/btn_case_on.gif";
toc7on = new Image(147, 29);
toc7on.src = "images/btn_newsroom_on.gif";


toc10on = new Image(147, 29);
toc10on.src = "images/btn_joinus_on.gif";
toc11on = new Image(147, 29);
toc11on.src = "images/btn_contactus_on.gif";
toc12on = new Image(147, 30);
toc12on.src = "images/btn_home_on.gif";
toc13on = new Image(147, 33);
toc13on.src = "images/btn_how_chg_on.gif";
toc14on = new Image(147, 30);
toc14on.src = "images/btn_who_on.gif";

}
function img_act(imgName) {
	if (document.images) {
	imgOn = eval(imgName + "on.src");
	document [imgName].src = imgOn;
	}
}


function img_inact(imgName) {
        if (document.images) {
        imgOff = eval(imgName + "off.src");
        document [imgName].src = imgOff;
        }
}
// -->
