
var quotes = [

["./images/quotes/ca/craig_a.gif","craig_a"],
["./images/quotes/ca/george_e.gif","george_e"],
["./images/quotes/ca/gerrit_z.gif","gerrit_z"],
["./images/quotes/ca/iggy_w.gif","iggy_w"],
["./images/quotes/ca/john_t.gif","john_t"],
["./images/quotes/ca/joyce_l.gif","joyce_l"],
["./images/quotes/ca/ken_m.gif","ken_m"],
["./images/quotes/ca/mark_b.gif","mark_b"],
["./images/quotes/ca/members.gif","members"],
["./images/quotes/ca/penny_d.gif","penny_d"]
]

window.onload = function() {
  var idx = Math.ceil( quotes.length  *Math.random()) -1;
  document.getElementById("quote").setAttribute('src',quotes[idx][0]);
  var link = document.getElementById("customer-story"); 
  var hrf =  link.getAttribute("href",2);
  
  link.setAttribute( "href", hrf + '#'  +  quotes[idx][1]);
}
