//sIFR implementation
function pageScripts() {
var palatinolinotype = {  src: DNN_skinPath + 'cochin.swf' };
sIFR.activate(palatinolinotype);
sIFR.replace(palatinolinotype, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'cochin.swf', 
  css: [ '.sIFR-root {color:#394995; font-size:32px;}'  ]
});
}

/*Menu implementation*/
jQuery(document).ready(function(){
	jQuery('#Navigation').accordion({
		active: false,
		header: '.menuTitle',
		event: 'click',
		autoheight:false,
		navigation:false,
		showSpeed: 800,
		hideSpeed: 1200
	});
		/* remove box from links */
	jQuery("a").focus(function(){
	this.blur();
	});
	/* To preload the menus */
		menuImage1 = new Image(); 
		menuImage1.src = DNN_skinPath + "images/aboutus_hover.jpg";
		menuImage2 = new Image(); 
		menuImage2.src = DNN_skinPath + "images/fun_hover.jpg";
		menuImage3 = new Image(); 
		menuImage3.src = DNN_skinPath + "images/general_hover.jpg";
		menuImage4 = new Image();
		menuImage4.src = DNN_skinPath + "images/home_hover.jpg";		
		menuImage5 = new Image();
		menuImage5.src = DNN_skinPath + "images/ourdoctor_hover.jpg";	
		menuImage6 = new Image();
		menuImage6.src = DNN_skinPath + "images/pediatric_hover.jpg";	
});