//sIFR implementation

function pageScripts() {
var freestyle = {  src: DNN_skinPath + 'freestyle_script.swf' };
sIFR.activate(freestyle);
sIFR.replace(freestyle, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'freestyle_script.swf', 
  css: [ '.sIFR-root {color:#006554;font-size:48px;text-indent:10px;}'  ]
});
}

/*Menu implementation */
jQuery(document).ready(function(){
	jQuery("#MainMenu > ul").superfish({
		hoverClass:"hover",
		pathClass:"overideThisToUse",
		delay:800,
		animation:{height:"show"},
		speed:"normal",
		oldJquery:false,
		disableHI:false,
		onInit:function () {},
		onBeforeShow:function () {},
		onShow:function () {},
		onHide:function () {}
	});
});


