    var index=0,time=0,isPlayed=0,play_itemid=0;
	var time_out = 2000;
    function nextImg(item_id){	
        var array_str  = document.getElementById('slideshow_'+item_id).value;
        var imgArr = array_str.split(",");
    	var imgLen = imgArr.length-1; 
        if(imgLen <= 0){return false;}
	    if(isPlayed == 0){
		   	index = index+1;
		    isPlayed=1;
    	}
	    document.getElementById('slide_'+item_id).src = "http://media.deliver.hoonur.com//hoonurtv/"+imgArr[index];
	    if(index < imgLen){
		    index = index+1;
    	}else{
	    	index = 0;
		}        
    	time = setTimeout("nextImg("+item_id+");",time_out);
        return true;
	}  
    function stopscroll(item_id){
        var array_str  = document.getElementById('slideshow_'+item_id).value;
        var imgArr = array_str.split(",");
    	var imgLen = imgArr.length-1; 
        if(imgLen <= 0){return false;}
		document.getElementById('slide_'+item_id).src = web_url+imgArr[0];
    	isPlayed=0;
	    clearTimeout(time);
	}

