
	var curquote = 0;
	var blackout_quotes = ["Woo-hoo, great little app! My eyes can rest in dimness!  :-)","This is a lifesaver! Thank you!","I've been using Blackout 3 nearly every night. Great work."];
	var blackout_names = ["Josh O.","Dan R.","Will F."];
	
	var easybatch_quotes = ["Fantastic! Best batch program I've worked with.","Wow, EasyBatch is fast!","EasyBatch has saved me a LOT of time. Thank you!"];
	var easybatch_names = ["Alejandro V.","Ross F.","Linda R."];
	
		var milife_quotes = ["I've just downloaded MiLife and I must say: I'm totally in love with it!","Thank you for making such a well-thought out writing environment.","I really like MiLife, exactly what I was looking for!"];
	var milife_names = ["Marleen V.","Tanya S.","Katerina B."];
	
	function setBubbleQuote(which,whichapp)
	{
		var quoteBub;
		quoteBub = document.getElementById('sidebarQuoteBub');
		var theQuote;
		var theName;
		if(whichapp == "blackout")
		{
			theQuote = blackout_quotes[which];
			theName = blackout_names[which];
		}
		else if(whichapp == "easybatch")
		{
			theQuote = easybatch_quotes[which];
			theName = easybatch_names[which];
		}
		else if(whichapp == "milife")
		{
			theQuote = milife_quotes[which];
			theName = milife_names[which];
		}
		
		if(quoteBub)
		{
			quoteBub.innerHTML = "&#8220;"+theQuote+"&#8221;"+"<br><span style=\"font-style: normal;\">- "+theName+"</span>";
		}
	}
	
	function nextQuote(whichapp)
	{
		curquote = curquote+1;
		if(curquote > 2)
		{
			curquote = 0;
		}
		setBubbleQuote(curquote,whichapp);
	}
	
	function prevQuote(whichapp)
	{
		curquote = curquote-1;
		if(curquote < 0)
		{
			curquote = 2;
		}
		setBubbleQuote(curquote,whichapp);
	}
