/*
 * @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);

