function renderQuote(quote, name, organization, header)
{
	var fullQuote = "";
	
	fullQuote += "<blockquote>";

	if (header != null && header.length > 0)
	{
		fullQuote += "<p><strong>" + header + "</strong></p>";
	}
		
	fullQuote += "<p>";
	fullQuote += "&quot;" + quote + "&quot;" + "<br/>";
	fullQuote += "&nbsp;&nbsp;&nbsp;&nbsp;&ndash; " + name + ", " + "<strong>" + organization + "</strong>";
	fullQuote += "</p></blockquote>";
	
	document.write(fullQuote);
}


function handleDocumentReady() 
{
	$(document).bgStretcher
	(
		{
			images: 
			[
				'../images/background.jpg'
			],
			imageWidth: 1024, 
			imageHeight: 687
		}
	);
}

$(document).ready(handleDocumentReady);
