﻿
var t = n = 0, count = $("#play_list a").size();
$(function() {
	$("#play_list a:not(:first-child)").hide();
	$("#play_text li:first-child").css({ 'color': '#fff', 'background': '#666', 'border': '0', 'font-weight': 'bold', 'font-size': '1.4em', 'line-height': '21px', 'height': '21px', 'width': '21px', 'margin': '0 6px' });		
	//$("#play_text li:first-child").addClass("handon");
	$("#play_text li").click(function() {
		var i = $(this).text() - 1;
		n = i;
		if (i >= count) return;
		$("#play_list a").filter(":visible").fadeOut(500).parent().children().eq(i).fadeIn(1000);				
		$(this).css({ 'color': '#fff', 'background': '#666', 'border': '0', 'font-weight': 'bold', 'font-size': '1.4em', 'line-height': '21px', 'height': '21px', 'width': '21px', 'margin': '0 6px' });
		$(this).siblings().css({'float': 'left','display': 'inline','color':'#fff','text-align':'center','line-height':'16px','width':'16px','height':'16px','font-family':'Arial','font-size':'.9em','cursor':'pointer','overflow':'hidden','margin':'3px 6px','background':'#666','font-weight': 'bold'});		
		//$(this).addClass("handon");		
		//$(this).siblings().addClass("handoff");
																																																																					});
	t = setInterval("showAuto()", 3000);
	$("#play").hover(function() { clearInterval(t) }, function() { t = setInterval("showAuto()", 3000); });
})

function showAuto() {
	n = n >= (count - 1) ? 0 : ++n;
	$("#play_text li").eq(n).trigger('click');
}