var bookArray 			= new Array();
var illustrationArray 	= new Array();
var caricatureArray 	= new Array();
var otherArtsArray 		= new Array();
var sketchesArray		= new Array();

function record(thumbnail, bigImage, title, material, customer) {

	this.thumbnail = thumbnail;
	this.bigImage = bigImage;
	this.title = title;
	this.material = material;
	this.customer = customer;

}