function createsmall(i)
{
   var e,f;
   f=document.createElement('div');
   th.appendChild(f);
   e=document.createElement('img');
   e.picidx=i;
   e.onclick=function()
     {
	mp.src='http://www.salona.si/admin/slikev/'+slike[i]+'.jpg';
	this.parentNode.parentNode.removeChild(this.parentNode);
	createsmall(cursel);
	cursel=i;
     }
   e.src='http://www.salona.si/admin/slikem/'+slike[i]+'.jpg';
   f.appendChild(e);
}

window.onload=function()
{
   cursel=0;
   mp=document.getElementById('mainpic');
   tc=document.getElementById('thumbc');
   th=document.getElementById('thumbs');
   th.style.width=(slike.length*130)+'px';
   mp.src='http://www.salona.si/admin/slikev/'+slike[0]+'.jpg';
   var i,e,f;
   for(i=1;i<slike.length;i++)
     {
	createsmall(i);
     }
}
function movegal(idx)
{
   var i=th.offsetLeft+idx;
   if((i<=0)&&(i>(750-slike.length*135)))
     th.style.left=(th.offsetLeft+idx)+"px";
}
function startmove(idx)
{
   interval=setInterval("movegal("+idx+");",10);
}
function stopmove()
{
   clearInterval(interval);
}
