$(function() {
	$("#searchField").click(function() {
		if ($(this).val() == "Søg...") {
			$(this).val("");
		}
	});

	$("#searchField").blur(function() {
		if ($(this).val() == "") {
			$(this).val("Søg...");
		}
	});

	$("#content #sidebar a.title").click(function() {
		$($(this).attr("href")).slideToggle(100);
		return false;
	});
	
	$("#navigation ul li").click(function() {
		if (!$(this).hasClass("search")) {
			window.location = $(this).find("a").attr("href");
		}
	});
});
