if (document.images) {
	var imagesMebel = new Object();
	imagesMebel["nocekent"] = new Image(481, 289);
	imagesMebel["nocekent"].src = "img/colors/mebel-nocekent.jpg";
	imagesMebel["sakura"] = new Image(481, 289);
	imagesMebel["sakura"].src = "img/colors/mebel-sakura.jpg";
	imagesMebel["amati"] = new Image(481, 289);
	imagesMebel["amati"].src = "img/colors/mebel-amati.jpg";
	imagesMebel["cherry27"] = new Image(481, 289);
	imagesMebel["cherry27"].src = "img/colors/mebel-cherry27.jpg";
	imagesMebel["westminster"] = new Image(481, 289);
	imagesMebel["westminster"].src = "img/colors/color-westminster.gif";
	
	var imagesNormal = new Object();
	imagesNormal["nocekent"] = new Image(101, 50);
	imagesNormal["nocekent"].src = "img/colors/nocekent.jpg";
	imagesNormal["sakura"] = new Image(101, 50);
	imagesNormal["sakura"].src = "img/colors/sakura.jpg";
	imagesNormal["amati"] = new Image(101, 50);
	imagesNormal["amati"].src = "img/colors/amati.jpg";
	imagesNormal["cherry27"] = new Image(101, 50);
	imagesNormal["cherry27"].src = "img/colors/cherry27.jpg";
	imagesNormal["westminster"] = new Image(101, 50);
	imagesNormal["westminster"].src = "img/colors/westminster.jpg";
	
	var imagesHilite = new Object();
	imagesHilite["nocekent"] = new Image(101, 50);
	imagesHilite["nocekent"].src = "img/colors/nocekent-on.jpg";
	imagesHilite["sakura"] = new Image(101, 50);
	imagesHilite["sakura"].src = "img/colors/sakura-on.jpg";
	imagesHilite["amati"] = new Image(101, 50);
	imagesHilite["amati"].src = "img/colors/amati-on.jpg";
	imagesHilite["cherry27"] = new Image(101, 50);
	imagesHilite["cherry27"].src = "img/colors/cherry27-on.jpg";
	imagesHilite["westminster"] = new Image(101, 50);
	imagesHilite["westminster"].src = "img/colors/westminster-on.jpg";
}

function setImage(imgName, type) {
	if (document.images) {
		if (type == "hilite") {
			document.images[imgName].src = imagesHilite[imgName].src;
			return true;
		} else if (type == "normal") {
			document.images[imgName].src = imagesNormal[imgName].src;
			return true;
		}
	}
	return false;
}

var nocekent = new Image();
var sakura = new Image();
var amati = new Image();
var cherry27 = new Image();
var westminster = new Image();

nocekent.src = "img/colors/mebel-nocekent.jpg";
sakura.src = "img/colors/mebel-sakura.jpg";
amati.src = "img/colors/mebel-amati.jpg";
cherry27.src = "img/colors/mebel-cherry27.jpg";
westminster.src = "img/colors/mebel-westminster.jpg";

function changeimg(picimage) {
	eval("document['mebel'].src = " + picimage + ".src");
}

var colnocekent = new Image();
var colsakura = new Image();
var colamati = new Image();
var colcherry27 = new Image();
var colwestminster = new Image();

colnocekent.src = "img/colors/color-nocekent.gif";
colsakura.src = "img/colors/color-sakura.gif";
colamati.src = "img/colors/color-amati.gif";
colcherry27.src = "img/colors/color-cherry27.gif";
colwestminster.src = "img/colors/color-westminster.gif";

function changecolor(piccolor) {
	eval("document['color'].src = " + piccolor + ".src");
}