var imgsd = new Array("We're seeking motivated people to work in our regional distribution centers","Panasonic Canada Inc is committed to diversity in our workforce","Cameco is an equal opportunity employer; all qualified applicants are welcome","A national specialty television service providing sports, news, information, highlights and live events")
var lnksd = new Array("http://www.fastenal.com/web/Employment.ex","http://panasonic.ca/english/customercare/resume/default.asp","http://cameco.com/careers/")
var altd = new Array()
var currentAdd = 0
var imgCtd = 3
function cycled() {
  if (currentAdd == imgCtd) {
    currentAdd = 0
  }
	 document.getElementById('adLinkd').innerHTML = imgsd[currentAdd]
  document.getElementById('adLinkd').href=lnksd[currentAdd]
  currentAdd++
}
  window.setInterval("cycled()",6000)
