
markerArray[BUS_STOPS] = [];
markerDataArray[BUS_STOPS] = [];
markerEnabledArray[BUS_STOPS] = [];

clickable[BUS_STOPS] = true;

//Transportation


/*---------------------------------------------------------------------------------*/
/*                      watterson bus stop marker - blm-nrml                       */
/*---------------------------------------------------------------------------------*/
    var watBusStopPoint = new GLatLng(40.50932103619607, -88.98777723312378)
    var watBusStopMark = new GMarker(watBusStopPoint, {icon:transportationIcon, title:"Watterson Bus Stop(Blm-nrml)"});
	markerArray[BUS_STOPS].push(watBusStopMark);
	markerDataArray[BUS_STOPS].push(["watBusStop", "<div class='infoBox'><h2>Bloomington-Normal Public Transit System</h2><p>Watterson Bus Stop<br><a href=javascript:showMoreInformation('/transportation/index.shtml?watBusStop')>More Information</a></p></div>"]);
	markerEnabledArray[BUS_STOPS].push(0);


/*---------------------------------------------------------------------------------*/
/*                      watterson bus stop marker - redbird ride                   */
/*---------------------------------------------------------------------------------*/
    var watBusStopPoint2 = new GLatLng(40.50932919333286, -88.98823857307434)
    var watBusStopMark2 = new GMarker(watBusStopPoint2, {icon:transportationIcon, title:"Watterson Bus Stop(Redbird Ride)"});
	markerArray[BUS_STOPS].push(watBusStopMark2);
	markerDataArray[BUS_STOPS].push(["watBusStop2", "<div class='infoBox'><h2>Redbird Ride</h2><p>Watterson Bus Stop<br><a href=javascript:showMoreInformation('/transportation/index.shtml?watBusStop2')>More Information</a></p></div>"]);
	markerEnabledArray[BUS_STOPS].push(0);


/*---------------------------------------------------------------------------------*/
/*                      tri towers bus stop marker - redbird ride                  */
/*---------------------------------------------------------------------------------*/
    var triBusStopPoint = new GLatLng(40.512233070981864, -88.99972915649414)
    var triBusStopMark = new GMarker(triBusStopPoint, {icon:transportationIcon, title:"Tri-Towers Bus Stop"});
	markerArray[BUS_STOPS].push(triBusStopMark);
	markerDataArray[BUS_STOPS].push(["triBusStop", "<div class='infoBox'><h2>Redbird Ride</h2><p>Tri-Towers Bus Stop<br><a href=javascript:showMoreInformation('/transportation/index.shtml?triBusStop')>More Information</a></p></div>"]);
	markerEnabledArray[BUS_STOPS].push(0);


/*---------------------------------------------------------------------------------*/
/*                      bone bus stop - peoria charter buses                       */
/*---------------------------------------------------------------------------------*/
    var boneBusStopPoint = new GLatLng(40.51148672117685, -88.99347960948944)
    var boneBusStopMark = new GMarker(boneBusStopPoint, {icon:transportationIcon, title:"Bone Bus Stop"});
	markerArray[BUS_STOPS].push(boneBusStopMark);
	markerDataArray[BUS_STOPS].push(["boneBusStop", "<div class='infoBox'><h2>Peoria Charter</h2><p>Bone Bus Stop<br><a href=javascript:showMoreInformation('/transportation/index.shtml?boneBusStop')>More Information</a></p></div>"]);
	markerEnabledArray[BUS_STOPS].push(0);


function busStops()
{
	if(layersChecked[BUS_STOPS] == true)
	{
		for(i = 0; i < markerArray[BUS_STOPS].length; i++)
		{
			markerEnabledArray[BUS_STOPS][i] = 3;
			enableMarker(BUS_STOPS, i);	
		}

		if(!layersChecked[TRANSPORTATION_NUM] && !printMap && !mapLoad)
		{
			if (map.getZoom()>16)
			{
				map.setZoom(16);
			}
			map.panTo(layerCenterArray[TRANSPORTATION_NUM]);
		}
	}
	else
	{
		for(i = 0; i < markerArray[BUS_STOPS].length; i++)
		{
			markerEnabledArray[BUS_STOPS][i] = 0;
			disableMarker(BUS_STOPS, i);
		}
	}

}
