//sIFR implementation

function pageScripts(){
var verdana = {  src: DNN_skinPath + 'verdana.swf' };
sIFR.activate(verdana);
sIFR.replace(verdana, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'verdana.swf', 
  css: [ '.sIFR-root {color:#00718F;font-size:30px;font-weight:bold;}'  ]
});
}

/*Menu implementation*/
jQuery(document).ready(function(){
	jQuery("#MainMenu > ul").superfish({
		hoverClass:"hover",
		pathClass:"overideThisToUse",
		delay:400,
		animation:{height:"show"},
		speed:"normal",
		oldJquery:false,
		disableHI:false,
		onInit:function () {},
		onBeforeShow:function () {},
		onShow:function () {},
		onHide:function () {}
	});
	jQuery("#menu a").attr("title","");
});
