if (document.images) {   

    // "On" images   
	img1off = new Image(  );
    img1off.src = "/__shared/templates/image/find-cme-nav-on.gif"; 
	
	img2off = new Image(  );
    img2off.src = "/__shared/templates/image/get-help-nav-on.gif";
	
	img3off = new Image(  );
    img3off.src = "/__shared/templates/image/join-email-nav-on.gif";
	
	img4off = new Image(  );
    img4off.src = "/__shared/templates/image/reg-online-nav-on.gif";
	
	img5off = new Image(  );
    img5off.src = "/__shared/templates/image/view-practice-nav-on.gif";
	
	img6off = new Image(  );
    img6off.src = "/__shared/templates/image/log-in-nav-on.gif";
	
	img7off = new Image(  );
    img7off.src = "/__shared/templates/image/rural-nav-on.gif";
	
	img8off = new Image(  );
    img8off.src = "/__shared/templates/image/grand-rounds-nav-on.gif";
	
	img9off = new Image(  );
    img9off.src = "/__shared/templates/image/sugg-nav-on.gif";
	 

    // "Off" images  
	img1on = new Image(  );
    img1on.src = "/__shared/templates/image/find-cme-nav-off.gif"; 
	
	img2on = new Image(  );
    img2on.src = "/__shared/templates/image/get-help-nav-off.gif";
	
	img3on = new Image(  );
    img3on.src = "/__shared/templates/image/join-email-nav-off.gif";
	
	img4on = new Image(  );
    img4on.src = "/__shared/templates/image/reg-online-nav-off.gif";
	
	img5on = new Image(  );
    img5on.src = "/__shared/templates/image/view-practice-nav-off.gif";
	
	img6on = new Image(  );
    img6on.src = "/__shared/templates/image/log-in-nav-off.gif";

	img7on = new Image(  );
    img7on.src = "/__shared/templates/image/rural-nav-off.gif";
	
	img8on = new Image(  );
    img8on.src = "/__shared/templates/image/grand-rounds-nav-off.gif";
	
	img9on = new Image(  );
    img9on.src = "/__shared/templates/image/sugg-nav-off.gif";

}

function imgOn(imgName) {   
    if (document.images) {
        document.images[imgName].src = eval(imgName + "on.src");
    }
}

function imgOff(imgName) {   
    if (document.images) {
        document.images[imgName].src = eval(imgName + "off.src");
    }
}


