function setupBstirValues() {bstirFadeTitles[0] = "missing: 1 x social life"; bstirFadeLinks[0] = "http://metime.blogdrive.com/archive/355.html"; bstirFadeSnippets[0] = "Sat, 21 Ju <br> do you have a life? because i'm not sure where i left mine and if you're not using yours at the moment, i'd like to b..."; bstirFadeTitles[1] = "worst working mommy moment"; bstirFadeLinks[1] = "http://metime.blogdrive.com/archive/350.html"; bstirFadeSnippets[1] = "Wed, 11 Ju <br> hannah, chattering away at the back of the car after school:&quot;and then we went to ball skillllllllllllllllllllls.&quot;me: ..."; bstirFadeTitles[2] = "grateful mommy"; bstirFadeLinks[2] = "http://metime.blogdrive.com/archive/262.html"; bstirFadeSnippets[2] = "Tue, 25 Ju <br> ok, i think i'm getting it now: telling people about my problems can actually help. huh. who knew? thank you thank yo..."; bstirFadeTitles[3] = "and now for something completely different"; bstirFadeLinks[3] = "http://metime.blogdrive.com/archive/352.html"; bstirFadeSnippets[3] = "Tue, 17 Ju <br> been a lot of negativity about my mothering skills around here in the last few posts. for your enjoyment, here's some..."; bstirFadeTitles[4] = "apparently, i have a church voice"; bstirFadeLinks[4] = "http://metime.blogdrive.com/archive/356.html"; bstirFadeSnippets[4] = "Mon, 23 Ju <br> whenever i'm feeling a little too smug and self-confident, i can always rely on my children to knock me down a peg or..."; }

        var bstir_FadeOut = 255;
        var bstir_FadeIn=0;
        var bstir_Fade = 0;
        var bstir_FadeStep = 3;
        var bstir_FadeWait = 10000;
        var bstir_bFadeOut = true;
        var bstir_iFadeInterval;

        var bstirFadeLinks;
        var bstirFadeTitles;
        var bstirFadeSnippets;
        var bstirFadeCursor = 0;
        var bstirFadeMax;
        var bstirTitleElement;
        var bstirSnippetElement;

        function startBstir() {
          bstirTitleElement = document.getElementById("bstir_title");
          bstirSnippetElement = document.getElementById("bstir_snippet");
          bstir_iFadeInterval = setInterval(showBstirItem, 10);
          bstirFadeLinks = new Array();
          bstirFadeTitles = new Array();
          bstirFadeSnippets = new Array();
          setupBstirValues();
          bstirFadeMax = bstirFadeLinks.length-1;
          setBstirItem();
        }

        function setBstirItem() {
          bstirTitleElement.innerHTML = bstirFadeTitles[bstirFadeCursor];
          bstirTitleElement.href = bstirFadeLinks[bstirFadeCursor];
          bstirSnippetElement.innerHTML = bstirFadeSnippets[bstirFadeCursor];
        }

        function showBstirItem() {
          if (bstir_bFadeOut) {
            bstir_Fade+=bstir_FadeStep;
            if (bstir_Fade>bstir_FadeOut) {
                  bstirNext();
            }
          } else {
            bstir_Fade-=bstir_FadeStep;
            if (bstir_Fade<bstir_FadeIn) {
              clearInterval(bstir_iFadeInterval);
              setTimeout(bstirResume, bstir_FadeWait);
              bstir_bFadeOut=true;
            }
          }
          if ((bstir_Fade<bstir_FadeOut)&&(bstir_Fade>bstir_FadeIn)){
            bstirTitleElement.style.color = "#" + bstirToHex(bstir_Fade);
            bstirSnippetElement.style.color = "#" + bstirToHex(bstir_Fade);
          }
        }

        function bstirResume() {
          bstir_iFadeInterval = setInterval(showBstirItem, 10);
        }

        function bstirNext() {
                bstirFadeCursor++;
            if (bstirFadeCursor>bstirFadeMax)
              bstirFadeCursor=0;
            setBstirItem();
                bstir_bFadeOut = false;
        }

        function bstirToHex(strValue) {
          try {
            var result= (parseInt(strValue).toString(16));

            while (result.length !=2)
                    result= ("0" +result);
            result = result + result + result;
            return result.toUpperCase();
          }
          catch(e){}
        }

        startBstir();

        