window.addEvent('domready', function() {
	if (Browser.Plugins.Flash.version < 6) return;
	$$('img.top_banner_flash').each(function(topBannerFlash) {
		var flashSrc = topBannerFlash.src.replace(/\.jpg$/, '.swf');
		new Swiff(flashSrc, {
			width : topBannerFlash.width,
			height : topBannerFlash.height,
			container : new Element('div', {
				styles : {
					width : topBannerFlash.width + 'px',
					height : topBannerFlash.height + 'px',
					background : 'transparent url(' + topBannerFlash.src + ') no-repeat scroll center center'
				}
			}).inject(topBannerFlash, 'after')
		});
		topBannerFlash.dispose();
	});
});
