// JavaScript Document

var testimonials = new Array();
testimonials[0] = new Array();
testimonials[1] = new Array();
testimonials[0]['image'] = 'wp-content/themes/' + THEME_NAME + '/images/happy-lady-with-dog.jpg';
testimonials[0]['quote'] = '<p>"Before we got our fireplace,<br />I hated winter. Now, I can <br />actually <em>enjoy</em> it."</p>';
testimonials[0]['cite'] = '<span style="font-size: 10px;">Skotarczak family - Buffalo, NY</span>';
testimonials[1]['image'] = 'wp-content/themes/' + THEME_NAME + '/images/alex.jpg';
testimonials[1]['quote'] = '<p style="position: relative; left: -250px; width: 300px;">"J &amp; L Masonry are great people to work with. Since they installed our new stove we go through a lot less wood!"</p>';
testimonials[1]['cite'] = '<span style="position: relative; left: -433px; top: 0px; font-size: 10px; background-color: #cccccc; padding: .5em">Wypycha family - Buffalo, NY</span>';
var current = 0;

function updateTestimonial()
{
  //var tes = testimonials[Math.floor(Math.random()*testimonials.length)];
  current = current == 0? 1: 0;
  document.getElementById('testimonial').style.backgroundImage = 'url(' + testimonials[current]['image'] + ')';
  document.getElementById('blockquote').innerHTML = testimonials[current]['quote'];
  document.getElementById('cite').innerHTML = testimonials[current]['cite'];
  setTimeout('updateTestimonial()', 12800);
}

window.onload = function()
{
  setTimeout('updateTestimonial()', 12800);
}
