/* loaded _inline_ into secondary files. */

// create the testimonial.
testimonialLink = document.createElement('a');
testimonialLink.href = "/testimonials.html";

testimonialImage = document.createElement('img');
testimonialImage.height = '125';
testimonialImage.width = '269';
testimonialImage.border = '0';
testimonialImage.src = '/images/secondary/testimonials/'+testimonial+'.jpg';
testimonialImage.alt = testimonialNames[testimonial];
testimonialImage.title = testimonialImage.alt;
testimonialLink.appendChild(testimonialImage);
document.getElementById("testimonialPhoto").appendChild(testimonialLink);

testimonialBody = document.createElement('div');
testimonialBody.className = "quoteContainer";
var testbody = '<h2>' + testimonialNames[testimonial] + '</h2>';
if (testimonialLocations[testimonial] != '') testbody += '<h3>' + testimonialLocations[testimonial] + '</h3>';
testbody += testimonials[testimonial];
testimonialBody.innerHTML = testbody;

document.getElementById("testimonial").appendChild(testimonialBody);
