function fix_window()
{
	$('#flash_room object').css('margin-left', ($(window).width() - 1189) / 2);
}
$(window).resize(function() {
	fix_window();
});
$(document).ready(function() {
	$('#flash_room').flash(
		{
			swf: '/flash/fujitsu2.swf',
			width: 1189,
			height: 443
		}
	);
	fix_window();

});



