function SetLayout()
{
	var Image=$('img.BackgroundImage');

	if (Image.height() == 0)
	{
		Image.load(SetLayout);
	}
	else
	{
		var ImageNode = $('div.ContentBackground');

		Image.width('auto');
		Image.height('100%');
		
		if (Image.width() < ImageNode.width())
		{
			Image.height('auto');
			Image.width('100%');
			Image.css('margin-left', 0.00);
			Image.css('margin-top', (ImageNode.height() - Image.height()) / 2);
		}
		else
		{
			Image.css('margin-top', 0.00);
			Image.css('margin-left', (ImageNode.width() - Image.width()) / 2);
		}

		// Set Content Section Height
		var TitleBarHeight = $('div.TitleBar').height();
		var FooterBarHeight = $('div.FooterBar').height();
		var MainHeight = $('div.Main').height();
		
		$('div.ContentSection').height(MainHeight - TitleBarHeight - FooterBarHeight);
	}
}

function InitializePage()
{
	SetLayout();
	
	$(window).resize(SetLayout);
	
	var PageName = $('body').attr('class');

	$('div.Tab').removeClass('SelectedTab');
	$('div.Tabs a.' + PageName + ' div.Tab').addClass('SelectedTab');
};

