//Code for random header bg image
images = new Array(5); 
	images[0] = "<div id='headerContainer'>";
	images[1] = "<div id='headerContainer2'>";
	images[2] = "<div id='headerContainer3'>";
	images[3] = "<div id='headerContainer4'>";
	images[4] = "<div id='headerContainer5'>";
	index = Math.floor(Math.random() * images.length);

testimonial = new Array(3); 
	testimonial[0] = "<div id='headerCopyTestimonial'>\"We tried a few brands and she turned her nose up to all of them. Then we tried this and she couldn't get enough! Now she brings her food dish to us for a refill.\" - pill907</div>";
	testimonial[1] = "<div id='headerCopyTestimonial'>\"Since we switched her to Eukanuba she has more energy, better body condition, shinier fur and is a much happier and healthier pup!\" - coloradopup</div>";
	testimonial[2] = "<div id='headerCopyTestimonial'>\"My dog Princess leaps on you when she wants her food. She loves Eukanuba!\" - Princess</div>";
	index1 = Math.floor(Math.random() * testimonial.length);
	
function changeBgImage(image , id, id2) {  
  document.getElementById(id).style.backgroundImage = 'url('+image+')';
}