var picQuotePairs = new Array();
var infoArray = new Array();

//infoArray.push("Whether a small repair or complete tear off/reroof prject, Sideline is my first choice for a price quote. | David R. Morgan | /images/d_morgan.jpg");
infoArray.push("Thanks for doing great work and feel free to use me as a reference any time you like. | Kevin Kinney | /images/k_kinney.jpg");
infoArray.push("I would highly recommend Sideline Construction to friends and colleagues, and I have! | Dr. Alexander VanDamme | /images/a_vandamme.jpg");
infoArray.push("[My roof] looks great... I am happy to recommend you to friends and strangers alike. | Maureen Holland | /images/m_holland.jpg");
infoArray.push("I recommend them without hesitation to all of my friends. | Nupur Koplinka | /images/n_koplinka.jpg");
infoArray.push("Thank you for transforming my house into a jewel. | Lisa Cheung | /images/l_cheung.jpg");

for(var i = 0;i < infoArray.length;i++) {
  var tempArray = new Array;
  
  tempArray = infoArray[i].split(" | ");
  
  picQuotePairs[i] = new Object();
  picQuotePairs[i].quote = tempArray[0];
  picQuotePairs[i].author = tempArray[1];
  picQuotePairs[i].pic = tempArray[2];
}

function rotatePic() {
  var randIndex = Math.floor(Math.random() * picQuotePairs.length);
  //alert(document.getElementById("sl_portrait").style.backgroundImage);
  document.getElementById("sl_portrait").style.backgroundImage = "url('" + picQuotePairs[randIndex].pic + "')";
  document.getElementById("sl_caption_text").innerHTML = picQuotePairs[randIndex].quote + "<p style='text-align:right;'>&mdash; " + picQuotePairs[randIndex].author + "</p>";
}

window.onload = rotatePic;

