//testimonials... these are all real :)

var tst = Array();
tst[0] = {
	tst: 'Creativity in abundance, unique in approach, promptness in execution, electroCocoon has been a great partner to work with! See them create something for you and you will be left speechless.',
	person: 'Mayuri Pitale -Co-founder & Director, Extend Brands'
};

tst[1] = {
	tst: '...if you were too engrossed listening to the track then you just might want to click replay and see the video this time... and wonder if such a brilliant infusion of the music with moviemaking can be coming from the same person... versatile creativity!',
	person: 'Sagar Pitale aka Poitrix'
};

tst[2] = {
	tst: 'Have you ever wanted a solution provider that has awesome creativity, quality front end and a strong backend, then electroCocoon is the company. Prompt delivery, world class quality and peace of mind.',
	person: 'Arfeen Khan -MD Peak Performance Seminars, UK'
};

tst[3] = {
	tst: '...not only has electroCocoon been churning out creative ideas and products consistently but jointly assisting us in our endeavour to create a distinct brand identity with high recall!',
	person: 'Harish Anantharaman -Director, Aeromar Logistics'
}

function showTestimonial()
{
	var rnd = Math.floor(Math.random()*tst.length);
	document.write(tst[rnd].tst);
	document.write('<br /><br />');
	document.write('<span class="brown">-'+tst[rnd].person+'</span>');
}

