var gSelectedPhotoListItem = null;

function SelectPhotoListItem(photo_list_item)
{
	if(gSelectedPhotoListItem)
		gSelectedPhotoListItem.className = "";

	gSelectedPhotoListItem = photo_list_item;

	if(gSelectedPhotoListItem)
	{
		gSelectedPhotoListItem.className = "selected";

		myGroup.showMarker(gSelectedPhotoListItem.id);
	}
}

function SelectPhotoIndex(photo_index)
{
	if(gSelectedPhotoListItem)
		gSelectedPhotoListItem.className = "";

	gSelectedPhotoListItem = document.getElementById(photo_index);

	if(gSelectedPhotoListItem)
	{
		gSelectedPhotoListItem.className = "selected";

		myGroup.showMarker(gSelectedPhotoListItem.id);
	}
}

function InfoWindowOpen()
{
	return;
	for(var i = 0; i < myGroup.markers.length; i++)
	{
		if(myGroup.markers[i] == overlay)
		{
			if(gSelectedPhotoListItem)
				gSelectedPhotoListItem.className = "";

			gSelectedPhotoListItem = document.getElementById(i);

			if(gSelectedPhotoListItem)
			{
				gSelectedPhotoListItem.className = "selected";

				myGroup.showMarker(gSelectedPhotoListItem.id);
			}
		}
	}
}