
var shelley = {  src: 'shelley.swf' };
sIFR.activate(shelley);

sIFR.replace(shelley, {
  selector: '.title b', 
  wmode: 'transparent', 
  src: 'shelley.swf', 
  css: [ '.sIFR-root {color:#a6a6f8;}'  ]
});

var kabel = {  src: 'kabel.swf' };
sIFR.activate(kabel);

sIFR.replace(kabel, {
  selector: '.title em', 
  wmode: 'transparent', 
  src: 'kabel.swf', 
  css: [ '.sIFR-root {color:#a6a6f8; text-transform:lowercase;}'  ]
});

function runSiteScripts() {

//var so = new SWFObject("topflash.swf", "animation2", "770", "194", "6", "#ffffff");
//so.addParam("wmode", "transparent");
//so.write("topflash");

// gets rid of focus box on click
if(document.getElementsByTagName) {
var a = document.getElementsByTagName("a");
//collect all anchors A
for(var i = 0; i < a.length; i++){
// mouse onfocus, blur anchors
a[i].onfocus = function(){this.blur();};
}
}


}