
//sIFR implementation

function pageScripts(){
var Satisfaction = {  src: DNN_skinPath + 'Satisfaction.swf' };
sIFR.activate(Satisfaction);
sIFR.replace(Satisfaction, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'Satisfaction.swf', 
  css: [ '.sIFR-root {color:#fed400;font-size:28px;text-indent:10px;}'  ]
});
}

/*Menu implementation*/
jQuery(document).ready(function(){
	jQuery('#MainMenu').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();
	});

});