﻿$(function() {
	$(".inside>ul.list>li:nth-child(3)").addClass("selected");

	$("button.eduinfo").hover(
		function() {
			$("div.eduinfo").fadeIn("fast");
		},
		function() {
			$("div.eduinfo").delay("slow").fadeOut("slow");
		}
	).click(function() {
		$("div.eduinfo").fadeIn("fast").delay("slow").fadeOut("slow");
	});

	$(".field.educational input:checkbox").change(
		function () {
			var out = $(".field.employees label");
			if (this.checked) {
				out.html("Antal pc'er med adgang<span>*</span>");
			}
			else {
				out.html("Antal byggefaglige medarbejdere<span>*</span>");
			}
		}
	).change();
});
