// JavaScript Document

//Preloading images
if (document.images) {

 img1_on =new Image();  img1_on.src ="images/navi_on_01.jpg"; 
 img1_off=new Image();  img1_off.src="images/navi_01.jpg"; 

 img2_on =new Image(); img2_on.src ="images/navi_on_02.jpg"; 
 img2_off=new Image(); img2_off.src="images/navi_02.jpg"; 

 img3_on =new Image(); img3_on.src ="images/navi_on_03.jpg"; 
 img3_off=new Image(); img3_off.src="images/navi_03.jpg"; 
 
 
 img4_on =new Image(); img4_on.src ="images/navi_on_04.jpg"; 
 img4_off=new Image(); img4_off.src="images/navi_04.jpg"; 

 img5_on =new Image(); img5_on.src ="images/navi_on_05.jpg"; 
 img5_off=new Image(); img5_off.src="images/navi_05.jpg"; 

 img6_on =new Image(); img6_on.src ="images/navi_on_06.jpg"; 
 img6_off=new Image(); img6_off.src="images/navi_06.jpg"; 
 
 img7_on =new Image();  img7_on.src ="images/navi_on_07.jpg"; 
 img7_off=new Image();  img7_off.src="images/navi_07.jpg"; 

 img8_on =new Image(); img8_on.src ="images/navi_on_08.jpg"; 
 img8_off=new Image(); img8_off.src="images/navi_08.jpg"; 

 img9_on =new Image(); img9_on.src ="images/navi_on_09.jpg"; 
 img9_off=new Image(); img9_off.src="images/navi_09.jpg"; 
 
 
 img10_on =new Image(); img10_on.src ="images/navi_on_10.jpg"; 
 img10_off=new Image(); img10_off.src="images/navi_10.jpg"; 

 img11_on =new Image(); img11_on.src ="images/navi_on_11.jpg"; 
 img11_off=new Image(); img11_off.src="images/navi_11.jpg"; 

 img12_on =new Image(); img12_on.src ="images/navi_on_12.jpg"; 
 img12_off=new Image(); img12_off.src="images/navi_12.jpg"; 




}

function movr(k) {
 if (document.images) 
  eval('document.img'+k+'.src=img'+k+'_on.src');
}

function mout(k) {
 if (document.images) 
  eval('document.img'+k+'.src=img'+k+'_off.src');
}

function handleOver() {
 if (document.images) 
  document.imgName.src=img_on.src;
}

function handleOut() {
 if (document.images) 
  document.imgName.src=img_off.src;
}



document.write(" <div class=navi><table width=100% border=0 cellspacing=0 cellpadding=0>");
 document.write(" <tr>");
 document.write("   <td><a href=index.html onMouseOver=movr(1);return true; onMouseOut=mout(1);return true; onClick=return false;><img src=images/navi_01.jpg name=img1 width=76 height=48 alt=Welcome Message /></a></td>");
  document.write("  <td><a href=organisingcommittee.html onMouseOver=movr(2);return true; onMouseOut=mout(2);return true; onClick=return false;><img src=images/navi_02.jpg  name=img2 width=78 height=48 alt=Organising Committee/></a></td>");
  document.write("  <td><a href=scientificprogramme.html onMouseOver=movr(3);return true; onMouseOut=mout(3);return true; onClick=return false;><img src=images/navi_03.jpg   name=img3 width=84 height=48 alt=Scientific Programme/></a></td>");
  document.write("  <td><a href=invitedfaculity.html onMouseOver=movr(4);return true; onMouseOut=mout(4);return true; onClick=return false;><img src=images/navi_04.jpg name=img4 width=74 height=48 alt=Invited Faculity /></a></td>");
  document.write("  <td><a href=callforabstracts.html onMouseOver=movr(5);return true; onMouseOut=mout(5);return true; onClick=return false;><img src=images/navi_05.jpg name=img5 width=80 height=48 alt=Call for abstracts /></a></td>");
  document.write("  <td><a href=https://www.isuog-or.com.sg/registration.html onMouseOver=movr(6);return true; onMouseOut=mout(6);return true; onClick=return false;><img src=images/navi_06.jpg name=img6 width=79 height=48 alt=Registration /></a></td>");
 document.write("   <td><a href=accommodation.html onMouseOver=movr(7);return true; onMouseOut=mout(7);return true; onClick=return false;><img src=images/navi_07.jpg name=img7 width=99 height=48 alt=Accommodation/></a></td>");
document.write("    <td><a href=social.html onMouseOver=movr(8);return true; onMouseOut=mout(8);return true; onClick=return false;><img src=images/navi_08.jpg name=img8 width=55 height=48 alt=Social/></a></td>");
 document.write("   <td><a href=exhibitionandsponsorship.html onMouseOver=movr(9);return true; onMouseOut=mout(9);return true; onClick=return false;><img src=images/navi_09.jpg  name=img9 width=96 height=48 alt=Exhibition and Sponsorship /></a></td>");
 document.write("   <td><a href=conferenceinformation.html onMouseOver=movr(10);return true; onMouseOut=mout(10);return true; onClick=return false;><img src=images/navi_10.jpg name=img10 width=75 height=48 alt=Conference Information /></a></td>");
 document.write("   <td><a href=usefulinformation.html onMouseOver=movr(11);return true; onMouseOut=mout(11);return true; onClick=return false;><img src=images/navi_11.jpg name=img11 width=87 height=48 alt=Useful Information /></a></td>");
document.write("    <td><a href=contact.html onMouseOver=movr(12);return true; onMouseOut=mout(12);return true; onClick=return false;><img src=images/navi_12.jpg name=img12 width=77 height=48 alt=Contact/></a></td>");
document.write("  </tr>");
document.write("</table>");
document.write("</div> ");
