$(document).ready(function() {

	var sel = $('#submenu li.act');
	/* Set active menu BG graphic. */
	sel.each(function (i) {
		if ($('a',this).height()>25) {
			$(this).addClass('act2');
		}
		if ($('a',this).height()>38) {
			$(this).addClass('act3');
		}
	});

	var sel = $('#submenu li.cur');
	/* Set active menu BG graphic. */
	sel.each(function (i) {
		if ($('a',this).height()>25) {
			$(this).addClass('cur2');
		}
		if ($('a',this).height()>38) {
			$(this).addClass('cur3');
		}
	});
	
	// Equalize height on frontpage textboxes
	var boxheight = Math.max(
		$('#forlaerer').height(),
		($('#forsidenyt').height()+7),
		$('#referencer').height()
	)
	$('#forlaerer').height(boxheight);
	$('#forsidenyt').height(boxheight-7);
	$('#referencer').height(boxheight);


	// Rotate images in slideshow
	$('.slideimage img').each(function() {
		$(this).rotate(3);
	})

        // Enable loginbox
        $('#loginbox').loginbox({expandSize:193});

        // Enable pageloginbox
        $('#pageloginbox').loginbox({expandSize:193});

        // Enable popuploginbox
        $('#popuploginbox').loginbox({expandSize:193});

});


