var t = n = 0, count=4;
 count= $("#play_list a").size()
 $("#play_list a:not(:first-child)").hide();
 $("#slide-text li").eq(0).css({"background":"#7f0019","color":"#fff","font-weight":"bolder"})
 $("#slide-text li").mouseover(function() {
  var i = $(this).text() - 1;
  n = i;
  if (i >= count) return;
  $("#play_list a").filter(":visible").hide().parent().children().eq(i).show();
  $(this).css({"background":"#7f0019","color":"#fff","font-weight":"bolder"}).siblings().css({"background":"#fff","color":"#7f0019","font-weight":"normal"});
 });
 t = setInterval("showAuto()", 10000);
 $("#slide").hover(function(){clearInterval(t)}, function(){t = setInterval("showAuto()", 10000);});
function showAuto()
{
 n = n >= (count - 1) ? 0 : ++n;
 $("#slide-text li").eq(n).trigger('mouseover');
}
