
var FO = { movie: "/flash/preloader.swf", width: "778", height: "350", majorversion: "8", build: "0", wmode: "transparent", bgcolor: "#ffffff", id: "landingSwf", flashvars: "path=/flash/homepage.swf" };
  

UFO.create(FO, "main");

// This function call is embedded in flash and is used to set the mouseout function
// after the flash movie is fully loaded and the flashRollOut method is exposed.
function onFlashComplete() {
  var container = document.getElementById("main");
  container.onmouseout = rollOut;
}

// Due to issues with the Safari browser the mouseout method cannot directly call
// the flash exposed function. This function is merely a pass-through.
function rollOut() {
  var swf = document.getElementById("landingSwf");
  swf.flashRollOut();
}
