$(function()
{
	new TwitterFeed
	(
		"188354477",
		"6",
		function(text,tweet)
		{
			return "<p style=\"display: none;\">"+text+"</p>";
		},
		function(html)
		{
			$("#footer-twitter").html(html);
			$("#footer-twitter p:first").fadeIn("slow", function() { $("#footer-twitter").cycle({fx:'fade',timeout:6000,height:60,width:525}); });
		}
	);
});

