window.addEvent('domready', function() {
	var myMenu = new MenuMatic();
	
	// assing 'container' variable to the image tag with the 'image' ID
	var container = $('container');
	var loading = $('pageLoading');	
	// set a bunch of CSS styles to the aforementioned image
	container.set('styles', {
		'opacity': 0,
		'visibility': 'visible'
	});

	// fade in the image
	loading.fade('out');
	container.fade('in');
});	
