jQuery.noConflict();

jQuery(document).ready(function() {
	jQuery(".tweet").tweet({
		username: "bprgroep",
		count: 1,
		loading_text: "loading tweets..."
	});
	jQuery(".tweet").animate ({marginLeft: "100%"}, 1)
		.animate({ 
		marginLeft: "-200%"
	 }, 25000, 'linear', function(){ goAgain(); } );
});

function goAgain() {
	jQuery(".tweet").animate({ 
		marginLeft: "100%",
		easing: "easein"
	 }, 1, function(){ goOneMoreTime(); } );
}
function goOneMoreTime() {
	jQuery(".tweet").animate({ 
		marginLeft: "-150%"
	 }, 25000, 'linear', function(){ goAgain(); } );
}
