ImgA = new Array();
ImgA[3]="../simplemold/04.jpg"
ImgA[2]="../simplemold/03.jpg"
ImgA[1]="../simplemold/02.jpg"
ImgA[0]="../simplemold/01.jpg"

Text = new Array();
Text[3] = "Simple Mold<br /><br /><br />Dish<br />Porcelain<br /><br />These dishes are also included in the Simple Mold Series. However, unlike the others, here the clay itself is the motif. Upon first impression, you can see the unique ripples the clay has left behind on each dish, giving each dish its own character. Naturally, we can't make the same one twice.<br /><br />Available";
Text[2] = "Simple Mold<br /><br /><br />Necklace :Garden<br />Porcelain, Leather<br /><br />Available";
Text[1] = "Simple Mold<br /><br /><br />Necklace :Alphabet<br />Porcelain, Polyester<br /><br />Available";
Text[0] = "Simple Mold<br /><br /><br />Necklace :Key, Cameo, Pearl, Chain<br />Porcelain, Polyester<br /><br />Partly available";

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;
}
