var fullWidth = 1450;
var fullHeight = 830;

function positionSwf()
{
  deltaWidth = $(window).width() - fullWidth;
  $('#flashcontent').css('left', deltaWidth / 2);
  if ($(window).height() < fullHeight)
  {
    var deltaHeight = $(window).height() - fullHeight;
    if (Math.abs(deltaHeight) < 75)
    {
      $('#flashcontent').css('top', 0);
    }
    else
    {
      $('#flashcontent').css('top', deltaHeight + 75);
    }
  }
}

$(document).ready(function(){
  //small css switch (color is originally white for accessibility of users without js/flash)
  if ($('#alternatecontent').length == 0) {
    $('body').css('background-color', '#000000');
    $('body').css('overflow', 'hidden');
    $('#flashcontent').css('position', 'absolute');
    $(window).resize(function(){
      positionSwf();
    });
    positionSwf();
  }
});
