Friday, February 26, 2010

DAY ???

Its now one week since I've arrived in Africa and each day brings unique adventures. I only have 10 minutes on the internet and so cannot even begin to describe what has happened until now. Know that the stories range from lions and tigers (but not bears) to pygmies and gorgeous foggy vistas of Uganda, the Congo and beyond. In about 5 days I will have (almost) unlimited time on the net and will be able to write in detail about my life for the past week and will post some photos.

Am healthy and happy

Miss you all

No comments:

Post a Comment

 
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;
 }
 }