//preload
var PL1 = new Image();
PL1.src = 'images/pageElements/linkbg.jpg';


//here's the sIfr
//code for the h1 tags
var ff = {  src: 'fabulousfifties.swf' };
sIFR.activate(ff);
sIFR.replace(ff, {
  selector: 'h1', 
  wmode: 'transparent', 
  src: 'fabulousfifties.swf', 
  css: [ '.sIFR-root {color:#8c0000;}'  ]
});



function runSiteScripts() {



// 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();};
}
}


}