//preload


//here's the sIfr
//code for the h1 tags
var spring = {  src: 'spring.swf' };
sIFR.activate(spring);
sIFR.replace(spring, {
  selector: 'h1', 
  wmode: 'transparent', 
     filters: {
        DropShadow: {
            knockout: false,
            distance: 2,
            color: '#010101',
            strength: 0.9,
            blurX: 2,
            blurY: 2
        }
	 },
  src: 'spring.swf', 
  css: [ '.sIFR-root {color:#96a0d0;}'  ]
});



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();};
}
}


}