// This script was supplied free by Hypergurl 
// http://www.hypergurl.com 

<!-- // JavaScript to interpolate random images into a page.

// Number of alternative testimonials 
var ic = 8; 

// Array to hold testimonials
// Array to hold testimonials
var testimonial = new Array(ic); 
testimonial[0] = '<div align=left><span class=head>The Annual Conference and Expo is another great example of the value the NHA provides its membership.</span></div><div align=left><span class=testimonial><br>- <strong>Mike McGowan</strong><br>Head of Hydrogen Solutions, Linde Gas</span></div>';

testimonial[1] = '<div align=left><span class=head>From the time you landed at the airport, you knew the hydrogen conference was in town.</span></div><div align=left><span class=testimonial><br>- <strong>Steve Weiner</strong><br>Senior Program Manager, Pacific Northwest National Laboratory</span></div>';

testimonial[2] = '<div align=left><span class=head>At Toyota we attend easily 15 events per year: the NHA conference is by far the best organized, developed and professionally run conference we\'ve attended in the years that we\'ve exhibited with our vehicles.</span></div><div align=left><span class=testimonial><br>- <strong>Bill Reinert</strong><br>National Manager, Advanced Technologies Group, Toyota Motor Sales, USA, Inc.</span></div>';

testimonial[3] = '<div align=left><span class=head>By the second day, I already felt like I&#39;d been to a week-long conference from all of the networking opportunities I had.</span></div><div align=left><span class=testimonial><br>- <strong>Kevin Harris</strong><br>Business Development & Sales Director, Hydrogenics Corporation</span></div>';

testimonial[4] = '<div align=left><span class=head>I have chaired numerous international gatherings, and it is with long experience that I say your team did a fabulous job of planning and execution.</span></div><div align=left><span class=testimonial><br>- <strong>Patrick K. Takahashi</strong><br>Director Emeritus, Hawaii Natural Energy Institute, University of Hawaii</span></div>';

testimonial[5] = '<div align=left><span class=head>Now I know why people say this conference is the industry standard!</span></div><div align=left><span class=testimonial><br>- <strong>John Tak</strong><br>President & CEO, Hydrogen and Fuel<br>Cells Canada</span></div>';

testimonial[6] = '<div align=left><span class=head>THE conference on hydrogen fuel.</span></div><div align=left><span class=testimonial><br>- <strong>Charleston Regional Business Journal</strong><br>Dec. 8, 2008</span></div>';

testimonial[7] = '<div align=left><span class=head>The premier event for hydrogen fuel cell research in the nation.</span></div><div align=left><span class=testimonial><br>- <strong>Charleston Regional Business Journal</strong><br>Dec. 8, 2008</span></div>';



// Randomize function
function pickRandom(range) 
	{
	if (Math.random) return Math.round(Math.random() * (range-1)); 
	else 
		{
			var now = new Date();
			return (now.getTime() / 1000) % range;
		}
	} 

// Write out an the html, using a randomly-chosen testimonial
var choice = pickRandom(ic); 

// -->