$(document).ready(function() {
	// Events Relatednav
	$(".event_item:first").css("background-image", "none");
	
	// All other Relatednavs
	$("#related_nav li:first").css("background-image", "none");
	
	loc = String(document.location);
	
	// Highlights the active subpage in the relatednav (News)
	$("#related_nav ul li a").each(function() {
		if(loc.indexOf($(this).attr("href")) != -1) $(this).addClass("highlight");
	});
	
	// Highlights the active subpage in the relatednav (Events)
	$("#eventkalender .event_item").each(function() {
		if(loc.indexOf($(this).find("a").attr("href")) != -1) $(this).addClass("highlight");
	});
});