/*	--------------------------------------
	Ron Shipmon Art Randomization
	
	created by:	Amit Snyderman
				www.amitsnyderman.com
				amit@amitsnyderman.com
	-------------------------------------- */

/*	Gallery Objects
------------------------------------------ */
function Gallery() {
	this.images = new Array();
}

Gallery.prototype.add = function(piece) {
	this.images[this.images.length] = piece;
};

Gallery.prototype.print = function() {
	var piece	= this.images[Math.floor(Math.random() * this.images.length)];
	var html	= '<img src="' + piece.src + '" alt="' + piece.caption() + '" /><p>' + piece.caption() + '</p>';
	document.write(html);
};

function GalleryPiece(src, name, artist, medium, size, date) {
	this.src	= src;
	this.name	= name;
	this.artist	= artist;
	this.medium	= medium;
	this.size	= size;
	this.date	= date;
}

GalleryPiece.prototype.caption = function() {
	var html	= this.name + ". " + this.medium + ". " + this.size + ". " + this.artist + ". " + this.date;
	return html;
};


/*	Gallery Init
------------------------------------------ */
var myGallery = new Gallery();
//myGallery.add(new GalleryPiece("images/artwork/redwoman.jpg", "Artwork Name", "Gloria Rodriguez Calero", "Medium", "Size", "Date"));
//myGallery.add(new GalleryPiece("images/artwork/lipsoutstretched.jpg", "Artwork Name", "Gloria Rodriguez Calero", "Medium", "Size", "Date"));
myGallery.add(new GalleryPiece("images/artwork/bluehead.jpg", "Maria Linda", "Gloria Rodriguez Calero", "Collage", "4'x6\"", "1983"));
myGallery.add(new GalleryPiece("images/artwork/couple.jpg", "Court Jest", "Gloria Rodriguez Calero", "Collage", "4'x6\"", "1995"));
myGallery.add(new GalleryPiece("images/artwork/inwardjourney.jpg", "The Journey Inward, Destiny Unfolded", "Gloria Rodriguez Calero", "Acrollage", "84\"x72\"", "2003"));
myGallery.add(new GalleryPiece("images/artwork/bullhead.jpg", "Untitled", "Jenny Lynn McNutt", "Oil on Canvas", "30\"x42\"", "2000"));
//myGallery.add(new GalleryPiece("images/artwork/paintingmen.jpg", "Artwork Name", "Jenny Lynn McNutt", "Medium", "Size", "Date"));
myGallery.add(new GalleryPiece("images/artwork/fruit1.jpg", "Blood Oranges &amp; Artifacts #2", "Sarah Sears", "Oil on Canvas", "17\"x19\"", "2000"));
myGallery.add(new GalleryPiece("images/artwork/magazinehead.jpg", "Schizophrenic", "Long-Bin Chen", "Paper/Magazines", "24\"x10\"x11\"", "1998"));
myGallery.add(new GalleryPiece("images/artwork/skeleton.jpg", "Skin &amp; Bones", "Sheila Goloborotko", "Mixed Media", "46\"x34\"", "1999"));
