	var comments = new Array('YOGA with ZETTIE-PRIVATE CLASSES: taught at your home, park or beach. Your choice!','YOGA with ZETTIE-GROUP: Class fee is the same for 1 or 10, grab your friends and let&acute;s flow.','YOGA with ZETTIE-CORPORATE: I teach at your place of business. Increased Productivity.','<strong>COUPLES classes-YOMA</strong> Fusion=Yoga/Massage for strength & connection between couples.', 'BOOTCAMP BALANCE classes: 2 or 3x a week for 45 mins, Special Rate', 'WINTER discount: 25&#37; off 4 booked classes (1.15-1.30 HR)', 'FIRST PRIVATE CLASS: 25&#37; OFF (1.15-1.30 HR)', '<a href="http://itunes.apple.com/us/album/prana-fusion/id345827021" target="_blank" rel="bookmark">BUY "Prana Fusion", Music CD at iTunes, written by: Bob Dylan, Tamal, Zettie</a>');
	var current = 0;
	
	var duration = 5000;  /* 1000 millisecond fade = 1 sec */
	var steps = 40;       /* number of opacity intervals   */
	var delay = 1000;     /* 5 sec delay before fading out */

/* set the opacity of the element (between 0.0 and 1.0) */
function setOpacity(level) {
	var element = document.getElementById('newsfeed');
	element.style.opacity = level;
	element.style.MozOpacity = level;
	element.style.KhtmlOpacity = level;
	element.style.filter = "alpha(opacity=" + (level * 100) + ");";
}

/* rotate and create timers to fade the newsfeed in */
function fadeIn(){
	var element = document.getElementById('newsfeed');
	element.innerHTML = comments[current];
	current = (current + 1) % comments.length;
	for (i = 0; i <= 1; i = i + 0.05) {
	setTimeout("setOpacity(" + i + ")", i * delay);
 }
 setTimeout("fadeOut()", duration);
}

/* create timers to fade the newsfeed away */
function fadeOut() {
 for (i = 0; i <= 1; i = i + 0.05) {
	 setTimeout("setOpacity(" + (1 - i) + ")", i * delay);
 }
 setTimeout("fadeIn()", delay);
}

