var menuid;
var current_location_hash = '';

function showSub(menuid){
	var link = $('link-'+menuid)
	var answer = $(menuid);
	
	answer.toggle();
	answer.visible() ? link.addClassName('txnetvfaq-act') : link.removeClassName('txnetvfaq-act');
}

function checkIfAnkerThenShowSub() {
	if (current_location_hash != window.location.hash) {
		current_location_hash = window.location.hash;
		var elelemt_coe = $$('div#'+current_location_hash.substring(1)+' div.dropcontent-content');
		if(elelemt_coe!=''){
			var open_menuid = Element.identify(elelemt_coe[0]);
			if($(open_menuid).visible()==false){
				showSub(open_menuid);
			}
		}
	}
}

Event.observe(window, 'load', function(){
	setInterval("checkIfAnkerThenShowSub();", 500);
});
