$(function(){
	$("#top_textbox div").css("opacity","0");
	var intTimer = setInterval("movetext()",6000);
	$("#top_textbox div:first").css("display","block");
	$("#top_textbox div:first").animate({
		marginLeft:"15px",
		opacity:"1"
	},1500,"swing" );
});
function movetext(){
		$("#top_textbox div:first").animate({
			marginLeft:"30px",
			opacity:"0"
		},1000,"swing",function(){
			$(this).css("display","none");
			$(this).css("marginLeft","0");
			$(this).appendTo("#top_textbox");
			$("#top_textbox div:first").css("display","block");
			$("#top_textbox div:first").animate({
				marginLeft:"15px",
				opacity:"1"
			},1500,"swing");
		});
}


