// JavaScript Document
var newsStories = new Array();
var newsLinks = new Array();

newsStories[0] = "iGuitarKit 1.1 is released on the iTunes App Store";
newsLinks[0] = "http://itunes.com/apps/iguitarkit";

newsStories[1] = "iShareTunes 1.1 is released on the iTunes App Store";
newsLinks[1] = "http://itunes.com/apps/isharetunes";

newsStories[2] = "Locatr 1.0 is awaiting launch on the iTunes App Store";
newsLinks[2] = "locatr.php";

var newsNdx = 0;
function showNews(){
	
	var html = "<a href='"+newsLinks[newsNdx%newsStories.length]+"'>" + newsStories[newsNdx%newsStories.length] + "</a>";

	$("#news").fadeOut("slow",function(){
		$(this).html(html);
		$(this).fadeIn("slow",function(){
			++newsNdx;
			setTimeout(showNews,5000);
		});
	});	
}