var imageCount = 0;

function fill_images() {

	document.getElementById('scrollcontent').style.width='850px';
		  
	init_images();
	
	
	
	window.setInterval('addimage()',5000);
	
	
	window.setInterval('scrollleft()',100);
	document.getElementById('scrollcontent').style.marginLeft='0px';
}

function init_images() {
	for(i=0;i<11;i++) {
		addimage();
	}
}

function scrollleft() {

	document.getElementById('scrollcontent').style.marginLeft=(parseInt(document.getElementById('scrollcontent').style.marginLeft)-1)+'px';
	
}

function addimage() {
	var a = document.createElement('a');
	a.href='pages/detail.php?id='+ids[imageCount%10];
		
	
	var image = document.createElement('img');
	
	image.src=files[imageCount%10];
	
	a.appendChild(image);
	
	document.getElementById('scrollcontent').appendChild(a);
	//alert(document.getElementById('scrollcontent').style.width);
	document.getElementById('scrollcontent').style.width=(parseInt(document.getElementById('scrollcontent').style.width)+80)+'px';
	
	$("#scrollcontent a").fancybox({
				'overlayShow':	true,
				'overlayOpacity':0.5,
				'zoomSpeedIn':	0, 
				'zoomSpeedOut':	0,
				'frameWidth':882,
				'frameHeight':600
		  });
	

	imageCount++;
}