var testimonials = [
                    {"said": "When Kadoo needed a powerful, flexible photo editor, Pixenate delivered. " +
                     "I make build or buy decisions every day, and this is one of those libraries that I know we made the right choice.",
                     "who" : "Daniel Cane, CTO",
                     "company" : "Kadoo.com"
                    },
                    {"said": "We are very satisfied with Pixenate.\nActually, I haven't been so happy about a piece of software for a long time.",
                     "who" : "Menno de Wit",
                     "company" : "FilmKluis.nl"
                    },
                    {"said": "Powerful image editing suite and amazing support.\nPixenate saved us time and money!",
                     "who" : "Jimmy Zhen",
                     "company" : "Katera Group"
                    },
						  {"said": "Top notch support, easy installation, and a great price. Truly a best of breed in my book.",
						  "who": "William Gilligan",
						  "company" : "GilliganOnline.com"
						  },
						  {"said": "MyPhotoAlbum could not be happier with Pixenate! It allows our members to truly enhance and edit their photos right from the web. Plus, support is fantastic and the upgrades continue to impress us.",
						  "who": "Jessy Hanley",
						  "company" : "MyPhotoAlbum.com"
						  }
];

PXN8.dom.addLoadEvent(function(){

var t = document.getElementById("testimonial").childNodes[0];
var wh = document.getElementById("who");
var testimonial_index = -1;
var show_testimonial = function(){
    testimonial_index++;
    var i = testimonial_index % testimonials.length;
    t.innerHTML = testimonials[i].said ;
	 wh.innerHTML = "<a href='productinfo/Testimonials.html'>" + testimonials[i].who + " - " + testimonials[i].company + "</a>";
};
setInterval(show_testimonial,8000);

show_testimonial();

							 });
