/* loaded _inline_ into secondary files. */

// change the learn more image.
var learnMoreImages = 10; // revise when we change the images available.
moreImage = document.createElement('img');
moreImage.width = '274'; // make sure it fits in the sidebar.
moreImage.src = '/images/secondary/more/' + Math.floor(Math.random()*learnMoreImages) + '.jpg';
moreImage.alt = "Candid picture of barron county students and staff";
document.getElementById("img-wrapper").appendChild(moreImage);

// create the testimonial.
testimonialLink = document.createElement('a');
testimonialLink.href = "/discover/students/";

testimonialImage = document.createElement('img');
testimonialImage.height = '100';
testimonialImage.width = '71';
testimonialImage.border = '0';
testimonialImage.src = '/images/secondary/testimonials/'+testimonial+'.jpg';
testimonialImage.alt = testimonialNames[testimonial];
testimonialImage.title = testimonialImage.alt;
testimonialLink.appendChild(testimonialImage);
document.getElementById("testimonial").appendChild(testimonialLink);

testimonialBody = document.createElement('div');
testimonialBody.className = "quoteContainer";
testimonialBody.innerHTML = '<p class="testimonialQuote">&ldquo;' + testimonials[testimonial] + '&rdquo;</p>'
						  + '<p><span class="name">' + testimonialNames[testimonial] + '</span><br />'
						  + testimonialLocations[testimonial] + '</p>';

document.getElementById("testimonial").appendChild(testimonialBody);