function showFlower(e)
{
	e.nextSibling.nextSibling.style.visibility = "visible";
}

function hideFlower(e)
{
	e.nextSibling.nextSibling.style.visibility = "hidden";
}