function twitterroll_init() {
	$("#sociallinks").hide();
	//setTimeout(twitterroll_show,22500); // wait until the Flash movie plays (about 22.5 seconds)
	setTimeout(twitterroll_show,225); // show the twitter feed immediately
}

function twitterroll_show() {
	$("#sociallinks .tweets li:first-child").addClass("active");
	$("#sociallinks .tweets").show();
	$("#sociallinks").fadeIn();
	setInterval(twitterroll_start_swap,10000);
}

function twitterroll_start_swap() {
	if ($("#sociallinks .tweets li:last-child").hasClass("active")) {
		$("#sociallinks .tweets li:first-child").addClass("nextup");
	} else {
		$("#sociallinks .tweets li.active").next("li").addClass("nextup");
	}
	$("#sociallinks .tweets li.active").fadeOut('fast',twitterroll_end_swap);
}

function twitterroll_end_swap() {
	$("#sociallinks .tweets li.active").removeClass("active");
	$("#sociallinks .tweets li.nextup").fadeIn().addClass("active").removeClass("nextup");
}


