<!--
// rotate manuel antonio national park (kayak, beach, forest)	
	
bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
  if ((bName == "Netscape" && bVer >= 3)||
     (bName == "Microsoft Internet Explorer" && bVer >=4)) br = "n3";
  else br = "n2";

  if (br == "n3") {
  boardNum = 0;
  boardSpeed = 2000;
  
  antoniorotate = new Array( );
  antoniorotate[0] = new Image( );
  antoniorotate[0].src = "../images/adventure/manuel-kayak-280.jpg";
  antoniorotate[1] = new Image( );
  antoniorotate[1].src = "../images/adventure/manuel-beach-280.jpg";
  antoniorotate[2] = new Image( );
  antoniorotate[2].src = "../images/adventure/manuel-forest-280.jpg";
  }
function rotateAntonio( ) {

  if (boardNum < antoniorotate.length - 1) boardNum++;
     else boardNum = 0;
     document.antoniorotate.src = antoniorotate[boardNum].src;
     setTimeout('rotateAntonio( )', boardSpeed);
  }

//-->
