function InitLogo()
{
  $('#light').flash
  (
    { src: sBasePath + 'www/Light.swf', width: 390, height: 200, wmode: 'transparent' },
    { version: 9 },
    function(htmlOptions)
    {
      $this = $(this);
      $this.html($.fn.flash.transform(htmlOptions));
    }
  );
}

$(document).ready(function() {
  InitLogo();
});
