//sIFR implementation
function pageScripts() {
var rockwell = {  src: DNN_skinPath + 'palatino.swf' };
sIFR.activate(rockwell);
sIFR.replace(rockwell, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'palatino.swf', 
  css: [ '.sIFR-root {color:#2b1c02;font-size:38px;letter-spacing:2;}'  ]
  
});
}



//Menu implementation
jQuery(document).ready(function(){
	jQuery('#MainMenu').accordion({
		active: false,
		header: '.menuTitle',
		animation:{height:"show"},
		event: 'click',
		autoheight:false,
		navigation:true,
		showSpeed: 1200,
		hideSpeed: 1400
	});
/* 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();
});



