// (c) 2007 GramCast, LLC -- All Rights Reserved

// Here's stuf we do immediately upon DOM ready
$(document).ready(function(){
	//hide the needs-Javascript message, and replace with the loading graphic until something gets loaded.
	$('#needJavascript').hide();
	$('#busyBox').show();
});

// And here's what we do once the page is displayed
window.onload = function () {

	//load up all the other javascript files
	// (just something I was thinking about -- to load them dynamically, rather than use rel links
	
	
	GCHinit();		// init Home

	//load files associated with login functionality, and then init
	GCHloadCSS('./css/loginForm.css');
	$.getScript('./js/login.js', function() {
		GCLinit();		//init Login
		GCHbindLoginButton();
	});

}


