
   var bannerTexts = new Array();  
   bannerTexts[0] = 'Medzio, a New Free Mobile Health Application for the iPhone - <a href="http://adam.com/all-news-and-articles-details.aspx?id=83" style="color:#99cc66">read more</a>';  
   bannerTexts[1] = 'Medzio, a New Free Mobile Health Application for the iPhone - <a href="http://adam.com/all-news-and-articles-details.aspx?id=83" style="color:#99cc66">read more</a>';  
   
   var i = 0;
$.timer(5000, function (timer) {
if (i == bannerTexts.length) {
i = 0;
}
$('#banner').fadeTo(1000, 0,
function() {
$(this).html(bannerTexts[i]);
}).fadeTo(1000,1,
function() {
i++;
});
});

$('#banner').fadeTo(1000, 0,
function() {
// Pick random text from array
var text = bannerTexts[Math.floor(Math.random()*bannerTexts.length)];
$(this).html(text);
}).fadeTo(1000,1, function() {
i++;
});




