$(document).ready(function(){

	$("ul#meny li a").hover(function(){
		
		if($(this).attr("id") != "current"){
			var offset = $(this).position();
			var thisOffset = offset.top-3 + "px";
			$("#marker").css("top",thisOffset);
			$("#marker").css("display","block");	
		}
		
	}, function() {
	
		$("#marker").css("display","none");
	
	});
	
	
	$("img#inactive").hover(function(){
	
		$(this).attr("src","/design/switch-paintballarena.png");
	
	}, function() {
	
		$(this).attr("src","/design/switch-paintballarena-inactive.png");
	
	});
	
	$("a.newWin").click(function(e) {
	
		e.preventDefault();
        var newWindow = window.open($(this).attr('href'), '_blank');
		newWindow.focus();

    });

});
