//sIFR implementation
function pageScripts(){
var ShelleyAllegroScript = {  src: DNN_skinPath + '/flash/helvetica-neue.swf' };
sIFR.activate(ShelleyAllegroScript);
sIFR.replace(ShelleyAllegroScript, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  '/flash/helvetica-neue.swf', 
  css: [ '.sIFR-root {color:#8e2325; font-size:30px; text-transform:uppercase;}'  ]
});
}

//Menu implementation	   
jQuery(document).ready(function(){

	jQuery("#Navigation > 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 () {}
	}).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('.DisabledTab a[href="#"]').click(function() { return false });
	
	var image1 = new Image();
	image1.src = DNN_skinPath + "images/home_hover.jpg";
	var image2 = new Image();
	image2.src = DNN_skinPath + "images/contactus_hover.jpg";
	var image3 = new Image();
	image3.src = DNN_skinPath + "images/officeinfo_hover.jpg";
	var image4 = new Image();
	image4.src = DNN_skinPath + "images/patientinfo_hover.jpg";
	var image5 = new Image();
	image5.src = DNN_skinPath + "images/services_hover.jpg";
	var image6 = new Image();
	image6.src = DNN_skinPath + "images/resources_hover.jpg";
	
	jQuery('.LinkIcon').rollover('_hover');

});
