// PRELOADING IMAGES
if (document.images) {

 img1_on =new Image(); img1_on.src ="http://www.monikas-guesthouse.co.za/images/homei.png";
 img1_off=new Image(); img1_off.src="http://www.monikas-guesthouse.co.za/images/homeo.png";

 img2_on =new Image(); img2_on.src ="http://www.monikas-guesthouse.co.za/images/accommodationi.png";
 img2_off=new Image(); img2_off.src="http://www.monikas-guesthouse.co.za/images/accommodationo.png";

 img3_on =new Image(); img3_on.src ="http://www.monikas-guesthouse.co.za/images/contacti.png";
 img3_off=new Image(); img3_off.src="http://www.monikas-guesthouse.co.za/images/contacto.png";
 
 img4_on =new Image(); img4_on.src ="http://www.monikas-guesthouse.co.za/images/mapi.png";
 img4_off=new Image(); img4_off.src="http://www.monikas-guesthouse.co.za/images/mapo.png";
 
 img5_on =new Image(); img5_on.src ="http://www.monikas-guesthouse.co.za/images/activitiesi.png";
 img5_off=new Image(); img5_off.src="http://www.monikas-guesthouse.co.za/images/activitieso.png";

 img6_on =new Image(); img6_on.src ="http://www.monikas-guesthouse.co.za/images/galleryi.png";
 img6_off=new Image(); img6_off.src="http://www.monikas-guesthouse.co.za/images/galleryo.png";
}

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;
}
