//sIFR implementation
function pageScripts() {
var orlandoallergy = {  src: DNN_skinPath + 'RevueStd.swf' };
sIFR.activate(orlandoallergy);
sIFR.replace(orlandoallergy, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'RevueStd.swf', 
  css: [ '.sIFR-root {color:#002E73;font-size:26px;font-weight:bold;letter-spacing:-1;}'  ]
  
});
}
 
/*Menu implementation*/
jQuery(document).ready(function(){
	jQuery("#Navigation > ul").superfish({
		hoverClass:"hover",
		pathClass:"overideThisToUse",
		delay:200,
		animation:{height:"show"},
		speed:"normal",
		oldJquery:false,
		disableHI:false,
		onInit:function () {},
		onBeforeShow:function () {},
		onShow:function () {},
		onHide:function () {}
	}).find(">li:has(ul)").mouseover(function () {
		jQuery("ul", this).bgIframe({opacity:true});
	}).find("a").focus(function () {
		jQuery("ul", jQuery("#Navigation > ul >li:has(ul)")).bgIframe({opacity:true});
	});
					
	jQuery(".Level1").append("<li><img src='/Portals/_default/Skins/orlandoallergy.com/images/submenubtm.jpg' align='bottom' class='subbottom' /></li>"); 
});
