var dropcontent_act_id='';

function dropcontent_toggle(id){
	if(document.getElementById('dropable-'+id+'-body').style.display=='block'){
		dropcontent_close(id);
	}else{
		dropcontent_open(id);
	}
}

function dropcontent_open(id){
	if(dropcontent_act_id!=''){
		dropcontent_close(dropcontent_act_id);
	}
	document.getElementById('dropable-'+id+'-body').style.display='block';
	document.getElementById('dropable-'+id).className='droptitle_act';
	dropcontent_act_id=id;
}
function dropcontent_close(id){
	document.getElementById('dropable-'+id+'-body').style.display='none';
	document.getElementById('dropable-'+id).className='droptitle';
}
window.onload=function(){
	if(document.location.href.indexOf("#")!=-1){
		var parts=document.location.href.split("#");
		var id=parts[1].substring(1);
		if(document.getElementById('dropable-'+id+'-body')){
			dropcontent_open(id);
		}
	}
};
