			function AutoScroll(obj)
			{ 
			    $(obj).find("ul:first").animate(
			    { 
			        marginTop:"-25px" 
			    },500,function()
			            { 
			                $(this).css({marginTop:"0px"}).find("li:first").appendTo(this); 
			            }); 
			} 
			$(document).ready(function()
			{ 
				setInterval('AutoScroll("#scrollDiv")',4000);
				$(".tbl_zydm").bind("mouseleave",hide_all);
				TB.widget.SimpleSlide.decoration('SlidePlayer', {eventType:'mouse', effect:'scroll'});
			}); 
			
			function show_detail(who,did)
			{
				var pos=$(who).position();
				$(".tbl_zydm").hide();
				$("#tbl_"+did).show().css("left",pos.left+$(who).width()).css("top",pos.top);
				$(document.body).click(hide_all);
			}
			function hide_all()
			{
				$(".tbl_zydm").hide();
				$(document.body).removeAttr('onclick');
			}	
