function pageScripts(){
var kidprint = {  src: DNN_skinPath + 'kidprint.swf' };
sIFR.activate(kidprint);
sIFR.replace(kidprint, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'kidprint.swf', 
  css: [ '.sIFR-root {color:#bb4b42;font-size:35px;font-weight:bold;}'  ]
});
}

//Menu implementation
jQuery(document).ready(function(){
	jQuery('#navigation').accordion({
		active: false,
		header: '.menuTitle',
		animation:{height:"show"},
		event: 'click',
		autoheight:false,
		navigation:true,
		showSpeed: 1200,
		hideSpeed: 1400
	});
/* THIS REMOVE THE LINE FROM THE EMPTY <UL> ELEMENTS (NOTE: be sure there is NO space between the <ul></ul> elements) */
	jQuery("#sitemapnavigation156 a").append("<br/>");
	jQuery("a").focus(function(){
		this.blur();
	});
	/*Preload the menu backgrounds*/
	menuImage1 = new Image(); 
	menuImage1.src = DNN_skinPath + "images/home_hover.png";
	menuImage2 = new Image(); 
	menuImage2.src = DNN_skinPath + "images/meetus.png";
	menuImage3 = new Image(); 
	menuImage3.src = DNN_skinPath + "images/ouroffice_hover.png";
	menuImage4 = new Image(); 
	menuImage4.src = DNN_skinPath + "images/parents_hover.png";
	menuImage5 = new Image(); 
	menuImage5.src = DNN_skinPath + "images/emergency_hover.png";
	menuImage6 = new Image(); 
	menuImage6.src = DNN_skinPath + "images/expecting_hover.png";
	menuImage7 = new Image(); 
	menuImage7.src = DNN_skinPath + "images/fun_hover.png";
	menuImage8= new Image(); 
	menuImage8.src = DNN_skinPath + "images/contactus.png";
	menuImage9= new Image(); 
	menuImage9.src = DNN_skinPath + "images/forms_hover.png";
});