if (document.images) { 

//Primary Navigation
topnav_design_centeron = new Image();
topnav_design_centeron.src = "../../images/topnav_design_center_on.gif";

topnav_design_centeroff = new Image();
topnav_design_centeroff.src = "../../images/topnav_design_center_off.gif";

topnav_case_studieson = new Image();
topnav_case_studieson.src = "../../images/topnav_case_studies_on.gif";

topnav_case_studiesoff = new Image();
topnav_case_studiesoff.src = "../../images/topnav_case_studies_off.gif";

topnav_nandaon = new Image();
topnav_nandaon.src = "../../images/topnav_nanda_on.gif";

topnav_nandaoff = new Image();
topnav_nandaoff.src = "../../images/topnav_nanda_off.gif";

topnav_about_uson = new Image();
topnav_about_uson.src = "../../images/topnav_about_us_on.gif";

topnav_about_usoff = new Image();
topnav_about_usoff.src = "../../images/topnav_about_us_off.gif";

topnav_contact_uson = new Image();
topnav_contact_uson.src = "../../images/topnav_contact_us_on.gif";

topnav_contact_usoff = new Image();
topnav_contact_usoff.src = "../../images/topnav_contact_us_off.gif";

}

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" );
	}
}
