Site = {

	Init: function() {
		Site.ImageRotater();
		
		if ($('txtUsername')) $('txtUsername').focus();
		if ($('txtTitle')) $('txtTitle').focus();
		if ($('txaData')) $('txaData').focus();
		if ($('txtFirstName')) $('txtFirstName').focus();
	},

	ImageRotater: function() {
		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();
		}
	}
	
};

window.addEvent('domready', Site.Init);
