//图片自动播放
var theTimer;
function do_auto()
{
	var arrNext=document.getElementsByName("hid_next");
	if(arrNext&&arrNext[0]&&arrNext[0].value!="")
	{
		window.location=""+arrNext[0].value+"?method=auto&mode=auto";
	}
	else
	{
		do_stop();
	}
}

function do_start()
{
	theTimer=setTimeout("do_auto()", 8000);
}

function do_stop()
{
	clearTimeout(theTimer);
}

function do_next()
{
	var arrNext=document.getElementsByName("hid_next");
	if(arrNext&&arrNext[0]&&arrNext[0].value!="")
	{
		window.location=""+arrNext[0].value;
	}
}