var curr_index = 0;
var orig_src = '';
var timer;
var thumbs = new Array();
//thumbs['thumb1'] = new Array(); thumbs['thumb1'] = ["http://localhost/pornoflake.com/thumbs/19032008/1/1.jpg", "http://localhost/pornoflake.com/thumbs/19032008/1/2.jpg", "http://localhost/pornoflake.com/thumbs/19032008/1/3.jpg", "http://localhost/pornoflake.com/thumbs/19032008/1/4.jpg", "http://localhost/pornoflake.com/thumbs/19032008/1/5.jpg", "http://localhost/pornoflake.com/thumbs/19032008/1/6.jpg", "http://localhost/pornoflake.com/thumbs/19032008/1/7.jpg"];

function StartRotate(thumb_id)
{
	var thumb_arr = thumbs[thumb_id];
	if (thumb_arr.length == 1)
	{
		document.getElementById('nothumbs_'+thumb_id).innerHTML = 'NO PREVIEW';
		document.getElementById('nothumbs_'+thumb_id).style.display = 'block';
		orig_src = document.getElementById(thumb_id).src;
	}
	else
	{
		orig_src = document.getElementById(thumb_id).src;
		ChangeThumb(thumb_id);
		timer = setInterval("ChangeThumb('"+thumb_id+"')",500 );	
	}
	
}

function ChangeThumb(thumb_id)
{
	var thumb_arr = thumbs[thumb_id];
	var thumb_count = thumb_arr.length;	

	document.getElementById(thumb_id).src = thumb_arr[curr_index];
	
	curr_index++;
	if (curr_index >= thumb_count)
		curr_index = 0;
}

function StopRotate(thumb_id)
{
	curr_index = 0;
	var thumb_arr = thumbs[thumb_id];
	
	var orig_index = 0;
	
	document.getElementById(thumb_id).src = orig_src;
	
		
	//document.getElementById(thumb_id).src = thumb_arr[0];
	document.getElementById('nothumbs_'+thumb_id).style.display = 'none';
		
	
	
	clearInterval(timer);
}
