//activates the sIFR
//code for the h1 tags
var pageHeader = {  src: 'centuryGothic.swf' };
sIFR.activate(pageHeader);

sIFR.replace(pageHeader, {
  selector: 'h1', 
  wmode: 'transparent', 
  src: 'centuryGothic.swf', 
  css: [ '.sIFR-root {color:#CE7B37; font-weight:bold; }'  ]
});



//start jQuery functions
$(document).ready(function(){
	/*----- Navigation ------*/
	$('#sitemap').accordion({
		active: false,
		header: '.mapTitle',
		event: 'click',
		alwaysOpen: false,
		autoheight:false,
		navigation:true,
		animated: 'bounceslide',
		showSpeed: 400,
		hideSpeed: 800
	});
	
	/* adjusts css*/
	$(">li:last","#sitemap").css("margin-bottom","0px");
	
	/* replace media classes */
	$("a.media").media();
	
	/* remove box from links */
	$("a").focus(function(){
		this.blur();
	});
	
});

