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