var flash_width = 920;
var flash_height = 530;

$(document).ready(function(){
	$('#flash-content').flash(
		{
			src:'preloader.swf',
			width:flash_width,
			height:flash_height,
			wmode:'transparent',
			flashvars: {which_swf:'graphic-novel.swf'}
		},
		{
			version:9
		}
	);

	$.position_flash();
	
});

$(window).resize(function () {
	$.position_flash();
});

$.position_flash = function () {

  	var doc_width = $(document).width();
	var doc_height = $(document).height();
	
	$('#flash-content').css({'position' : 'absolute'});
	$('#flash-content').css({'top' : doc_height/2 - flash_height/2});
	$('#flash-content').css({'left' : doc_width/2 - flash_width/2});
}