// JavaScript Document
<!--
$(document).ready(function() {
	setInterval("Auto_Msg()", 7000);
})
$(window).load(function(){
	
});
function Auto_Msg(){
	$($('.msg_item').get(0)).animate({height:"hide", opacity:"0"}, 500, function(){
		$('.msg_list').append($(this));
		$($('.msg_item').get($('.msg_item').length - 1)).animate({height:"show", opacity:"1"}, 0);
	});
}
