function change_slideshow(cursor)
{
	var next;
	var count=fpcArray.length;
	
	if(cursor!=null)
	{
		next=cursor;
	}
	else
	{
		next=fpcCurrent+1;
	}	
	
	if(next>(count-1))
		next=0;
			
	$('fpc_star'+fpcCurrent).src='/images/star_yellow.gif';
	$('fpc_star'+next).src='/images/anim_large_star.gif';
	$('fpc_image').style.background="transparent url("+fpcArray[next]+")";
	
	fpcCurrent=next;
	
	if(cursor==null)
	{
		TimeID=setTimeout('change_slideshow()',refresh);
	}
}
