////
//// support code for Deb Roy site home page
////

//
// required:
//   jquery.js (version 1.2.6+) (see jquery.com)
//   swfobject-2.1.js
//

$(document).ready(function(){

  ////
  //// Home page Flash
  ////
  if ($("body").hasClass("home")) {
    //
    // set up Flash movie
    //
    var params = {
                   play:    "true",
                   loop:    "false",
                   menu:    "false",
                   swLiveConnect: "false",
                   wmode:   "transparent",
                   quality: "high",
                   align:   ""
                 };
    var attributes = {
                   id:      "divflash"
                 };
    var flashvars = {
                   //datafile: "/img/home/pagedata.xml",
                   //debug:    (location.search == "?debug" ? "1" : "0"),
                   textimage: "/~dkroy/img/home/introtext.png",
                   xyzzy:    0
                 };
    if (location.search != "?noflash") {
      swfobject.embedSWF("/~dkroy/img/home/dkroyhome.swf", "divflash", "840", "362", "8.0.0", false, flashvars, params, attributes);
    }
  }

});
