//here's the sIfr
//code for the h1 tags
var header = {  src: 'bellGothicOutlined.swf' };
sIFR.activate(header);

sIFR.replace(header, {
  selector: 'h1', 
  wmode: 'transparent', 
  src: 'bellGothicOutlined.swf', 
  css: [ '.sIFR-root {color:#fef7e8; }'  ]
});



$(document).ready(function(){
	/*----- Navigation ------*/
	$('#nav').accordion({
		active: false,
		header: '.menuTitle',
		event: 'click',
		alwaysOpen: false,
		autoheight:false,
		navigation:true,
		animated: 'bounceslide',
		showSpeed: 400,
		hideSpeed: 800
	});
	
	/* adjusts css*/
	$(">li:last","#nav").css("margin-bottom","0px");
	
	/* replace media classes */
	$("a.media").media();
	
	/* remove box from links */
	$("a").focus(function(){
		this.blur();
	});
	
});

