function setUpParkLocations() {
	if (locations.length == 0) {
		locations.push(new ParkLocation(PARK_LOCATION, "Tayrona", 11.328638, -73.964261, "tayrona.jpg", "tayrona"));
		locations.push(new ParkLocation(PARK_LOCATION, "Los Colorados", 9.9357117, -75.097542, "colorados.jpg", "colorados"));
		locations.push(new ParkLocation(PARK_LOCATION, "Sierra Nevada", 11.038098, -73.925146, "sierra_nevada.jpg", "#sierra_nevada"));
		locations.push(new ParkLocation(PARK_LOCATION, "Rosario", 10.188137, -75.635133, "isla_baru.jpg", "corales_de_rosario"));
		locations.push(new ParkLocation(PARK_LOCATION, "Iguaque", 5.6883912, -73.433802, "iguaque.jpg", "iguaque"));
		locations.push(new ParkLocation(PARK_LOCATION, "Alto Rio Fonce", 5.922439, -73.031906, "alto_rio_fonce.jpg", "alto_rio_fonce"));
		locations.push(new ParkLocation(WILDLIFE_LOCATION, "Mompox", 9.2480753, -74.433042, "mompox.jpg", "mompox"));
		locations.push(new ParkLocation(HIKING_LOCATION, "Paramo Oceta", 5.7021896, -72.796159, "oceta.jpg", "paramo_oceta"));
		locations.push(new ParkLocation(HIKING_LOCATION, "Cundinamarca", 4.5977762, -74.085229, "monserrate.jpg", "cundinamarca"));
		locations.push(new ParkLocation(PARK_LOCATION, "Chingaza", 4.8259695, -73.822545, "siecha.jpg", "chingaza"));
		locations.push(new ParkLocation(PARK_LOCATION, "Cocuy", 6.383542, -72.30197, "cocuy.jpg", "cocuy"));
	}
}
