//sIFR implementation
function pageScripts() {
var MyriadPro = {src: DNN_skinPath + 'MyriadPro.swf' };
sIFR.activate(MyriadPro);
sIFR.replace(MyriadPro, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'MyriadPro.swf', 
  css: [ '.sIFR-root {color:#5f1403; font-size:24px; font-weight:normal;}'  ]
});
}


/*Menu implementation*/
jQuery(document).ready(function(){
	jQuery('#navigation').accordion({
		active: false,
		header: '.menuTitle',
		event: 'click',
		autoheight:false,
		navigation:false,
		showSpeed: 1200,
		hideSpeed: 1400
	});
/* remove box from links */
	jQuery("a").focus(function(){
		this.blur();
	});

	/*Preload the menu backgrounds*/
	menuImage = new Image(); 
	menuImage.src = DNN_skinPath + "images/Miscellaneous.png";
	menuImage1 = new Image(); 
	menuImage1.src = DNN_skinPath + "images/Miscellaneous_on.png";
	menuImage2 = new Image(); 
	menuImage2.src = DNN_skinPath + "images/Home.png";
	menuImage3 = new Image(); 
	menuImage3.src = DNN_skinPath + "images/Home_on.png";
	menuImage4 = new Image(); 
	menuImage4.src = DNN_skinPath + "images/OfficeInfo.png";
	menuImage5 = new Image(); 
	menuImage5.src = DNN_skinPath + "images/OfficeInfo_on.png";
	menuImage6 = new Image(); 
	menuImage6.src = DNN_skinPath + "images/PatientInfo.png";
	menuImage7 = new Image(); 
	menuImage7.src = DNN_skinPath + "images/PatientInfo_on.png";
	menuImage8 = new Image(); 
	menuImage8.src = DNN_skinPath + "images/Treatment.png";
	menuImage9 = new Image(); 
	menuImage9.src = DNN_skinPath + "images/Treatment_on.png";
	menuImage10 = new Image(); 
	menuImage10.src = DNN_skinPath + "images/PatientLogin.png";
	menuImage11 = new Image(); 
	menuImage11.src = DNN_skinPath + "images/PatientLogin_on.png";
	menuImage12 = new Image(); 
	menuImage12.src = DNN_skinPath + "images/topdot.gif";
	menuImage13 = new Image(); 
	menuImage13.src = DNN_skinPath + "images/top2.gif";
	menuImage14 = new Image(); 
	menuImage14.src = DNN_skinPath + "images/bottom2.gif";
	menuImage15 = new Image(); 
	menuImage15.src = DNN_skinPath + "images/btmdot.gif";
	menuImage16 = new Image(); 
	menuImage16.src = DNN_skinPath + "images/dot1.jpg";
});



