swfobject.registerObject("flash-wood", "8.0.0", "/flash/expressInstall.swf");

$(function()
{
  // add the Mozilla specific styles
  if (document.styleSheets)
    if (document.styleSheets[0].insertRule)
      document.styleSheets[0].insertRule("div.form-button button::-moz-focus-inner, div.form-button input::-moz-focus-inner { border:none; }", 0);
      
  // intialize the drop down menu for Internet Explorer 6
  $("#menu-top ul").dropmenu({
    prefix: "menu-top"
  });
  
  // initialize any popup links
  $("a.popup").popup({
    iframe: true,
    caption: false
  });
  
  // initialize any video popup links
  $("a.popup-video").popup({
    iframe: true,
    caption: false,
    height: 360,
    width: 640
  });
  
  // automate script redirects
  if ($("#redirectLink").length > 0)
  {
    setTimeout(function()
    {
      location.href = $("#redirectLink").attr("href");
    }, iRedirectTimeout * 1000);
  }
});
