//activates the sIFR3
var pageHeader = {src:'phoenixScript.swf'};
sIFR.activate(pageHeader);

sIFR.replace(pageHeader, {
  selector:'h1', 
  wmode:'transparent', 
  src:'phoenixScript.swf', 
  css:['.sIFR-root {color:#ffffff;}' ]
});




//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: 800
	});
	
	/* adjusts css*/
	$("#nav>li a:last").css("background","none");
	
	/* remove box from links */
	$("a").focus(function(){
		this.blur();
	});
	
});
