


        
//Product Swap Image Start       
         
if (document.images) {
top_menu_1on = new Image(72,25); top_menu_1on.src = "common/img/menu_1_on.gif";
top_menu_2on = new Image(79,25); top_menu_2on.src = "common/img/menu_2_on.gif";
top_menu_3on = new Image(150,25); top_menu_3on.src = "common/img/menu_3_on.gif";
top_menu_4on = new Image(88,25); top_menu_4on.src = "common/img/menu_4_on.gif";
top_menu_5on = new Image(110,25); top_menu_5on.src = "common/img/menu_5_on.gif";
top_menu_6on = new Image(94,25); top_menu_6on.src = "common/img/menu_6_on.gif";

top_menu_1off = new Image(72,25); top_menu_1off.src = "common/img/menu_1_off.gif";
top_menu_2off = new Image(79,25); top_menu_2off.src = "common/img/menu_2_off.gif";
top_menu_3off = new Image(150,25); top_menu_3off.src = "common/img/menu_3_off.gif";
top_menu_4off = new Image(88,25); top_menu_4off.src = "common/img/menu_4_off.gif";
top_menu_5off = new Image(110,25); top_menu_5off.src = "common/img/menu_5_off.gif";
top_menu_6off = new Image(94,25); top_menu_6off.src = "common/img/menu_6_off.gif";


top_menu_1ad = new Image(593,18); top_menu_1ad.src = "common/img/menu_1_txt.gif";
top_menu_2ad = new Image(593,18); top_menu_2ad.src = "common/img/menu_2_txt.gif";
top_menu_3ad = new Image(593,18); top_menu_3ad.src = "common/img/menu_3_txt.gif";
top_menu_4ad = new Image(593,18); top_menu_4ad.src = "common/img/menu_4_txt.gif";
top_menu_5ad = new Image(593,18); top_menu_5ad.src = "common/img/menu_5_txt.gif";
top_menu_6ad = new Image(593,18); top_menu_6ad.src = "common/img/menu_6_txt.gif";

}

function turnOn(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "on.src");
    document["bar01"].src = eval(imageName + "ad.src");
  }
}

function turnOff(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "off.src");
    document["bar01"].src = "common/img/space_txt.gif";
  }
}
