<!--

<!--
var picset = 1;

function RotPics() {
  if (picset == 1) { 
       document.R1.src='images/RPic2.jpg';
       picset = 2; } 
     else if (picset == 2) { 
       document.R1.src='images/RPic4.jpg';
       picset = 3; } 
     else if (picset == 3) { 
       document.R1.src='images/RPic3.jpg';
       picset = 4; } 
     else if (picset == 4) { 
       document.R1.src='images/RPic5.jpg';
       picset = 5; } 
     else if (picset == 5) { 
       document.R1.src='images/RPic1.jpg';
       picset = 1; } 
  setTimeout('RotPics()',3000);	
}


function ISwap(vIM, vSrc){
  var objStr,obj;

  // Check to make sure that images are supported in the DOM.
  if(document.images){
    // Check to see whether you are using a name, number, or object
    if (typeof(vIM) == 'string') {
      // This whole objStr nonesense is here solely to gain compatability
      // with ie3 for the mac.
      objStr = 'document.' + vIM;
      obj = eval(objStr);
      obj.src = vSrc;
    } else if ((typeof(vIM) == 'object') && vIM && vIM.src) {
      vIM.src = vSrc;
    }
  }
}
// -->