<!-- Begin
//prvo ide ucitavanje slicica

if (document.images) {
	i61off = new Image();
	i61off.src = "images/oliva_61_off.jpg";
	i62off = new Image();
	i62off.src = "images/oliva_62_off.jpg";
	i63off = new Image();
	i63off.src = "images/oliva_63_off.jpg";
	i64off = new Image();
	i64off.src = "images/oliva_64_off.jpg";
	i65off = new Image();
	i65off.src = "images/oliva_65_off.jpg";
	i66off = new Image();
	i66off.src = "images/oliva_66_off.jpg";

	i61on = new Image();
	i61on.src = "images/oliva_61_on.jpg";
	i62on = new Image();
	i62on.src = "images/oliva_62_on.jpg";
	i63on = new Image();
	i63on.src = "images/oliva_63_on.jpg";
	i64on = new Image();
	i64on.src = "images/oliva_64_on.jpg";
	i65on = new Image();
	i65on.src = "images/oliva_65_on.jpg";
	i66on = new Image();
	i66on.src = "images/oliva_66_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 -->
