//sIFR implementation

var artbrush = {  src: DNN_skinPath+'TimesBoldItalic.swf' };
sIFR.activate(artbrush);

sIFR.replace(artbrush, {
  selector: '.sIFR', 
  wmode: 'transparent', 
  src: DNN_skinPath+'TimesBoldItalic.swf', 
  css: [ '.sIFR-root {color:#000000;font-size:24px;}'  
	   ]
});

//Menu implementation
jQuery(document).ready(function(){

	// Accordion Navigation
	jQuery('#MainMenu').accordion({
		active: false,
		header: '.menuTitle',
		event: 'click',
		alwaysOpen: false,
		autoheight:false,
		navigation:true,
		animated: 'bounceslide',
		showSpeed: 400,
		hideSpeed: 800
	});

	/* remove box from links */
	jQuery("a").focus(function(){
		this.blur();
	});

});
