var mainSpinner;

function showLoginForm() {
	$('loginLink').setStyle('display', 'none');
	$('loginForm').setStyle('display', 'block');
	$('username').focus();
}

/* Script to run when the DOM is loaded and ready */
window.addEvent('domready', function() {
	/* Setup the Tool Tips */
	new Tips('.tippedItem', {
		className : 'tippedItem',
		fixed : true,
		hideDelay : 50,
		showDelay : 50,
		offset : {
			'x' : 20,
			'y' : 30
		}
	});
	/* The tip div starts out in the upper left corner, visible and small... */
	$$('div[class=tippedItem]]').each( function(tipDiv) {
		tipDiv.setStyle('display', 'none');
	});
	
	/* Various OverText items */
	$$('input.formOT').each( function(el) {
		new OverText(el, { poll : true, wrap : true });
	});
	
	mainSpinner = new Spinner('mainContent', { message : "Please wait..."});
});
