window.onload = function() {
//	var itemon = document.getElementById("itemON")
	var itemon = document.getElementById("itemON");
	itemon.style.background = 'url(/images/flower.png)';
	itemon.style.backgroundRepeat = 'no-repeat';
	//alert(itemon.style.background);
}

function showIMG(index) {
	for (i=1; i<=6; i++) {
		try {
			document.getElementById("bigimg" + i).style.display = 'none';
		} catch(err) {}
	}
	document.getElementById("bigimg"+index).style.display = 'block';
}

