function ranking() {
  $.scrollTo( 1200, 600 );
}

function sendScrollY() {
  var flash = $('#flash').get(0);

  if (flash && flash.setScrollY)
    flash.setScrollY( $(window).scrollTop() + $(window).height() );
}

function _setHeight(height) {
  $(document.body).height(height);
  $('.structure').height(height);
}

function setHeight(height) { 
  var to = height - $(window).height();
  $.scrollTo(to, 1000, function () {
    _setHeight(height);
  });
}

function setInitHeight(height) {
  _setHeight(height);

  if ( $(window).scrollTop() > 0 )
    $.scrollTo( 0, 400, function() {
      sendScrollY();
    });
  else
    sendScrollY();
}

function disableScroll() {
  document.body.__height = $(document.body).height();
  _setHeight('100%');
}

function enableScroll() {
  _setHeight(document.body.__height);
}

function onResize() {
  $(window).width( $(window).width() < 1093 ? 1093 : '100%' );
  $('#game').css('left', $(window).width() > 1093 ? 60 + Math.floor(($(window).width() - 1093) / 2) : 60);
}

$(document).ready(function() {
  swfobject.embedSWF("swf/site.swf", "content", "100%", "100%", "9.0.0", false, { PATH_FLV:'http://cubo.cc/~rexona/energizing/media/flv/', SRVPATH:SRVPATH, allowscriptaccess:"always" }, {bgcolor: "#000000"}, {id:'flash', name:'flash'});

  if (!swfobject.hasFlashPlayerVersion('9'))
    window.location.href = 'noflash.html';
});

$(window)
  .scroll(sendScrollY)
  .resize(onResize)
  .load(onResize());

function regulamento() {
  window.open("regulamento.html","regulamento","width=430,height=430,menubar=no,toolbar=no,location=no,status=no,scrollbars=yes");
}

function galeria() {
  window.open("galeria/index.html","galeria","width=845,height=605,menubar=no,toolbar=no,location=no,status=no,scrollbars=yes");
}