// define new object cat

function cat(size, title, date) 
{
this.size = size;
this.title = title;
this.date = date;
};

// list cat[c] = new cat("Size", "Title", "Date");
// declare c

cat[01] = new cat("90 x 35cm", "Seis Barriles (six barrels) (smaller painting)", "(1992)");
cat[02] = new cat("102 x 59cm", "Nude Study", "(1988)");
cat[03] = new cat("115 x 83cm", "University College Hospital, London", "(1987)");
cat[04] = new cat("85 x 110cm", "Wine and Walnuts", "(1992)");
cat[05] = new cat("110 x 200cm", "Six Barrels", "(1992)");
cat[06] = new cat("100 x 200cm", "La Puta (The prostitute)", "(1992)");
cat[07] = new cat("80 x 100cm", "Es Cap Negra", "(1992)");
cat[08] = new cat("75 x102cm", "Cuidadella", "(1991)");
cat[09] = new cat("45 x 70cm", "Eggs, garlic, jug and cheese", "(1992)");
cat[10] = new cat("85 x 105cm", "The Pomegranates", "(1992)");
cat[11] = new cat("90 x 80cm", "Dried Salted Sardines", "(1992)");
cat[12] = new cat("100 x 65cm", "Sewing Machine", "(1992)");
cat[13] = new cat("90 x 85cm", "Bread, Eggs and Cheese", "(1992)");
cat[14] = new cat("65 x 56cm", "Eggs, Bread and Candlestick", "(1991)");
cat[15] = new cat("75 x 103cm", "Cabbages", "(1993)");
cat[16] = new cat("65 x 50cm", "Peces de Miguel Angel", "(1992)");
cat[17] = new cat("100 x 65cm", "Silver Bowl", "(1991)");
cat[18] = new cat("40 x 55cm", "Las Manzanas (Apples)", "1991");
cat[19] = new cat("80 x 65cm", "Barrels Details", "1992");
cat[20] = new cat("80 x 65cm", "Wine and Flowers", "1992");
cat[21] = new cat("100 x 150cm", "Botes de Carlos (Carlos' Jars)", "1993");
cat[22] = new cat("55 x 70cm", "Los Higos do Trepuco (Figs from Trepuco)", "1992");
cat[23] = new cat("100 x 85 cm", "El Barril  (the barrel)", "1992");
cat[24] = new cat("110 x 95 cm", "Kettle with eggs, garlic and peppers", "1992");
cat[25] = new cat("100 x 80cm", "Red and green peppers with bread and eggs", "1992");
cat[26] = new cat("80 x 65 cm", "Plums, apples with copper kettle", "1992");
cat[27] = new cat("85 x 70 cm", "Botella de Juan (Juan's bottle)", "1992");
cat[28] = new cat("65 x 50cm", "Grapes detail", "1992");


