ImgA = new Array();
ImgA[0]="../01/01.jpg"
ImgA[1]="../01/02.jpg"
ImgA[2]="../01/03.jpg"
ImgA[3]="../01/04.jpg"
ImgA[4]="../01/05.jpg"
ImgA[5]="../01/06.jpg"
ImgA[6]="../01/07.jpg"


Text = new Array();
Text[0] = "Collection #01<br />&quot;She needs a treasure&quot;<br /><br /><br />Necklace Queen / Unglazed White<br />Porcelain, Leather<br />About 13.5 x 13cm<br /><br />Limited to 50 pieces<br />Available";
Text[1] = "Collection #01<br />&quot;She needs a treasure&quot;<br /><br /><br />Necklace Princess / Unglazed White<br />Porcelain, Leather<br />About 5.5 x 10.7cm<br /><br />Limited to 50 pieces<br />Available";
Text[2] = "Collection #01<br />&quot;She needs a treasure&quot;<br /><br /><br />Bracelet / Unglazed White<br />Porcelain, Leather<br />About 2.7 x 5cm<br /><br />Limited to 50 pieces<br />Available";
Text[3] = "Collection #01<br />&quot;She needs a treasure&quot;<br /><br /><br />Ring / Unglazed White<br />Porcelain<br />H to P1/2<br /><br />Limited to 50 pieces<br />Sold out";
Text[4] = "Collection #01<br />&quot;She needs a treasure&quot;<br /><br /><br />Goblet / Unglazed White<br />Porcelain<br />About 15 x 7.5 x 7.5cm<br /><br />Limited to 50 pieces<br />Partly available";
Text[5] = "Collection #01<br />&quot;She needs a treasure&quot;<br /><br /><br />Compote / Unglazed White<br />Porcelain<br />About 15 x 15 x 2cm<br /><br />Limited to 50 pieces<br />Available";
Text[6] = "Collection #01<br />&quot;She needs a treasure&quot;<br /><br /><br />Lamp Shade / Unglazed White<br />Porcelain<br />About 17.5 x 17.5 x 17.5cm<br /><br />Limited to 50 pieces / Made to order<br />Sold out";

DImgs = new Array()
for (i=0 ; i<ImgA.length ; i++){
DImgs[i] = new Image()
DImgs[i].src = ImgA[i]
}


num = 0;
function Swap(n) {
document.getElementById("chg-img").src = DImgs[n].src;
document.getElementById("text-inner").innerHTML = Text[n];
num = n;
}
