/*
 * @author         Dennis Milandt
*/



/*************************/
/* Application           */
/*************************/
var App =
{

	/*************************/
	/* Page                  */
	/*************************/
	Page:
	{
		// Function to be executed when the DOM is loaded.
		start: function()
		{
			// Initialize User Interface
			UI.init();
		}
	}
}

$(document).ready(App.Page.start);

$(document).ready(UI.Page.adjustHeight);

$(window).load(UI.Page.adjustHeight);

$(window).resize(UI.Page.adjustHeight);



