// js for the enduser login page


// on page load events
// dom:loaded doesn't work in IE, but for what's currently being done here we don't
// really care.  If you are going to add anything more important than an on-load form 
// input focus to this function, though, best change it back to a simple load
// (we're using dom:loaded because it happens faster than load, thus avoiding user
//  annoyance if the page loads slowly)
Event.observe(window, "dom:loaded", function() {

	// automatically set focus on the first text input field
	$("fname_input").activate();

});
