//here's the sIfr
//code for the h1 tags
var tekton = {  src: 'tekton.swf' };
sIFR.activate(tekton);

sIFR.replace(tekton, {
  selector: 'h1', 
  wmode: 'transparent', 
  src: 'tekton.swf', 
  css: [ '.sIFR-root {color:#00177a; text-align:right; }'  ]
});



//start jQuery functions
jQuery(document).ready(function(){	

		
	/* remove box from links */
	$("a").focus(function(){
		this.blur();
	});
	
		$('.level').hover(
		  function () {
			$(this).addClass('liHover');
		  },
		  function () {
			$(this).removeClass('liHover');
		  }
		);
	
});