<!--

var bannerImg = new Array();linkImg = new Array();
  // Enter the names of the images below
  
  bannerImg[0]="http://www.rhythmskydiving.com/files/pd_badge.jpg";
  bannerImg[1]="http://www.rhythmskydiving.com/files/uptbanner.gif";
  bannerImg[2]="http://www.rhythmskydiving.com/files/xpbanner.gif";
  bannerImg[3]="http://www.rhythmskydiving.com/files/cypres.jpg";
  bannerImg[4]="http://www.rhythmskydiving.com/files/paraconceptslogobanner.png";  
  bannerImg[5]="http://www.rhythmskydiving.com/files/tonysuits-banner.jpg";
  bannerImg[6]="http://www.rhythmskydiving.com/files/lblg-banner.gif";  
  bannerImg[7]="http://www.rhythmskydiving.com/files/janette.jpg"; 
  bannerImg[8]="http://www.rhythmskydiving.com/files/steve.jpg";
  bannerImg[9]="http://www.rhythmskydiving.com/files/thiago.jpg";
  bannerImg[10]="http://www.rhythmskydiving.com/files/rob.jpg";
  bannerImg[11]="http://www.rhythmskydiving.com/files/jason.jpg";
  bannerImg[12]="http://www.rhythmskydiving.com/files/sdclogobanner.jpg";
  linkImg[0]="http://www.performancedesigns.com";
  linkImg[1]="http://www.unitedparachutetechnologies.com";
  linkImg[2]="http://www.paracletexp.com";
  linkImg[3]="http://www.cypres.cc";
  linkImg[4]="http://www.para-concepts.com";
  linkImg[5]="http://www.tonysuits.com";
  linkImg[6]="http://www.l-and-b.dk";  
  linkImg[7]="http://www.rhythmskydiving.com/teambios.html"; 
  linkImg[8]="http://www.rhythmskydiving.com/teambios.html";
  linkImg[9]="http://www.rhythmskydiving.com/teambios.html";
  linkImg[10]="http://www.rhythmskydiving.com/teambios.html";
  linkImg[11]="http://www.rhythmskydiving.com/teambios.html";
  linkImg[12]="http://www.SkydiveChicago.com";

var newBanner = 0
var totalBan = bannerImg.length
var opmax=100;          //set maximum opacity
var opmin=0;          //set minimum opacity
var incop=10;        //set step change 
var rateop = 100;     //pause between steps (in millisec) 
var pauseop = 2000;   //pause between change (in millisec)

    
function cycleBanOpacity() {
  var op = document.getElementById("banner").style.opacity;
  var opr=op*100
  opr = Math.round(opr);
  opr = opr - incop;
  document.getElementById("banner").style.opacity=opr/100;
  document.getElementById("banner").style.filter="alpha(opacity=" + opr + ")";
  if (opr==opmin) {document.getElementById('banner').src=bannerImg[newBanner]; 
  document.getElementById('banner-l').href=linkImg[newBanner]
  incop=-incop; newBanner++; if (newBanner == totalBan) {newBanner = 0}} 
  if (opr==opmax) {incop=-incop; setTimeout("cycleBanOpacity()",pauseop);}
   else {setTimeout("cycleBanOpacity()",rateop);}
 } 

/*
Random Image Script- By JavaScript Kit (http://www.javascriptkit.com) 
Over 400+ free JavaScripts here!
Keep this notice intact please
*/

function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="http://www.rhythmskydiving.com/files/bc1.jpg"
myimages[2]="http://www.rhythmskydiving.com/files/bc2.jpg"
myimages[3]="http://www.rhythmskydiving.com/files/bc3.jpg"
myimages[4]="http://www.rhythmskydiving.com/files/bc4.jpg"
myimages[5]="http://www.rhythmskydiving.com/files/bc5.jpg"
myimages[6]="http://www.rhythmskydiving.com/files/bc6.jpg"
myimages[6]="http://www.rhythmskydiving.com/files/bc7.jpg"
myimages[6]="http://www.rhythmskydiving.com/files/bc8.jpg"


var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<img class="headerpicture" src="'+myimages[ry]+'" border=0>')
}

function externalLinks() {
if (!document.getElementsByTagName) return;
var anchors = document.getElementsByTagName("a");
for (var i=0; i<anchors.length; i++) {
var anchor = anchors[i];
if (anchor.getAttribute("href") &&
anchor.getAttribute("rel") == "external")
anchor.target = "_blank";
}
}


function cont (who) {
var mail=who
if (mail=='trouble') {mail='rob'}
document.getElementById(who).href='mailto:' + mail + '@rhythmskydiving.com'

}

//-->


