

// script to ensure jQuery is up and running from google, otherwise load locally
if (typeof jQuery == 'undefined')
{
	document.write('<script type="text/javascript" src="js/jquery-1.4.1.min.js"></script>');
	if (typeof jQuery == 'undefined')
	{
		alert("There is a problem with the server.  Some elements of the page may not display properly, or may behave unpredictably.  Please refresh the page in a few moments to try again");
	}
}