//code for the menu buttons
var kristenITC = {  src: 'kristenITC.swf' };
sIFR.activate(kristenITC);
sIFR.replace(kristenITC, {
  selector: 'h1', 
  wmode: 'transparent', 
  src: 'kristenITC.swf', 
  css: ['.sIFR-root {color:#7a7afe;}']
});

//code for the menu buttons
/*var kristenITC_wOutline = {  src: 'kristenITC_wOutline.swf' };
sIFR.activate(kristenITC_wOutline);
sIFR.replace(kristenITC_wOutline, {
  selector: '.menuTitle h5', 
  wmode: 'transparent', 
  src: 'kristenITC_wOutline.swf', 
  css: [
      '.sIFR-root {cursor:pointer; color:#f6ead2; text-align:right;}'
      ,'a {text-decoration:none; color:#f6ead2;}'
      ,'a:link {color:#f6ead2;}'
      ,'a:hover {color:#674c1d;}'
    ]
});*/

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();};
}
}


}