var menuid;

function showSub(menuid){
	var link = $('link-'+menuid)
	var answer = $(menuid);
	
	answer.toggle();
	answer.visible() ? link.addClassName('ratgeber-q-act') : link.removeClassName('ratgeber-q-act');
}

if(current_location_hash==undefined){
	var current_location_hash = {};
}
function checkIfFaqAnkerThenShow() {
	if (current_location_hash.netv_faq != window.location.hash) {
		current_location_hash.netv_faq = window.location.hash;
		var id = 'faq-uid-'+current_location_hash.netv_faq.substring(2);
		if($(id)!=null){
			showSub(id);
		}
	}
}

Event.observe(window, 'load', function() { 
	setInterval("checkIfFaqAnkerThenShow();", 500);
});
