//sIFR implementation

function pageScripts(){
var copperplatebold = {  src: DNN_skinPath + 'copperplatebold.swf' };
sIFR.activate(copperplatebold);
sIFR.replace(copperplatebold, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'copperplatebold.swf', 
  css: [ '.sIFR-root {color:#270035; font-size:24px;}' ]
});
}

//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("a").focus(function(){
		this.blur();
	});
	
	/*Preload the menu backgrounds*/
	menuImage = new Image(); 
	menuImage.src = DNN_skinPath + "images/Home_hover.jpg";
	menuImage2 = new Image(); 
	menuImage2.src = DNN_skinPath + "images/Patientinfo_hover.jpg";
	menuImage3 = new Image(); 
	menuImage3.src = DNN_skinPath + "images/Treatment_hover.jpg";
	menuImage4 = new Image(); 
	menuImage4.src = DNN_skinPath + "images/Funstuff_hover.jpg";
	menuImage5 = new Image(); 
	menuImage5.src = DNN_skinPath + "images/PatientLogin_hover.jpg";
});

