function onResize() {
  var minWidth = 778,
      minHeight = 430;

  var width = $(window).width() < minWidth ? minWidth : '100%',
    height = $(window).height() < minHeight ? minHeight : '100%';

  $(document.body).width(width);
  $('#content').width(width);

  $(document.body).height(height);
  $('#content').height(height);
}

$(document).ready(function() {
	var flashvars = {};

	swfobject.embedSWF("media/flash/site.swf", "content", "100%", "100%", "9.0.0", false, flashvars, {allowscriptaccess:"always"}, {id:'flash_content', name:'flash_content'});

	if (!swfobject.hasFlashPlayerVersion('9'))
		window.location.href = '/noflash';

	var pageTracker = _gat._getTracker("UA-1733388-6");
		pageTracker._initData();
		pageTracker._trackPageview();
});

$(window)
.load(onResize)
.resize(onResize);