//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:#309cd5;font-size:30px;}'  ]
});
}
/*Menu implementation*/
jQuery(document).ready(function(){
	jQuery('#navigation').accordion({
		active: false,
		header: '.menuTitle',
		event: 'mouseover',
		autoheight:false,
		navigation:false,
		showSpeed: 1200,
		hideSpeed: 1400
	});
/* remove box from links */
	jQuery("a").focus(function(){
		this.blur();
	});
	/* THIS REMOVE THE LINE FROM THE EMPTY <UL> ELEMENTS (NOTE: be sure there is NO space between the <ul></ul> elements) */
	jQuery("#navigation li ul:empty").remove();
	jQuery("#sitemapnavigation165 a").append("<br/>");
	jQuery("#sitemapnavigation175 a").append("<br/>");
	
	/*Preload the menu backgrounds*/
	menuImage = new Image(); 
	menuImage.src = DNN_skinPath + "images/Home_hover.jpg";
	menuImage1 = new Image(); 
	menuImage1.src = DNN_skinPath + "images/Emergency_hover.jpg";
	menuImage2 = new Image(); 
	menuImage2.src = DNN_skinPath + "images/FunZone_hover.jpg";
	menuImage3 = new Image(); 
	menuImage3.src = DNN_skinPath + "images/MeettheTeam_hover.jpg";
	menuImage4 = new Image(); 
	menuImage4.src = DNN_skinPath + "images/OfficeInfo_hover.jpg";	
	menuImage5 = new Image(); 
	menuImage5.src = DNN_skinPath + "images/PatientInfo_hover.jpg";	
	menuImage6 = new Image(); 
	menuImage6.src = DNN_skinPath + "images/Testimonials_hover.jpg";	
	menuImage7 = new Image(); 
	menuImage7.src = DNN_skinPath + "images/Treatment_hover.jpg";
	menuImage8 = new Image(); 
	menuImage8.src = DNN_skinPath + "images/WhatSetsUsApart_hover.jpg";	
	menuImage9 = new Image(); 
	menuImage9.src = DNN_skinPath + "images/callout1_hover.png";
	menuImage10 = new Image(); 
	menuImage10.src = DNN_skinPath + "images/callout2_hover.png";
	menuImage11 = new Image(); 
	menuImage11.src = DNN_skinPath + "images/callout3_hover.png";
	menuImage12 = new Image(); 
	menuImage12.src = DNN_skinPath + "images/callout4_hover.png";
	menuImage13 = new Image(); 
	menuImage13.src = DNN_skinPath + "images/callout5_hover.png";
	menuImage14 = new Image(); 
	menuImage14.src = DNN_skinPath + "images/Contact Us_hover.jpg";
});
