if(typeof(my_pics) != "undefined")
{
	var page = 1;
	var perPage = 12;
	var output = '';
	var imgSrc;
	
	for(var i=0; i < my_pics.length; i++)
	{
		if(output.length == 0)
		{
			output += '<div class="panel" title="' + page + '"><div class="wrapper">';
		}
		thmbSrc = '/images/gallery/thumbs/' + my_pics[i].id + '.jpg';
		fullSrc = '/images/gallery/full/' + my_pics[i].id + '.jpg';
		
		output += '<a href="' + fullSrc + '" class="thickbox" rel="group"><img src="' + thmbSrc + '" /></a>';
			
		if( ((i+1)%perPage) == 0 || (i+1) == my_pics.length )
		{
			output += '</div></div>';
			document.write(output);
			output = '';
			page++;
		}
	}
}
