function selectThingsToDo(i,block_id){	
	//selectHotelBlock(block_id);
	centerOn(i);
}
/*
30-01-08: I removed this function from being called because the var current_block_id is undefined, and it was causing the centerOn() function in the previous function from being called.  I removed this function from use, ran some tests, and everything appeared to be functioning correctly. -- jarred@chicago.com
*/
function selectHotelBlock(block_id){
	if(current_block_id > 0){
		current_block = document.getElementById("ThingsToDoHotelBlock_" + current_block_id);  
		current_block.style.display = 'none';
	}
	block = document.getElementById("ThingsToDoHotelBlock_" + block_id);  
	current_block_id = block_id;
	block.style.display = 'block';
}