$(document).ready(
  function(){
  	
	$('body').css({margin:0, padding:0, overflow: 'hidden'});
	$('div#globaldiv, div#flashHolder').css({width: '100%', height:'100%', minHeight: '600px',	minWidth: '900px', textAlign:'left', verticalAlign: 'middle' });
	
    var vars = {culture: document.getElementById("globaldiv").className };
  	var params = { scale:'noScale', salign:'lt', menu:'true', quality:'high', allowfullscreen:'true', wmode:'transparent'};
  	var attributes = { id:'flashHolder', name:'flashHolder' }; // give an id to the flash object
  	
  	swfobject.embedSWF("/swf/usn3.swf", "flashHolder", "100%", "100%", "9.0.115", "js/expressInstall.swf", vars, params, attributes );
  }
);

function setCulture(c)
{
  if(c!="en" && c!="ja")
  {
    c="ja";
  }
    
  parts = window.location.href.split("#");
  if(parts.length>1)
  {
    window.location.href = "/"+c+"/#"+parts[1];
  }
  else
  {
    window.location.href = "/"+c+"/";
  }
}
function setTitle(t)
{
  document.title = "UltraSuperNew";
  if(t!="")
    document.title += " - " + t
}
