//sIFR implementation
function pageScripts(){
var TrajanPro = {  src: DNN_skinPath + 'TrajanPro.swf' };
sIFR.activate(TrajanPro);
sIFR.replace(TrajanPro, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  'TrajanPro.swf', 
  css: [ '.sIFR-root {color:#659ac6; font-size:36px;}'  ]
});
}

//Menu implementation
jQuery.noConflict();   
jQuery(document).ready(function($){
$("#Navigation > ul").superfish({
		hoverClass:"hover",
		pathClass:"overideThisToUse",
		delay:800,
		animation:{height:"show"},
		speed:"normal",
		oldJquery:false,
		disableHI:false,
		onInit:function () {},
		onBeforeShow:function () {},
		onShow:function () {},
		onHide:function () {}
	});

    $(".Level1").append("<li><img src='/Portals/_default/Skins/searcydental.com/images/submenu_bottom.png' class='subbtm'></li>");

	/* remove box from links */
	$("a").focus(function(){ this.blur(); });	
		
	menuImage1 = new Image(); 
	menuImage1.src = DNN_skinPath + "images/home_ON.jpg";	 
	menuImage2 = new Image(); 
	menuImage2.src = DNN_skinPath + "images/about_ON.jpg";
   menuImage3 = new Image(); 
	menuImage3.src = DNN_skinPath + "images/first_ON.jpg";
	menuImage4 = new Image(); 
	menuImage4.src = DNN_skinPath + "images/your_ON.jpg";
	menuImage5 = new Image(); 
	menuImage5.src = DNN_skinPath + "images/cosmetic_ON.jpg";
	menuImage6 = new Image(); 
	menuImage6.src = DNN_skinPath + "images/links_ON.jpg";
	
});


