﻿function random_imglink(){
  var myimages=new Array()
  //specify random images below. You can have as many as you wish
  myimages[1] = "images/rotate/Aspire_bkgdwithpaddle.jpg"
  myimages[2] = "images/rotate/Direction_bkgdwithpaddle.jpg"
  myimages[3] = "images/rotate/Discover_bkgdwithpaddle.jpg"
  myimages[4] = "images/rotate/Experience_bkgdwithpaddle.jpg"
  myimages[5] = "images/rotate/Vision_bkgdwithpaddle.jpg"
  
  
  //specify corresponding alt tags below
  var alttags=new Array()
  alttags[1]="Aspire - Let no financial obstacle get in the way of your dreams with products and services from Red Canoe Credit Union"
  alttags[2] = "Direction - A compass to lead the way with Red Canoe Credit Union"
  alttags[3]="Discover - Enjoy every moment with Red Canoe Credit Union"
  alttags[4] = "Experience - Security knowing that Red Canoe can offer you financial knowledge and services that meet your needs"
  alttags[5] = "Vision - See your way to financial security with Red Canoe Credit Union"
  

var ry=Math.floor(Math.random()*myimages.length)

  if (ry==0)
     ry=1
     document.write('<img src="'+myimages[ry]+'" alt="'+alttags[ry]+'" class="topgraphic">')
}

  