var futuralight = {
  src: 'futuralight.swf'
};

sIFR.activate(futuralight);

sIFR.replace(futuralight, {
   selector: 'h2',
   css: [
     '.sIFR-root { color: #f1ff00; background-color: #53ba3a; text-transform: uppercase;}'      
   ]
});

sIFR.replace(futuralight, {
   selector: 'h3',
   css: [
     '.sIFR-root { color: #808285; background-color: #ffffff; }',
     '.super { color: #499c32; }'      
   ]
});

sIFR.replace(futuralight, {
   selector: 'h5',
   css: [
     '.sIFR-root { color: #ffffff; background-color: #53ba3a; }'      
   ]
});

sIFR.replace(futuralight, {
   selector: 'p.large',
   css: [
     '.sIFR-root { color: #808285; background-color: #ffffff; }'      
   ]
});

function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}
window.onload = externalLinks;