
$(function(){
	var $this = $("dl#my");
		var scrollTimer;
		$this.hover(function(){
			  clearInterval(scrollTimer);
		 },function(){
		   scrollTimer = setInterval(function(){
						 autoscroll( $this );
					}, 2000 );
		}).trigger("mouseleave");
		 
	});
	function autoscroll(obj){
		 obj.animate({marginTop:"-40px"},1000,function(){
		   $(this).css("margin-top","0").children("dd:first").insertAfter("dl#my dd:last");
		 });
	};
