//here's the sIfr
//code for the h1 tags
var trajan = {  src: 'trajan.swf' };
sIFR.activate(trajan);

sIFR.replace(trajan, {
  selector: 'h1', 
  wmode: 'transparent', 
  src: 'trajan.swf', 
  css: [ '.sIFR-root {color:#001D63; }'  ]
});


var nav = {  src: 'trajan.swf' };
sIFR.activate(nav);

sIFR.replace(nav, {
  selector: '#nav a', 
  wmode: 'transparent', 
  src: 'trajan.swf',
  fitExactly: 'true',
  css: [ '.sIFR-root {color:#572502; text-align:center; cursor:pointer; font-weight:bold; line-height:10px; padding:0px; margin:0px; }'  ]
});




//start jQuery functions
jQuery(document).ready(function(){
	
	/* replace all media files */
	$("a.media").media();
	
	/* remove box from links */
	$("a").focus(function(){
		this.blur();
	});
	
});
