(function(){
	var getSwfSize = function( swfId ){
		var windowWidth  = parseInt(Math.max( $('body').width(), $().width(), $(window).width() ));
		var windowHeight = parseInt(Math.max( $('body').height(), $().height(), $(window).height() ));
		var width = ( windowWidth <= 800 ) ? '800px' : '100%';
		var height = ( windowHeight <= 630 ) ? '630px' : '100%';
		
		$('body').css({
			'overflow' : 'visible',
			'width'    : width,
			'height'   : height
		});
		$('#flashcontents').css({
			'width'  : width,
			'height' : height
		});
	}
	
	var siteName = ( location.pathname.match('/vitz') ) ? 'vitz' : 'passo';
	var swfSize = getSwfSize();
	
	var so = new SWFObject('/decocrea/'+siteName+'/swf/main.swf', 'decocrea-'+siteName, '100%', '100%', '9,0,124,0', '#c5ddd0');
	so.useExpressInstall('/decocrea/swf/expressinstall.swf');
	so.addParam('menu', 'false');
	so.addParam('wmode', 'transparent');
	so.write("flashcontents");
	
	$(function(){
		$(window).unbind().resize(function(){
			getSwfSize();
		});
	});
	
})();
