function showOver(id){
	if($('map_button_'+id)){
    	$('map_button_'+id).style.color='#000000';
    	$('map_button_'+id).style.backgroundColor='#FF0000';
	}
}

function showOut(id){
	if($('map_button_'+id)){
    	$('map_button_'+id).style.color='#FFFFFF';
    	$('map_button_'+id).style.backgroundColor='#000000';
	}
}
