jQuery.noConflict();

jQuery(document).ready(function(){ 
	// init Facebox
	jQuery('a[rel*=facebox]').facebox();
	


//equalHeight on .content id

jQuery(function(){
/*
	if (jQuery('.frontboxcontentarea')) {
		jQuery('.frontboxcontentarea').equalHeight();
	}
*/	
//Stripe tables with class striped
jQuery('table.striped tbody tr:nth-child(odd)').addClass('stripeme');

});







//Jappler meny function
function japplerMenu(){
jQuery(" #nav ul ").css({display: "none"}); // Opera Fix
jQuery(" #nav li").hover(function(){
	jQuery(this).find('ul:first').css({visibility: "visible",display: "none"}).fadeIn(200);
	},function(){
	jQuery(this).find('ul:first').css({visibility: "hidden"});
	});
}

//JapplerMenu     
japplerMenu();


}); 
 
<!--//--><![CDATA[//><!--
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

//--><!]]>


/* Old functionality added in first release 1.0 */
function openNewWindow(url, w, h) {	
	window.open(url,"popup",'scrollbars=yes,width=' + w + ',height=' + h + ',left=50,top=50,screenX=50,screenY=50');
	}


function parseNavigation(ob) {	
	
	toBeBrokenDown = ob.options[ob.selectedIndex].value.split("@");	
	
	if (toBeBrokenDown.length == 2) {		
		targetWindow = toBeBrokenDown[0];		
		targetURL = toBeBrokenDown[1]; 		
		location.href = targetURL;	
		} 
	}

