window.addEvent('domready', function() {
	[
		{
			name  : 'flowers',
			width : 38, height : 35,
			left : 444, top : 326
		},
		{
			name  : ['pl', 'it'].contains($('country').value) ? ('digital_counter_' + $('country').value) : 'digital_counter',
			width : 193, height : 118,
			left : 548, top : 0,
			vars : { config_file : 'digital_counter_config.php?page=' + $('page').value + '&' + (new Date().getTime()) }
		},
		{
			name : 'printer_bin',
			width : 215, height : 341,
			left : 768, top : 362
		}
	].each(function(flashElement) {
		var flashContainer = new Element('div', {
			id : 'flashElement_' + flashElement.name,
			styles : {
				position : 'absolute',
				width : flashElement.width + 'px',
				height : flashElement.height + 'px',
				top : flashElement.top + 'px',
				left : flashElement.left + 'px'
			}
		}).inject($('main'), 'top');
		
		var options = {
			width : flashElement.width,
			height : flashElement.height,
			container : flashContainer.id,
			params : {
				wmode : 'transparent',
				base : '/flash/'
			}
		};
		if (flashElement.vars) {
			options.vars = flashElement.vars;
		}
		var flash = new Swiff('/flash/' + flashElement.name + '.swf', options);
	});
});
