//sIFR implementation
function pageScripts() {
var TrajanPro = {  src: DNN_skinPath + 'TrajanPro.swf' };
sIFR.activate(TrajanPro);
sIFR.replace(TrajanPro, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'TrajanPro.swf', 
  css: [ '.sIFR-root {color:#00356e;font-size:24px;}'  ]
});
}

/*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/FunStuff.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/FunStuff_hover.jpg";
	
});
