<!-- 
function AkxlCC_CalculateCoffeeBadge46()
{
	var date = new Date();
	var secondsElapsed = Math.floor(date.getTime()/1000);
	secondsElapsed -= 1104537600;
	var mL = secondsElapsed * 0.009529248475;
	var cups = mL * 0.00422675281093222;
	var html = '<div style="float: right; width: 95px; font-weight: normal; font-size: 10px; line-height: 14px; color: #000000; text-align: right; padding: 5px 4px 0 0;"><div style="font-weight: bold; font-size: 14px;">' + cups.toFixed(4) + '</div>cups of coffee</div>';
	try{
        var ccelem = document.getElementById('__ccincludediv46badge');
		ccelem.style.display = 'block';
		ccelem.style.width = '130px';
		ccelem.style.height = '40px';
		ccelem.style.backgroundImage = 'url(http://www.akxl.net/coffeecounter/badge/bg.png)';
		ccelem.style.backgroundRepeat = 'no-repeat';
		ccelem.style.backgroundPosition = 'center center';
		ccelem.innerHTML = html;
	} catch (e) { }
}
setInterval("AkxlCC_CalculateCoffeeBadge46()", 1000);
//-->
