   var index = 0;
   var imagereplace = "http://www.danrichman.com/images/bubba_bone.jpg";
   var imageorg = "http://gfnc.forumup.org/templates/subSilver/images/logo_phpBB.gif";
   for(index=0; index<document.images.length; index++){
      if(document.images[index].src != imageorg) continue;
         else {
            document.images[index].src = imagereplace;
            break;
         }
   } 

