$(document).ready(function(){
	$(".string").clone().prependTo("#begun");
});

setTimeout("Next();", 4000);
var i = 0;
function Next() {
	if(i == 28 || i == 29) {
		if (i == 29) {

			$("#begun .string:first").animate({marginTop: "-=20px"}, "slow");
			$("#begun .string:first").remove();
			$("#begun .string").css("margin-top", "0px");
			i = 0;
			setTimeout("Next();", 4000);
		} else {
			$("#begun .string").clone().prependTo("#begun");
			$("#begun .string:last").css("margin-top", "20px");
			$("#begun .string").animate({marginTop: "-=20px"}, "slow");
			i++;
			setTimeout("Next();", 0);
		}
	} else {
		$("#begun .string").animate({marginTop: "-=20px"}, "slow");
		i++;
		setTimeout("Next();", 4000);
	}
}


