function featured_tab_state(tab_name){
	p=document.getElementById("featured_profit")
	e=document.getElementById("featured_event")
	he=document.getElementById("hr_event")
	hn=document.getElementById("hr_nonprof")
	if(tab_name=='featured_profit'){
	p.style.display="block";
	e.style.display="none";
	he.style.display="block";
	hn.style.display="none";
	
	}
	if(tab_name=='featured_event'){
	e.style.display="block";
	p.style.display="none";
	he.style.display="none";
	hn.style.display="block";
	}
	
}