function readMoreIllustrations( method, limit, offset, illustratorId, categoryId )
{
	var data = "";
	data += "method="+method;
	data += "&limit="+limit;
	data += "&offset="+offset;
	data += "&illustratorId="+illustratorId;
	data += "&categoryId="+categoryId;
	
	jQuery.post(base+"service.rithuset.php", data, function (data, textStatus) {
		
		var total = 0;
		
		for ( var i=0; i < data.length; ++i )
		{
			var c = data[i];
			insertIllustration( c.id, c.small_image_url, c.description, c.href );
			
			++total;
		}
		
		if ( total != limit )
			jQuery(".show-more-link a").hide();
		
		reInitScroll();
		
	}, "json");
}

function insertIllustration( id, small_image_url, description, href )
{
	var cell = document.createElement("div");
	jQuery(cell).attr("className", "small-illustration");
	jQuery(cell).html(
	'<a href="'+href+'">'+
		'<img src="'+base+'files/small/Rithuset '+small_image_url+'" alt="'+description+'" height="100"/>'+
	'</a>');
	
	jQuery("#content-list-container").append(cell);
}