Friday, February 5, 2010

SNAG!

Errrgggghh!  hit a glitch already and not even off the ground.   On my way to stock up on travel stuff, I had to detour to Florida for my mom's emergency surgery.  Florida though is probably a great place to buy mosquito nets.

Tuesday, February 2, 2010

The Countdown: 2Weeks,2Days,2Go


This is it. This is the blog site. I managed to create a place where I will be able to keep connected to all of you (and you to me, if you so choose), while in Africa. I will post my adventures (and misadventures) here as well as my photos.

the address is Focus:3rd World
Wish me luck
p.s. "Daftari," the Blog name, means "Notebook" in Swahili
 
t.nextSibling;
 var childNext = null;
 var classes = '';

 var dateHeaders = false;
 while (child != null) {
 if (child.className == 'date-header') {
 dateHeaders = true;
 break;
 }
 child = child.nextSibling;
 }

 child = first.nextSibling;

 while (child != null) {
 if (child.className != null) {
 if (child.className.match('date-header') != null) {
 childNext = child.nextSibling;
 postContainer.insertBefore(child, first);
 first = child;
 child = childNext;
 } else if (child.className.match('post hentry') != null) {
 childNext = child.nextSibling;
 if (!dateHeaders) {
 postContainer.insertBefore(child, first);
 first = child;
 } else {
 postContainer.insertBefore(child, first.nextSibling);
 }
 child = childNext;
 } else {
 child = child.nextSibling;
 }
 } else {
 child = child.nextSibling;
 }
 }