//sIFR implementation


function pageScripts(){
var scriptina1 = {  src: DNN_skinPath + 'hobo-medium.swf' };
sIFR.activate(scriptina1);
sIFR.replace(scriptina1, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'hobo-medium.swf', 
  css: [ '.sIFR-root {color:#000000;font-size:23px;}'  ]
});
}



//Menu implementation
jQuery(document).ready(function(){
	jQuery('#navigation').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("#navigation li ul:empty").remove();
		
});




