//sIFR implementation
function pageScripts() {
var CenturyGothic = {  src: DNN_skinPath + 'CenturyGothic.swf' };
sIFR.activate(CenturyGothic);
sIFR.replace(CenturyGothic, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'CenturyGothic.swf', 
  css: [ '.sIFR-root {color:#ffffff;font-size:27px;}'  ]
});
}

/*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 () {}
	});
	/* remove box from links */
	jQuery("a").focus(function(){
		this.blur();
	});
	/*Preload the menu backgrounds*/
	jQuery(".LinkIcon").rollover();
	
	menuImage = new Image(); 
	menuImage.src = DNN_skinPath + "images/home_on.png";
	menuImage1 = new Image(); 
	menuImage1.src = DNN_skinPath + "images/meetdr_on.png";
	menuImage2 = new Image(); 
	menuImage2.src = DNN_skinPath + "images/justforpatient_on.png";	
	menuImage3 = new Image(); 
	menuImage3.src = DNN_skinPath + "images/pdc_on.png";
	menuImage4 = new Image(); 
	menuImage4.src = DNN_skinPath + "images/oc_on.png";
	menuImage5 = new Image(); 
	menuImage5.src = DNN_skinPath + "images/justforfun_on.png";
	menuImage6 = new Image(); 
	menuImage6.src = DNN_skinPath + "images/contact_on.png"
});