<!-- Begin
//prvo ide ucitavanje slicica

if (document.images) {
	i09off = new Image();
	i09off.src = "images/oliva_09_off.jpg";
	i10off = new Image();
	i10off.src = "images/oliva_10_off.jpg";
	i11off = new Image();
	i11off.src = "images/oliva_11_off.jpg";
	i12off = new Image();
	i12off.src = "images/oliva_12_off.jpg";

	i09on = new Image();
	i09on.src = "images/oliva_09_on.jpg";
	i10on = new Image();
	i10on.src = "images/oliva_10_on.jpg";
	i11on = new Image();
	i11on.src = "images/oliva_11_on.jpg";
	i12on = new Image();
	i12on.src = "images/oliva_12_on.jpg";
}

function imgOn(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "on.src");
	}
}

function imgOff(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "off.src"); 
	}
}

//  End -->
