
<!--
// Activities
		
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;
  
  activityrotate = new Array( );
  activityrotate[0] = new Image( );
  activityrotate[0].src = "images/activities/surfing.jpg";
  activityrotate[1] = new Image( );
  activityrotate[1].src = "images/activities/diving-tour2.jpg";
  activityrotate[2] = new Image( );
  activityrotate[2].src = "images/activities/beach.jpg";
  }
function rotateActivity( ) {

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

//-->


