//sIFR implementation

var artbrush = {  src: DNN_skinPath+'Verdana.swf' };
sIFR.activate(artbrush);

sIFR.replace(artbrush, {
  selector: '.sIFR', 
  wmode: 'transparent', 
  src: DNN_skinPath+'Verdana.swf', 
  css: [ '.sIFR-root {color:#9f2332;font-size:26px;}'  
	   ]
});

//Menu implementation
jQuery(document).ready(function(){
	jQuery('#MainMenu').accordion({
		active: false,
		header: '.menuTitle',
		animation:{height:"show"},
		event: 'click',
		autoheight:false,
		navigation:false,
		showSpeed: 1200,
		hideSpeed: 1400
	});
	
	jQuery("#MainMenu li ul:empty").remove();

});