//sIFR implementation
function pageScripts() {
var angelina = {  src: DNN_skinPath + 'kozgothicpro.swf' };
sIFR.activate(angelina);
sIFR.replace(angelina, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'kozgothicpro.swf', 
  css: [ '.sIFR-root {color:#e6ffbb; font-size:29px; text-indent:2px;}'  ]
});
}

/*Menu implementation*/
jQuery(document).ready(function(){
	jQuery('#Navigation').accordion({
		active: false,
		header: '.menuTitle',
		event: 'click',
		autoheight:false,
		navigation:false,
		showSpeed: 1200,
		hideSpeed: 1400
	});
		/* remove box from links */
	jQuery("a").focus(function(){
	this.blur();
	});
	/* To preload the menus */
		menuImage1 = new Image(); 
		menuImage1.src = DNN_skinPath + "images/Home_hover.jpg";
		menuImage2 = new Image(); 
		menuImage2.src = DNN_skinPath + "images/Office-Info_hover.jpg";
		menuImage3 = new Image(); 
		menuImage3.src = DNN_skinPath + "images/Patient-Info_hover.jpg";
		menuImage4 = new Image();
		menuImage4.src = DNN_skinPath + "images/Treatment_hover.jpg";		
		menuImage5 = new Image();
		menuImage5.src = DNN_skinPath + "images/Fun-Stuff_hover.jpg";			
});
