// NAVIGATION /////////////////////////////////////////////////

var Base="../images/product_pics/";

if (document.images) {     
	low_voltageDIM = new Image();   low_voltageDIM.src = Base + "thm_low_voltageDIM.jpg";
    low_voltageLIT = new Image();   low_voltageLIT.src = Base + "thm_low_voltageLIT.jpg";

    backplaneDIM = new Image();   backplaneDIM.src = Base + "thm_backplaneDIM.jpg";
    backplaneLIT = new Image();   backplaneLIT.src = Base + "thm_backplaneLIT.jpg";
               
    high_voltageDIM = new Image();   high_voltageDIM.src = Base + "thm_high_voltageDIM.jpg";
    high_voltageLIT = new Image();   high_voltageLIT.src = Base + "thm_high_voltageLIT.jpg";

    functionalDIM = new Image();   functionalDIM.src = Base + "thm_functionalDIM.jpg";
    functionalLIT = new Image();   functionalLIT.src = Base + "thm_functionalLIT.jpg";

    fiber_opticsDIM = new Image();   fiber_opticsDIM.src = Base + "thm_fiber_opticsDIM.jpg";
    fiber_opticsLIT = new Image();   fiber_opticsLIT.src = Base + "thm_fiber_opticsLIT.jpg";

    mil_810DIM = new Image();   mil_810DIM.src = Base + "thm_mil_810DIM.jpg";
    mil_810LIT = new Image();   mil_810LIT.src = Base + "thm_mil_810LIT.jpg";

    mil_1553DIM = new Image();   mil_1553DIM.src = Base + "thm_mil_1553DIM.jpg";
    mil_1553LIT = new Image();   mil_1553LIT.src = Base + "thm_mil_1553LIT.jpg";

    adaptationDIM = new Image();   adaptationDIM.src = Base + "thm_adaptationDIM.jpg";
    adaptationLIT = new Image();   adaptationLIT.src = Base + "thm_adaptationLIT.jpg";

    softwareDIM = new Image();   softwareDIM.src = Base + "thm_softwareDIM.jpg";
    softwareLIT = new Image();   softwareLIT.src = Base + "thm_softwareLIT.jpg";
}             
                
function imgOn(imgName,target) {
	if (document.images) {
		document[target].src = eval(imgName + "LIT.src");       
	}
}
                
function imgOff(imgName,target) {
	if (document.images) {
		document[target].src = eval(imgName + "DIM.src");       
	}
}