//sIFR implementation
function pagescript(){
var universityroman = {  src: DNN_skinPath + 'verdana.swf' };
sIFR.activate(universityroman);
sIFR.replace(universityroman, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'verdana.swf', 
  css: [ '.sIFR-root {color:#0068A6;font-size:14px;font-weight:bold;}'  ]
})
}

//Menu implementation
jQuery(document).ready(function(){
	jQuery('#MainMenu').accordion({
		active: false,
		header: '.menuTitle',
		animation:{height:"show"},
		event: 'click',
		autoheight:false,
		navigation:false,
		showSpeed: 1200,
		hideSpeed: 1400
	});

});


