// JavaScript Document
<!-- 

var img1 = new Image(); 
img1.src = "../images/menu_on_r1_c1.jpg"; 

var img2 = new Image(); 
img2.src = "../images/menu_on_r1_c2.jpg"; 

var img3 = new Image(); 
img3.src = "../images/menu_on_r1_c3.jpg"; 

var img4 = new Image(); 
img4.src = "../images/menu_on_r1_c4.jpg"; 

var img5 = new Image(); 
img5.src = "../images/menu_on_r1_c5.jpg"; 

var img6 = new Image(); 
img6.src = "../images/menu_on_r1_c6.jpg";

var img7 = new Image(); 
img7.src = "../images/tp_left_1_o.gif";

var img8 = new Image(); 
img8.src = "../images/tp_left_2_o.gif";

var img9 = new Image(); 
img9.src = "../images/tp_left_3_o.gif";

function imgchange(val)
{
if(val==1) document.images.img1.src=eval("img"+val+".src"); 
if(val==2) document.images.img2.src=eval("img"+val+".src"); 
if(val==3) document.images.img3.src=eval("img"+val+".src");
if(val==4) document.images.img4.src=eval("img"+val+".src");
if(val==5) document.images.img5.src=eval("img"+val+".src");
if(val==6) document.images.img6.src=eval("img"+val+".src");
if(val==7) document.images.img7.src=eval("img"+val+".src");
if(val==8) document.images.img7.src=eval("img"+val+".src");
if(val==9) document.images.img7.src=eval("img"+val+".src");
}

function change(btnimg,ref) {
   //alert(ref);
   document.images[btnimg].src = ref;
}


//--> 