var tmName = new Array()
var tmCompany = new Array()
var tmLogo = new Array()
var tmTestimonial= new Array()
var tmMoreLink= new Array()

// Testimonial 1 
tmName[0]='Frances Makdessian';
tmCompany[0]= 'The Children&#8217;s Wish Foundation';
tmLogo[0] = 'images/childrens_wish.gif';
tmTestimonial[0]= 'The Children&#8217;s Wish Foundation of Canada is delighted that its partnership with CharityCar... ';
tmMoreLink[0] = 'testamonials.html';



// Testimonial 2 
tmName[1]='Ashley Saith';
tmCompany[1]= 'Interval House';
tmLogo[1] = 'images/interval-house.gif';
tmTestimonial[1]= 'The Charity Car program has provided us with a consistent stream of funding since we have... ';
tmMoreLink[1] = 'testamonials.html';
                            

// Testimonial 3 
tmName[2] = 'Carol Bertram';
tmCompany[2]= 'Rainbows CA';
tmLogo[2] = 'images/rainbows.gif';
tmTestimonial[2]= 'It helps the environment, the donors who get rid of their high-polluting vehicles and receive tax...';
tmMoreLink[2] = 'testamonials.html';


// Testimonial 4 
// tmName[3]='Lesley Ring';
// tmCompany[3]= 'Canadian Cancer Society';
// tmLogo[3] = 'images/cacancer.gif';
// tmTestimonial[3]= 'Your contribution helps us to fund lifesaving cancer research and improve the quality of life...';
// tmMoreLink[3] = 'testamonials.html';



function showTestimonial(term){
document.write('<div class="center"><a href="'+tmMoreLink[term]+'"><img src="'+tmLogo[term]+'" alt="'+tmCompany[term]+'" class="center" ></a><div class="tm-name">'+tmName[term]+',</div><div class="tm-company">'+tmCompany[term]+'</div></div><div>'+tmTestimonial[term]+'</div><a href="'+tmMoreLink[term]+'"><img src="images/more-btn.gif" alt="Read More" class="alignright"></a><div class="clr"></div>');

}
