// JavaScript Document

$(document).ready( function() {
	/* When the document has finished loading, do the following */
	
	/* Match the testimonial column height with the page copy (yes, it's a lame hack) */
	if( $("#copy").height() > $("#testimonials").height() ) {
		$("#testimonials .testimonial").css( "height", $("#copy").height() );
		setTimeout( $("#testimonials .testimonial").css( "height", $("#copy").height() ), "2000" );
	} // end if
	
	/* Tack on a home-link over the logo for usability */
	$("#nav-part-1").after("<div id=\"home-link\" style=\"float: left;\"><a href=\"index.html\" style=\"display: block; width: 150px; height: 116px;\"></a></div><style type=\"text/css\">#home-link a:hover { background: none; }</style>\n");
														
});
