loadPictureInfo = function(id, dest)
{
	$.ajax({
		url: baseUrl+'index;gallery;ajaxPictureInfo,id.'+id,
		cache: false,
		success: function(html){
			if (html)
			{	
				$("#"+dest).html(html);
			}
		}
	});
}
