//sIFR implementation
function pageScripts() {
var futurabook = {  src: DNN_skinPath + 'futurabook.swf' };
sIFR.activate(futurabook);
sIFR.replace(futurabook, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'futurabook.swf', 
  css: [ '.sIFR-root {color:#0b325a;font-size:30px;}'  ]
});
}
/*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/home.jpg";
	menuImage2 = new Image(); 
	menuImage2.src = DNN_skinPath + "images/officeinfo.jpg";
	menuImage3 = new Image(); 
	menuImage3.src = DNN_skinPath + "images/patientinfo.jpg";
	menuImage4 = new Image(); 
	menuImage4.src = DNN_skinPath + "images/treatment.jpg";
	menuImage5 = new Image(); 
	menuImage5.src = DNN_skinPath + "images/contactus.jpg";
	menuImage6 = new Image(); 
	menuImage6.src = DNN_skinPath + "images/home_hover.jpg";
	menuImage7 = new Image(); 
	menuImage7.src = DNN_skinPath + "images/officeinfo_hover.jpg";
	menuImage8= new Image(); 
	menuImage8.src = DNN_skinPath + "images/patientinfo_hover.jpg";
	menuImage9 = new Image(); 
	menuImage9.src = DNN_skinPath + "images/treatment_hover.jpg";
	menuImage10 = new Image(); 
	menuImage10.src = DNN_skinPath + "images/contactus_hover.jpg";
	
});