$(document).ready(function() {
	
	var highestLi = 0;
	
	
	/*
	$("#nav>ul>li").each(function() {
		var h = $(this).height();
		//var h = $(this).offsetHeight;
		console.log(h);
		if(h > highestLi) {
			highestLi = h;
		}
	});
	
	$("#nav>ul>li").each(function() {
		$(this).height(highestLi);
	});
	*/
	
	var sideDiv = $(document.createElement('div')).attr('id', 'nav-side');
	var sideUl = $(document.createElement('ul')).appendTo(sideDiv);	
	
	$("#nav #mnarveier").appendTo($(sideUl));
	sideDiv.insertAfter($("#nav"));
	
	$("#menu>li:nth-child(3n+1)").addClass("col1");
	$("#menu>li:nth-child(3n+2)").addClass("col2");
	$("#menu>li:nth-child(3n+3)").addClass("col3");
	
	$("#menu>li.col3").after('<span class="hr" style="display: block; clear: both; border-top: 1px solid #a1a1a1; height: 0; margin: 0 15px;"></span>');
	
	$('.flexslider').flexslider({
		directionNav : false
	});
	
	$(".tilbud li a").each(function() {
		$(this).wrapInner('<span>');
	});
	
	$("#vis-hovedmeny").toggle(
		function() {
			$("#nav-popup-wrapper").fadeIn(500, function() {
				$(this).expose({
					closeOnClick: false,
					onClose: function() {
						$("#nav-popup-wrapper").fadeOut(500)
					}
				});
			})
		},
		function() {
			$.mask.close();
		});
	
})
