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