// JavaScript Document

nhQuotes = new Array();
nhAuthors = new Array();
nhTitles = new Array();
nhCompanies = new Array();

nhQuotes[0] = "\"For me, having an investor like North Hill that has so much experience in financial services and marketing technology has been critically important to our company's development. The depth of understanding they bring to the issues we face and the markets we play in stands in stark contrast to most investors we encounter.\"";
nhAuthors[0] = "Alan Grant";
nhTitles[0] = "CEO";
nhCompanies[0] = "Exchange Solutions";

nhQuotes[1] = "\"North Hill's network of contacts among savvy, financial services-focused venture funds has been instrumental in helping Placemark raise smart capital at attractive terms. Also, their strategic, financial, and operational support has been extremely valuable in helping our company grow toward its potential.\"";
nhAuthors[1] = "Lee Chertavian";
nhTitles[1] = "CEO";
nhCompanies[1] = "Placemark Investments";

nhQuotes[2] = "\"North Hill Ventures provides the supportive investment and counsel our company needs to grow and become valuable. Compete Inc. is doing work that has never been done before — leveraging a fifty terabyte database of online consumer behavior to transform the way that consumers and brands communicate. Besides their capital, North Hill provides us with the encouragement to innovate, the marketing and industry contacts to grow, and the patience to achieve success.\"";
nhAuthors[2] = "Donald l. McLagan";
nhTitles[2] = "Chairman, President, & CEO";
nhCompanies[2] = "Compete, Inc.";

nhQuotes[3] = "\"The team at North Hill has provided us with unwavering support. They stuck with us through a very challenging period and have been valuable at every stage in our growth.\"";
nhAuthors[3] = "Michael Duffy";
nhTitles[3] = "CEO";
nhCompanies[3] = "OpenPages";

nhQuotes[4] = "\"North Hill helped me and my team engineer a dramatic turnaround at eCredit. We grew sales, streamlined operations, established new channels, expanded product lines, and redefined our market. Each step of the way, North Hill was proactive with support, guidance, and contacts. I'd have those guys in my corner any time.\"";
nhAuthors[4] = "Jeff Dickerson";
nhTitles[4] = "CEO";
nhCompanies[4] = "eCredit";

nhQuotes[5] = "\"North Hill's focus on financial services enables it to share our vision in a way many other funds could not. North Hill has been a supportive and value added investor whose insight has helped us during a phase of rapid growth and expansion.\"";
nhAuthors[5] = "Dean Hatton";
nhTitles[5] = "CEO";
nhCompanies[5] = "Higher One";

var randomNum = Math.floor((Math.random() * nhQuotes.length));

function chooseQuote() {
	if (document.getElementById) {
		document.getElementById('nhQuote').childNodes[0].nodeValue =nhQuotes[randomNum];
		document.getElementById('nhAuthor').childNodes[0].nodeValue = nhAuthors[randomNum];
		document.getElementById('nhTitle').childNodes[0].nodeValue = nhTitles[randomNum];
		document.getElementById('nhCompany').childNodes[0].nodeValue = nhCompanies[randomNum];
	}
	else {
		return true;
	}
}

