

function FindNamedObject(name)
{
	if(window.navigator.appname == "Microsoft Internet Explorer")
	{
		return document.all[name];
	}
	else
	{
		return document.getElementById(name);
	}

}

// This is the OnMouseOver handler
function MoveFlowerLeft(name)
{
	// First, find the object by this name
	var flower = FindNamedObject(name);

	// Now, move the flower to a left coordinate of zero
	MoveToX(flower, 0);
}

// This is the OnMouseOut handler
function MoveFlowerRight(name)
{
	// First, find the object by this name
	var flower = FindNamedObject(name);

	// Now, move the flower to a left coordinate of 129, shamelessly copied from
	// the CSS file.  TODO: Is there a way to not hardcode this?
	MoveToX(flower, 129);
}