var imgsb = new Array("We're looking for ambitious, hard-working people to help operate our stores and serve our customers","Be a part of bringing diverse regional and cultural perspectives to Canadians","Committed to a more diverse workforce through employment equity and equal employment opportunities")
var lnksb = new Array("http://www.fastenal.com/web/Employment.ex","http://cbc.radio-canada.ca/jobs/","http://www.cn.ca/about/careers/en_index.shtml")
var altb = new Array()
var currentAdb = 0
var imgCtb = 3
function cycleb() {
  if (currentAdb == imgCtb) {
    currentAdb = 0
  }
	 document.getElementById('adLinkb').innerHTML = imgsb[currentAdb]
  document.getElementById('adLinkb').href=lnksb[currentAdb]
  currentAdb++
}
  window.setInterval("cycleb()",6000)
