

<!--
/*
Random Image Link Script
By Website Abstraction (http://www.wsabstract.com)
and Java-scripts.net (http://www.java-scripts.net)
*/

function random_imglink(){
  var myimages=new Array()
  //specify random images below. You can have as many as you wish
  myimages[1]="http://www.staffone.com/images/staffone_u_button.jpg"
  myimages[2]="http://www.staffone.com/images/employee_wire_button.jpg"
  myimages[3]="http://www.staffone.com/images/perks_button.jpg"
	

  //specify corresponding links below
  var imagelinks=new Array()
  imagelinks[1]="http://www.staffone.com/solutions/training_development.html"
  imagelinks[2]="https://trustedhr.staffone.com/trustedHR/employee_wire.jsp"
  imagelinks[3]="http://www.staffone.com/perks/"
	

  var ry=Math.floor(Math.random()*myimages.length)

  if (ry==0)
     ry=1
     document.write('<a href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" border=0></a>')
}

  random_imglink()
//-->
