//sIFR implementation
function pageScripts(){
var Gill = {  src: DNN_skinPath + 'Gill.swf' };
sIFR.activate(Gill);
sIFR.replace(Gill, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'Gill.swf', 
  css: [ '.sIFR-root {color:#ffffff;font-size:30px;text-indent:5px; font-weight:bold; }'  ]
});
}
/*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();		
		});	
	menuImage1 = new Image(); 
	menuImage1.src = DNN_skinPath + "images/Funzone_hover.gif";
	menuImage2 = new Image(); 
	menuImage2.src = DNN_skinPath + "images/Home_hover.gif";
	menuImage3 = new Image(); 
	menuImage3.src = DNN_skinPath + "images/Login_hover.gif";
	menuImage4 = new Image(); 
	menuImage4.src = DNN_skinPath + "images/Office_hover.gif";
	menuImage5 = new Image(); 
	menuImage5.src = DNN_skinPath + "images/Patient_hover.gif";
	menuImage6 = new Image(); 
	menuImage6.src = DNN_skinPath + "images/Treatment_hover.gif";
	menuImage7 = new Image(); 
	menuImage7.src = DNN_skinPath + "images/requestpppointment_hover.gif";
});
