function setupBstirValues() {bstirFadeTitles[0] = "i was looking for a free desktop rss reader to manage my feeds, as ..."; bstirFadeLinks[0] = "http://expressionsinsolitude.blogspot.com/2006/06/i-was-looking-for-free-desktop-rss.html"; bstirFadeSnippets[0] = "Tue, 13 Jun 2006 <br> it can sync up your feeds with your bloglines account. it has an elegant interface, multitude of options, several vie..."; bstirFadeTitles[1] = "DESTINATION US: ONLY VISA POWER"; bstirFadeLinks[1] = "http://expressionsinsolitude.blogspot.com/2004/06/destination-us-only-visa-power.html"; bstirFadeSnippets[1] = "Tue, 22 Jun 2004 <br> But here's the problem: Young people want American education and technology more than ever, but fewer want to wear ou..."; bstirFadeTitles[2] = "IBM - THE INNOVATOR ALWAYS"; bstirFadeLinks[2] = "http://expressionsinsolitude.blogspot.com/2004/06/ibm-innovator-always.html"; bstirFadeSnippets[2] = "Thu, 17 Jun 2004 <br> I came across  this article (click here)as I was browsing some tech-news at CNET. Well... this is a good article that..."; bstirFadeTitles[3] = "LOOKING UP AT THE DOWNTOWN..."; bstirFadeLinks[3] = "http://expressionsinsolitude.blogspot.com/2003/12/looking-up-at-downtown.html"; bstirFadeSnippets[3] = "Wed, 10 Dec 2003 <br> From here, we boarded a train and had our way to Plano Downtown... then we got into a bus to reach Collin Creek Mall...."; bstirFadeTitles[4] = "BE YOURSELF - The only way to enjoy LIFE"; bstirFadeLinks[4] = "http://expressionsinsolitude.blogspot.com/2003/10/be-yourself-only-way-to-enjoy-life.html"; bstirFadeSnippets[4] = "Mon, 27 Oct 2003 <br> On following this principle, we will soon experience the total freedom to enjoy life (but ofcourse, adhered to the so..."; }

	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();

	