$(document).ready(function() {
	var type = $(document).getUrlParam("type");
	var act = $(document).getUrlParam("act");
	var sub = $(document).getUrlParam("sub");
	
	if (type == "bedrijven") {
		act = "wie-zijn-wij";
	}
	
	if (sub) {
    	$("#submenu").find("a").each(function() {
    		var href = $(this).attr("href");
			// Ergotherapie
    		if (act.indexOf("ergotherapie") >= 0 && href.indexOf("ergotherapie") >= 0) {
    			$(this).addClass("active");
    		}
			// Mensendieck
			else if (act.indexOf("mensendieck") >= 0 && href.indexOf("mensendieck") >= 0) {
    			$(this).addClass("active");
    		}
			// Dunnewolt
			else if (act.indexOf("dunnewolt") >= 0 && href.indexOf("dunnewolt") >= 0) {
    			$(this).addClass("active");
    		}
    	});
        act = "#";
	}
	
	$("#mainmenu").find("a").each(function() {
		var href = $(this).attr("href");
		if (href == act || href == "?act=" + act) {
			$(this).addClass("active");
		}
	});
});