function pageScripts(){
var mini= {  src: DNN_skinPath + 'mini.swf' };
sIFR.activate(mini);
sIFR.replace(mini, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'mini.swf', 
  css: [ '.sIFR-root {color:#559cbe;font-size:25.83px;font-weight:bold;  }'  ]
});
}

function click(e)
{
if (document.all)
{
if (event.button==2||event.button==3)
{
//IE
//right click has been clicked
//Return false will disabled
alert(' Right Click is Blocked ');
return false;
}
}
else
{
if (e.button==2||e.button==3)
{
//FF
//right click has been clicked
//Return false will disable
alert(' Right Click is Blocked ');
e.preventDefault();
e.stopPropagation();
return false;
}
}
}

if (document.all)//IE
document.onmousedown=click;
else //FF
document.onclick=click;



jQuery(document).ready(function(){
	jQuery('#MainMenu').accordion({
		active: false,
		header: '.menuTitle',
		event: 'click',
		autoheight:false,
		navigation:false,
		showSpeed: 400,
		hideSpeed: 400
	});
	
	
		/* remove box from links */
	jQuery("a").focus(function(){
		this.blur();
		
	});
	
	/*Preload the menu backgrounds*/

jQuery.noConflict();

	
});




