//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:#3e51af; font-size:30px;}'  ]
});
}

//Menu implementation
jQuery(document).ready(function(){
	jQuery('#Navigation').accordion({
		active: false,
		header: '.menuTitle',
		event: 'click',
		autoheight:false,
		navigation:true,
		showSpeed:1200,
		hideSpeed:1400
	});
	/* remove box from links */
	jQuery("a").focus(function(){
		this.blur();
	});
	menuImage = new Image(); 
	menuImage.src = DNN_skinPath + "images/home_hover.jpg";
	menuImage1 = new Image(); 
	menuImage1.src = DNN_skinPath + "images/officeinfo_hover";
	menuImage2 = new Image(); 
	menuImage2.src = DNN_skinPath + "images/patientinfo_hover";
	menuImage3 = new Image(); 
	menuImage3.src = DNN_skinPath + "images/treatment_hover";
	menuImage4 = new Image(); 
	menuImage4.src = DNN_skinPath + "images/patientlogin_hover";
	menuImage5 = new Image(); 
	menuImage5.src = DNN_skinPath + "images/misc_hover";
});