var ShopListOldBgColor;
var ShopListNewBgColor = "#B3D234";

function SetShopListBgColor(sender)
{
	ShopListOldBgColor = sender.style.backgroundColor;
	sender.style.backgroundColor = ShopListNewBgColor;

	if(map != null)
	{
		map.setCenter(latlngs[parseInt(sender.attributes["latlngIndex"].value)]);
		map.openInfoWindowHtml(latlngs[parseInt(sender.attributes["latlngIndex"].value)], sender.attributes["infoHtml"].value);
	}
}

function ResetShopListBgColor(sender)
{
	sender.style.backgroundColor = ShopListOldBgColor;
	if(map != null)
	{
		map.closeInfoWindow();
	}
}
