//<!-- Image Swap -->
function swapImg(thisImg,newImg) {
document[thisImg].src = "images/" + newImg}


//<!-- Random Banner Code -->

function RandomNumber() 
{
  var today = new Date();
  var num= Math.abs(Math.sin(today.getTime()/1000));
  return num;
}

function RandomBanner() 
{
  var x = RandomNumber() * 100;
  if (x > 75)
{document.write("<IMG alt=tiburon&nbsp;design border=0 width=750 height=400 SRC=images/home-image-2.jpg> ");return;}
  else if (x > 40)
{document.write("<IMG alt=tiburon&nbsp;design border=0 width=750 height=400 SRC=images/home-image-3.jpg> ");return;}
  else
{document.write("<IMG alt=tiburon&nbsp;design border=0 width=750 height=400 SRC=images/home-image-4.jpg> ");return;}
}

//<!-- Pop Up -->
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);}