var stageWidth=640;
var stageHeight=480;

$(document).ready(function(){
  $('#world').css({left:((window.screen.availWidth-stageWidth-32*2)/2),top:32});
  $('#logo')
  .css({left:((window.screen.availWidth-120)/2),opacity:0.5})
  .hover(
  function () {
	$(this).stop();
    $(this).fadeTo(500,1);
  },
  function () {
	$(this).stop();
    $(this).fadeTo(500,0.5);
  });
  $('#logo').click(function(){self.location='../../../index.php';});
  $('#stage')
  .attr({'src':'http://sisituan.com/yukidoll/galone/backstage.php?path=infinity'})
  .css({width:stageWidth,height:stageHeight});
});