/**
 * @author sgorshechnikov
 */

function load_images(id ,position){
	$.get('/ajax/admin/pageGallery/gallery/' + id + '/' + position +'/', function(xml){
		j = 0;
		test = "<table><tr>";
		$('item', xml).each(function(){
				if(j==0)
				 	test += "<td style='padding-left:40px;vertical-align:top;text-align:center;'><img id='image" + j + "'  src='/media/images/gallery/" + $(this).children("name").text() + "' /><h1>" + $(this).children("comment").text() + "</h1></td>";
				else
				 	test += "<td style='text-align:center; vertical-align:top;'><img id='image" + j + "' src='/media/images/gallery/" + $(this).children("name").text() + "' /><h1>" + $(this).children("comment").text() + "</h1></td>";				
				j++;
		});
		test += "</tr></table>";		
		$("#tape").html(test);				
		var tapeWidth=0;		
		for(i=0;i<j;i++){
		}
		if (oldp != position) {
			document.getElementById('link' + position).style.visibility = "hidden";
			if (oldp != -1) 
				document.getElementById('link' + oldp).style.visibility = "visible";
			oldp = position;
		}
	});
}