// JavaScript Document<script type="text/javascript">
var timerInSec = 6000
var currentTimer = 0
var isPlay = false;
var ss
function startSlide(ct,pid) {
	clearTimeout(ss)
	if (isPlay == true) {
		endSlide()
	} else {
		runSlide(ct,pid)
	}
	
}
function endSlide() {
	document.getElementById('slidebutton').src = '../images/baib/btn_play.gif'
	document.getElementById('slidewrapper').style.visibility = 'hidden'
	document.getElementById('slideprogress').style.backgroundColor = '#ff0000'
	document.getElementById('slideprogress').style.width = 0 + 'px'
	currentTimer = 0
	isPlay = false;
}
function doSlide(ct,pid) {
	window.location = "http://www.sheckys.com/bestbeauty/2008/product-detail.asp?ct="+ct+"&pid="+pid+"&slide=yes";
}
function runSlide(ct,pid) {
	isPlay = true;
	document.getElementById('slidebutton').src = '../images/baib/btn_stop.gif'
	document.getElementById('slidewrapper').style.visibility = 'visible'
	document.getElementById('slideprogress').style.backgroundColor = '#ff0000'
	document.getElementById('slideprogress').style.width = (currentTimer / timerInSec) * 100 + 'px'
	if (currentTimer >= timerInSec)
		setTimeout(function() {doSlide(ct,pid)}, 500);
	else
		ss=setTimeout(function() {runSlide(ct,pid)},200);	
	currentTimer = currentTimer + 200
}
