// js for the enduser login page


// on page load events
Event.observe(window, "load", function() {

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

});
