window.addEvent('domready', Init);	

function Init() {	
	if ($('txtUsername')) {
		if ($('txtUsername').value != "") {
			$('txtPassword').focus();				
		} else {
			$('txtUsername').focus();
		} //end if
	} //end if

	if ($('txtTitle')) $('txtTitle').focus();
	if ($('txtFirstName')) $('txtFirstName').focus();

	var h = document.getElementById('container').clientHeight - (127+ 27);
	$('content').style.height = h;
	
	ImageRotater();
} //Init

function ImageRotater() {
	if ($(document.body).getElement('div.imageRotater')) {
		var scroller = new ContentScroller({slideDuration: 4500, fadeDuration: 500});
		scroller.addSlides($$('div.imageRotater img').setStyle('z-index', 1));
		scroller.start();
	}
} //ImageRotater	

