var mainflash = $.flash.create({
	swf: 'http://surisketch.com/flash/main.swf',
	width: 960,
	height: 400,
	hasVersion: 10,
	expressInstaller: 'http://surisketch.com/flash/expressInstall.swf',
	params: {
		quality: 'high',
		menu: "false",
		scale: "noScale",
		wmode: "transparent",
		bgcolor: "#ffffff"
	}
});

$(document).ready(function(){
	$('#wrapper').css('height', 'auto').height(($.browser.msie && $(window).height() > $('#flash').height()) ? $(window).height() : $(document).height());

	if ($.browser.msie) {
		$('#content').css('margin-top', ($('#wrapper').height() - $('#flash').height()) / 2);
	}

	/*

	if ($('#flash').height() > $(window).height() || $('#flash').width() > $(window).width()) {
		$('body').css('overflow', 'auto');
	}

	*/

	$(window).bind('resize', function() {
		$('#wrapper').css('height', 'auto').height(($.browser.msie && $(window).height() > $('#flash').height()) ? $(window).height() : $(document).height());

		if ($.browser.msie) {
			$('#content').css('margin-top', ($('#wrapper').height() - $('#flash').height()) / 2);
		}

		/*if ($('#flash').height() > $(window).height() || $('#flash').width() > $(window).width()) {
			$('body').css('overflow', 'auto');
		}*/
	});

	$('#flash').html(mainflash);
});