//sIFR implementation
function pageScripts() {
var freestylescript = {  src: DNN_skinPath + 'freestylescript.swf' };
sIFR.activate(freestylescript);
sIFR.replace(freestylescript, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'freestylescript.swf', 
  css: [ '.sIFR-root {color:#608bab;font-size:40px;text-indent:10px;  }'  ]
  
});
}

//Menu implementation
jQuery(document).ready(function(){
	jQuery('#navigation').accordion({
		active: false,
		header: '.menuTitle',
		event: 'click',
		autoheight:false,
		navigation:true,
		showSpeed: 1200,
		hideSpeed: 1400
	});
});



