//sIFR implementation


function pageScripts() {
var zapfino = {  src: DNN_skinPath + 'zapfino.swf' };
sIFR.activate(zapfino);
sIFR.replace(zapfino, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'zapfino.swf', 
  css: [ '.sIFR-root {color:#b8c5fe;font-size:23px;}'  ]
});
}
/*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();
	});
	/* To preload the menus */
		menuImage1 = new Image(); 
		menuImage1.src = DNN_skinPath + "images/home_hover.gif";
		menuImage2 = new Image(); 
		menuImage2.src = DNN_skinPath + "images/officeinfo_hover.gif";
		menuImage3 = new Image(); 
		menuImage3.src = DNN_skinPath + "images/patientinfo_hover.gif";
		menuImage4 = new Image();
		menuImage4.src = DNN_skinPath + "images/treatment_hover.gif";
		menuImage5 = new Image();
		menuImage5.src = DNN_skinPath + "images/misc_hover.gif";
		menuImage6 = new Image();
		menuImage6.src = DNN_skinPath + "images/contact_hover.gif";	

});


