function flyout(divId)
{
	
	//alert("in flyout | divId: " + divId);
	
	var currDiv = document.getElementById("ibox_wrapper_"+divId)
	var otherDiv="neighborhoods";
	
	//alert("currDiv:" +currDiv)
	
	
	if (divId =="neighborhoods") {otherDiv="cuisine";}
	//alert("otherDiv:" +otherDiv)
	
	var openDiv = document.getElementById("ibox_wrapper_"+otherDiv)
	
	openDiv.style.display = 'none'; 
	currDiv.style.display = 'block'; 
	
	
}

function hideDiv(divId){
	
	var currDiv = document.getElementById("ibox_wrapper_"+divId)
	currDiv.style.display = 'none'; 
	
	
	
}
