

jQuery(document).ready(function(){
	/*----- Navigation ------*/
	jQuery('#menu').accordion({
		active: false,
		header: '.menuTitle',
		event: 'click',
		autoheight:false,
		navigation:true,
		showSpeed: 1200,
		hideSpeed: 1400
	
});
	});
 
 

function runSiteScripts(path) {


//here's the sIfr
//code for the h1 tags
var baskervilleCyrillic = {  src: path + 'baskervilleCyrillic.swf' };
sIFR.activate(baskervilleCyrillic);
sIFR.replace(baskervilleCyrillic, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  path +  'baskervilleCyrillic.swf', 
  css: [ '.sIFR-root {color:#ffffff; }'  ]
});



// 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();};
}
}


}
