﻿function AutoScroll(obj){
	$(obj).find("ul:first").animate({
			marginTop:"-80px"
	},1000,function(){
			$(this).css({marginTop:"0px"}).find("li:first").appendTo(this);
	});
}

$(document).ready(function()
{
	$("#homepage_mv_list").jCarouselLite({
		   btnNext: "#relate_left",
		   btnPrev: "#relate_right",
		   speed: 600,
		   visible: 3,
		   scroll:1
       }); 

	setInterval('AutoScroll("#scrollcontent")',5000)
});
