//sIFR implementation
function pageScripts() {
var MonotypeCorsiva = {  src: DNN_skinPath + 'MonotypeCorsiva.swf' };
sIFR.activate(MonotypeCorsiva);
sIFR.replace(MonotypeCorsiva, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'MonotypeCorsiva.swf', 
  css: [ '.sIFR-root {color:#d2b38a;font-size:30px;}'  ]
  
});
}	

//Menu implementation
jQuery(document).ready(function(){
	jQuery('#Navigation').accordion({
		active: false,
		header: '.menuTitle',
		event: 'mouseover',
		autoheight:false,
		navigation:true,
		showSpeed: 1200,
		hideSpeed: 1400
	});
	
	jQuery("#navigation li ul:empty").remove();
	jQuery("a").focus(function(){
		this.blur();
	});
	  jQuery("#sitemapnavigation63 a").append("<br/>");
	  
	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/FunStuff_hover.gif";
	
	});
