
jQuery(document).ready(function(){			



;



});



function runSiteScripts(path) {
//here's the sIfr


var Times = { src: DNN_skinPath + 'Times.swf' };
sIFR.activate(Times);
sIFR.replace(Times, {
  selector: '.pagetitle',
    wmode: 'transparent', 
  css: '.sIFR-root { color: #ffffff; font-weight:bold; font-style:italic;}'
});
// 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();};
}
}


}