// 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 = 15; 

// 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 had 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 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>';

testimonial[8] = '<div align=left><span class=head>This is THE must-attend hydrogen event of the year - if you can only attend one event, this is it !  Great agenda, professionally run, and the networking ability is superb.</span></div><div align=left><span class=testimonial><br>- <strong>Britta Gross</strong><br>General Motors</span></div>';

testimonial[9] = '<div align=left><span class=head>NHA conference is the best networking event in the year for everyone in the hydrogen and related Industries. Simply put, it is like the CES for the Hydrogen Industry with unparalleled quality and attendance.</span></div><div align=left><span class=testimonial><br>- <strong>Prabhu Soundarrajan</strong><br>H2scan Corporation</span></div>'; 

testimonial[10] = '<div align=left><span class=head>The NHA conference offers Honda a venue for providing an update to both industry and the public for our Hydrogen and Fuel Cell initiatives.  A well organized forum to showcase our advancements, to network and to learn about progress around the world.</span></div><div align=left><span class=testimonial><br>- <strong>Stephen Ellis</strong><br>American Honda Motor Co., Inc.</span></div>';  

testimonial[11] = '<div align=left><span class=head>You put on an absolutely First-Class Conference.  And your attendance numbers showed it. We have been taking a number of calls and inquiries from a wide variety of folks interested in hydrogen and forklifts and a number of publications as well.</span></div><div align=left><span class=testimonial><br>- <strong>Bill Ryan</strong><br>LiftOne</span></div>';   

testimonial[12] = '<div align=left><span class=head>All the right people were here.</span></div><div align=left><span class=testimonial><br>- <strong>Trent Molter</strong><br>University of Connecticut</span></div>';   

testimonial[13] = '<div align=left><span class=head>I was able to get more than a week\'s worth of work done in a couple days because all the key people were here.</span></div><div align=left><span class=testimonial><br>- <strong>Puneet Verma</strong><br>Chevron</span></div>';   

testimonial[14] = '<div align=left><span class=head>Every year I rely on the NHA conference to stay abreast of how hydrogen and fuel cell technologies are advancing - all in one place.</span></div><div align=left><span class=testimonial><br>- <strong>Frank Novachek</strong><br>Xcel Energy</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); 

// -->