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

