function Object2(image,handle,testimonial_quote) {
    this.image = image;
    this.handle = handle;
    this.testimonial_quote = testimonial_quote;
}

function setTestimonialObject(image,handle,testimonial_quote) {
    testimonialsArray[testimonialsIndex++] = new Object2(image,handle,testimonial_quote);
}

var testimonialsIndex = 0;
var testimonialsArray = new Array();

/*0*/ setTestimonialObject("ramrod.jpg","Ramrod","This beats a men's restroom by a mile!");
/*1*/ setTestimonialObject("jacko72.jpg","Jacko72","I couldn’t believe it. I hadn’t seen my imaginary friend Patchy since first grade! And there he was!");
/*2*/ setTestimonialObject("kimj41.jpg","KimJ41","On MySpace...no friends, On Facebook...no friends, but on ncl&uuml;dr I’m the most popular cat on the planet...me likes.");
/*3*/ setTestimonialObject("david_copperfield.jpg","David Copperfield","Three thumbs up! This is truly magic. How did ncl&uuml;dr come up with this? And can someone tell me how it works, exactly?");
/*4*/ setTestimonialObject("ernie.jpg","Ernie","So this is how I find out that Rubber Duckie has a new friend? Why? Why you? We had so much fun and now he's gone and you stole him from me.");
/*5*/ setTestimonialObject("robert_e_lee.jpg","Robert E Lee","I believe this to be a fine social networking website. Of course, I must admit here in public that I don’t know what social networking is exactly, and I can’t say I know what spiders have to do with anything, but I will say I wholeheartedly endorse the notion of having as many friends as possible…excepting Yankees, of course.");
/*6*/ setTestimonialObject("rudy_giuliani.jpg","Rudy Giulliani","Excellent, excellent! This is just the sort of thing I wish I would have had on 9/11 when I was mayor of New York on 9/11");
/*7*/ setTestimonialObject("pee_wee_herman.jpg","Pee Wee Herman","Ha-ha! Ha-ha! This is so cool. It's got like, you know, lots of . . . junk and stuff and more junk and stuff and you know what you need? You need a bicycle. I don't see a bicycle in all the junk and stuff. Ha-ha!");
/*8*/ setTestimonialObject("mr_wizard.jpg","Mr. Wizard","In a world that's becoming more and more Internet driven, you must translate your business strategy into an informative, intuitive, and dare I say, spunky design. ncl&uuml;dr does it best. These are the facts and that's all there is to it.");
/*9*/ setTestimonialObject("myth_busters.jpg","Jamie Hyneman and Adam Savage (Myth Busters)","Jamie: Since you asked my opinion, I don't think there is anything to be busted here. ncl&uuml;dr is the  greatest social website, bar none. Their site proves it. Right, Adam? Adam: Frankly, I'm a little disappointed they didn't blow any shit up. That's all I can see that's missing.");
/*10*/ setTestimonialObject("michael_vick.jpg","Michael Vick","Hell, yeah, I'm using ncl&uuml;dr all the time now cuz, clearly, I need some new friends. I mean, man. And where I'm goin, I'll be spending lots of time with ncl&uuml;dr. ncl&uuml;dr rocks. ");
/*11*/ setTestimonialObject("paris_hilton.jpg","Paris Hilton","Like these ncl&uuml;dr people, whoever they are, are really beautiful. I mean, like, they are so beautiful, like almost as beautiful as me, which is really saying a lot.");
/*12*/ setTestimonialObject("mr_t.jpg","Mr. T","When I say it's cool, it's cool. You got that? ncl&uuml;dr is cool. I pity the fool who doesn't think so.");

	var testimonialInit = "<div class=\"testimonial\"><h3>Testimonial<\/h3><img src=\"/images/testimonials/";
	var testimonialHandle =  "\" width=\"60\" /><p class=\"handle\">";
	var testimonialQuote = "<\/p><p class=\"quote\">\"";
	var testimonialEnd = "\"<\/p><\/div>";
	var divTestimonial1 = document.getElementById("testimonial1");
	var test1 = rand(13);
	var codeTestimonial1 = testimonialEnd;
	codeTestimonial1 = testimonialsArray[test1].testimonial_quote.concat(codeTestimonial1);
	codeTestimonial1 = testimonialQuote.concat(codeTestimonial1);
	codeTestimonial1 = testimonialsArray[test1].handle.concat(codeTestimonial1);
	codeTestimonial1 = testimonialHandle.concat(codeTestimonial1);
	codeTestimonial1 = testimonialsArray[test1].image.concat(codeTestimonial1);
	codeTestimonial1 = testimonialInit.concat(codeTestimonial1);
	divTestimonial1.innerHTML = codeTestimonial1;
	
	if (document.body.id == "homepage")
	{
	var divTestimonial2 = document.getElementById("testimonial2");
	var test2 = rand(13);
	while (test2 == test1)
		test2 = rand(13);
	var codeTestimonial2 = testimonialEnd;
	codeTestimonial2 = testimonialsArray[test2].testimonial_quote.concat(codeTestimonial2);
	codeTestimonial2 = testimonialQuote.concat(codeTestimonial2);
	codeTestimonial2 = testimonialsArray[test2].handle.concat(codeTestimonial2);
	codeTestimonial2 = testimonialHandle.concat(codeTestimonial2);
	codeTestimonial2 = testimonialsArray[test2].image.concat(codeTestimonial2);
	codeTestimonial2 = testimonialInit.concat(codeTestimonial2);
	divTestimonial2.innerHTML = codeTestimonial2;
}