/*************************/
/* Application           */
/*************************/
var App =
{
	// Function to be executed when the DOM is loaded.
	Start: function()
	{
		// Initialize User Interface
		UI.init();
		App.PreloadImages();
	},
	
	PreloadImages: function()
	{
		$.preload([ 'button_bg_active', 'buttonOrange_bg_active' ], {
			base:'/style library/lpmastercard/images/',
			ext:'.png'
		});
	}
}

$(document).ready(App.Start);

