//sIFR implementation


function pageScripts() {
var arial = {  src: DNN_skinPath + 'arial.swf' };
sIFR.activate(arial);
sIFR.replace(arial, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'arial.swf', 
  css: [ '.sIFR-root {color:#ffffff;font-size:24px;}'  ]
});
}

/*Menu implementation*/

jQuery(document).ready(function(){
	
	jQuery('#Navigation').accordion({
		active: false,
		header: '.menuTitle',
		event: 'click',	
		autoheight:false,
		navigation:false,
		animated: 'slide',
		showSpeed: 700,
		hideSpeed: 900
	
});
		/* remove box from links */
	jQuery("a").focus(function(){
		this.blur();
	});
		menuImage1 = new Image(); 
		menuImage1.src = DNN_skinPath + "images/home_hover.jpg";
		menuImage2 = new Image(); 
		menuImage2.src = DNN_skinPath + "images/office_hover.jpg";
		menuImage3 = new Image(); 
		menuImage3.src = DNN_skinPath + "images/patient_hover.jpg";
		menuImage4 = new Image();
		menuImage4.src = DNN_skinPath + "images/treatment_hover.jpg";
		menuImage5 = new Image();
		menuImage5.src = DNN_skinPath + "images/contact_hover.jpg";
		menuImage6 = new Image();
		menuImage6.src = DNN_skinPath + "images/login_hover.jpg";	
		
	});

