            var t = n = 0, count = $("#play_list a").size();
			var m = o = 0, count1 = $("#play_list1 a").size();
            $(function(){	
                $("#play_list a:not(:first-child)").hide();
				$("#play_list1 a:not(:first-child)").hide();
				$("#play_info p:not(:first-child)").hide();
				$("#play_info1 p:not(:first-child)").hide();
                $("#play_text li:first-child").css({"background":"#0f9c99",'color':'#ffffff','padding':'2px 6px'});
				$("#play_text1 li:first-child").css({"background":"#0f9c99",'color':'#ffffff','padding':'2px 6px'});
                $("#play_info").click(function(){window.open($("#play_list a:first-child").attr('href'), "_blank")});
				$("#play_info1").click(function(){window.open($("#play_list1 a:first-child").attr('href'), "_blank")});
                $("#play_text li").click(function() {
                    var i = $(this).text() - 1;
                    n = i;
                    if (i >= count) return;
                    $("#play_info").html($("#play_list a").eq(i).find("img").attr('alt'));
					$("#play_info p").filter(":visible").hide().parent().children().eq(i).show();
                    $("#play_info").unbind().click(function(){window.open($("#play_list a").eq(i).attr('href'), "_blank")})
                    $("#play_list a").filter(":visible").fadeOut(500).parent().children().eq(i).fadeIn(1000);
                    $(this).css({"background":"#0f9c99",'color':'#ffffff','padding':'2px 6px'}).siblings().css({"background":"#404040",'color':'#ffffff','padding':'0 3px'});
                });
				$("#play_text1 li").click(function() {
                    var i1 = $(this).text() - 1;
                    o = i1;
                    if (i1 >= count1) return;
                    $("#play_info1").html($("#play_list1 a").eq(i1).find("img").attr('alt'));
					$("#play_info1 p").filter(":visible").hide().parent().children().eq(i1).show();
                    $("#play_info1").unbind().click(function(){window.open($("#play_list1 a").eq(i1).attr('href'), "_blank")})
                    $("#play_list1 a").filter(":visible").fadeOut(500).parent().children().eq(i1).fadeIn(1000);
                    $(this).css({"background":"#0f9c99",'color':'#ffffff','padding':'2px 6px'}).siblings().css({"background":"#404040",'color':'#ffffff','padding':'0 3px'});
                });
                t = setInterval("showAuto()", 4200);
                $("#play").hover(function(){clearInterval(t)}, function(){t = setInterval("showAuto()", 4200);});
				m = setInterval("showAutoa()", 4200);
                $("#play1").hover(function(){clearInterval(m)}, function(){m = setInterval("showAutoa()", 4200);});
            });
            function showAuto()
            {
                n = n >= (count - 1) ? 0 : ++n;
                $("#play_text li").eq(n).trigger('click');
            }
			function showAutoa()
            {
                o = o >= (count1 - 1) ? 0 : ++o;
                $("#play_text1 li").eq(o).trigger('click');
            }
