//sIFR implementation
function pageScripts() {
var Arial= {  src: DNN_skinPath + 'Arial.swf' };
sIFR.activate(Arial);
sIFR.replace(Arial, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'Arial.swf', 
  css: [ '.sIFR-root {color:#06497f;font-size:24px;}'  ]
});
}
/*Menu implementation*/
jQuery(document).ready(function(){
	jQuery('#navigation').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();
	});
	/* THIS REMOVE THE LINE FROM THE EMPTY <UL> ELEMENTS (NOTE: be sure there is NO space between the <ul></ul> elements) */
	jQuery("#navigation li ul:empty").remove();
	
	/*Preload the menu backgrounds*/
	menuImage = new Image(); 
	menuImage.src = DNN_skinPath + "images/menu.jpg";
	menuImage1 = new Image(); 
	menuImage1.src = DNN_skinPath + "images/menuhover.jpg";
	menuImage2 = new Image(); 
	menuImage2.src = DNN_skinPath + "images/menu1.jpg";
	menuImage3 = new Image(); 
	menuImage3.src = DNN_skinPath + "images/menuhover1.jpg";
	menuImage4 = new Image(); 
	menuImage4.src = DNN_skinPath + "images/submenuhover.jpg";

	
});
