//sIFR implementation
function pageScripts() {
var TwCenMTCond = {  src: DNN_skinPath + 'TwCenMTCond.swf' };
sIFR.activate(TwCenMTCond);
sIFR.replace(TwCenMTCond, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'TwCenMTCond.swf',  
  css: [ '.sIFR-root {color:#df0900;font-size:36px;text-align:center;}'  ]
  
});
}

//Menu implementation
jQuery(document).ready(function(){
	jQuery('#MainMenu').accordion({ 
		active: false,
		header: '.menuTitle',
		animation:{height:"show"},
		event: 'click',
		autoheight:false,
		navigation:true,
		showSpeed: 600,
		hideSpeed: 600
	});
/* THIS REMOVE THE LINE FROM THE EMPTY <UL> ELEMENTS (NOTE: be sure there is NO space between the <ul></ul> elements) */
	jQuery("#MainMenu li ul:empty").remove();
	
/* remove box from links */
 jQuery("a").focus(function(){
  this.blur();
 });
	
});




