// Execute the init function when the page DOM is loaded
window.addEvent('domready', init);


// Executed function when page loaded
function init()
{   
	var AsoboSWF = new Swiff('assets/swf/loader.swf', {
		id: 'main_swf',
		width: '100%',
		height: '100%',
		container: $('flashcontent'),
		params: {
			wmode: 'window',
			bgcolor: '#FFFFFF',
			allowScriptAccess: 'sameDomain',
			allowFullScreen: false,
			scale: 'noscale'
		}
	});
}
