//sIFR implementation
function pageScripts() {
var Kids= {  src: DNN_skinPath + 'Kids.swf' };
sIFR.activate(Kids);
sIFR.replace(Kids, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'Kids.swf', 
  css: [ '.sIFR-root {color:#fcba65;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();
	});
	/* 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();
	
	/*Preload the menu backgrounds*/
	menuImage = new Image(); 
	menuImage.src = DNN_skinPath + "images/home_img_on.gif";
	menuImage1 = new Image(); 
	menuImage1.src = DNN_skinPath + "images/appointment_img_on.gif";
	menuImage2 = new Image(); 
	menuImage2.src = DNN_skinPath + "images/contactus_img_on.gif";
	menuImage3 = new Image(); 
	menuImage3.src = DNN_skinPath + "images/firstsmile_img_on.gif";
	menuImage4 = new Image(); 
	menuImage4.src = DNN_skinPath + "images/fun_img_on.gif";
	menuImage5 = new Image(); 
	menuImage5.src = DNN_skinPath + "images/officeinfo_img_on.gif";
	menuImage6 = new Image(); 
	menuImage6.src = DNN_skinPath + "images/patientinfo_img_on.gif";
	menuImage7 = new Image(); 
	menuImage7.src = DNN_skinPath + "images/patientlogin_img_on.gif";
	menuImage8 = new Image(); 
	menuImage8.src = DNN_skinPath + "images/pediatric-dentist_img_on.gif";
	menuImage9 = new Image(); 
	menuImage9.src = DNN_skinPath + "images/treatment_img_on.gif";
	menuImage10 = new Image(); 
	menuImage10.src = DNN_skinPath + "images/contactus_img_on.gif";
	menuImage11 = new Image(); 
	menuImage11.src = DNN_skinPath + "images/sub_hover.gif";
});
