/* Disables the right-click in the browser...*/
var message="";
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

function Load_Pet()
{
  var arrHomePet, nMaxHomePet, nPetIndex;
  arrHomePet = new Array("images/pet_00.jpg","images/pet_01.jpg","images/pet_02.jpg","images/pet_03.jpg","images/pet_04.jpg","images/pet_05.jpg");
  nMaxHomeImages = arrHomePet.length;
  nPetIndex = parseInt(((Math.random() * 1000) % nMaxHomeImages), 10);
  document.imgPet.src = arrHomePet[nPetIndex];
}
function Load_Wild()
{
  var arrHomeWild, nMaxHomeWild, nWildIndex;
  arrHomeWild = new Array("images/wild_00.jpg","images/wild_01.jpg","images/wild_02.jpg","images/wild_03.jpg","images/wild_04.jpg");
  nMaxHomeImages = arrHomeWild.length;
  nWildIndex = parseInt(((Math.random() * 1000) % nMaxHomeImages), 10);
  document.imgWild.src = arrHomeWild[nWildIndex];
}
