// PRELOADING IMAGES
if (document.images) {
 img0_on =new Image();  img0_on.src ="clear.gif"; 
 img0_off=new Image();  img0_off.src="clear.jpg"; 

 img1_on =new Image(); img1_on.src ="fanlist.gif"; 
 img1_off=new Image(); img1_off.src="fanlist.jpg"; 

 img2_on =new Image(); img2_on.src ="exit.gif"; 
 img2_off=new Image(); img2_off.src="exit.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;
}
