if (document.images){

the_1 = new Image()
the_1.src = "images/AMGC60.jpg"
the_2 = new Image()
the_2.src = "images/AMGC61.jpg"
the_3 = new Image()
the_3.src = "images/AMGC62.jpg"
the_4 = new Image()
the_4.src = "images/AMGC63.jpg"
the_5 = new Image()
the_5.src = "images/AMGC64.jpg"
the_6 = new Image()
the_6.src = "images/AMGC65.jpg"

cached=1;
}

var artworks = new Array();
artworks[1]  = new jpArtwork("Like Moths To A Flame", "AMGC60", "Limited Edition Print of 295", "Image Size: 17¾ x 24&quot;", "£450");
artworks[2]  = new jpArtwork("Dominoes Nite", "AMGC61", "Limited Edition Print of 295", "Image Size: 17¾ x 24&quot;", "£450");
artworks[3]  = new jpArtwork("A Home From Home", "AMGC62", "Limited Edition Print of 295", "Image Size: 17¾ x 24&quot;", "£450");
artworks[4]  = new jpArtwork("Norries Bar", "AMGC63", "Limited Edition Print of 295", "Image Size: 17¾ x 24&quot;", "£450");
artworks[5]  = new jpArtwork("Read All About It", "AMGC64", "Limited Edition Print of 295", "Image Size: 20 x 16¾&quot;", "£395");
artworks[6]  = new jpArtwork("Lounge Lizard", "AMGC65", "Limited Edition Print of 295", "Image Size: 16 x 20&quot;", "£395");

function jpArtwork(title, code, le, size, price){
	this.title = title;
	this.code = code;
	this.le = le;
	this.size = size;
	this.price = price;
}

function setBigImage(whichImage){
	if (cached==1) {
		lineOff = "images/" + artworks[whichImage].code + ".jpg";
		document ['bigImage'].src= lineOff;

		var theArtDesc = document.getElementById("artDesc");

		var descHTML = "";
		descHTML += "<strong>" + artworks[whichImage].title + "</strong><br />";
		descHTML += artworks[whichImage].le + "<br />";
		descHTML += artworks[whichImage].size + "<br />";
		descHTML += artworks[whichImage].price + "<br />";
		

		theArtDesc.innerHTML = descHTML;

	}
}

function clearBigImage(whichImage){
	if (cached==1) {
//		lineOff = eval("the_off.src");
//		document.getElementById("s"+whichImage).src = lineOff;
	}
}

