﻿var autoStartSeconds = 20;
var autoStartCansel = false;

function autoStartPlay(){
	//alert(autoStartCansel);
	if (autoStartSeconds>0 && !autoStartCansel){
		document.getElementById('autostart-seconds').innerHTML = autoStartSeconds;
		document.getElementById('autostart-cansel').style.visibility = 'visible';
		autoStartSeconds--;
		setTimeout(autoStartPlay, 1000);
	}
	else{
		document.getElementById('autostart-text').style.display = 'none';
		var exp = hs.getExpander();
		if (exp && exp.slideshow && autoStartSeconds==0){
			exp.slideshow.play();
		}
	}
}

function autoStartDoCansel(){
	alert('Cansel');
	autoStartCansel = true;
}

document.body.onload = autoStartPlay;
