var _currentTab=1;
function switchVouch(a)
{
	for(var b=1;b<=4;b++)
		if(b==a){
			jq("#photo_order"+b).addClass("cur");
			jq("#vouch_photo"+b).fadeIn("slow");
			_currentTab=a;
		}else{
			jq("#photo_order"+b).removeClass("cur");
			jq("#vouch_photo"+b).fadeOut("slow");
		}
}
function clearAuto(){
	clearInterval(autoStart)
}
function setAuto(){
	autoStart=setInterval("auto(_currentTab)",4E3)
}
function auto(){
	_currentTab++;
	if(_currentTab>4)_currentTab=1;
	switchVouch(_currentTab)
}
setAuto();
