// JavaScript Document
function Country(countryName, longitude, latitude){
 this.name = countryName;
 this.latitude = latitude;
 this.longitude = longitude;
} 

var countryList = new Array();

	countryList[0] = new Country ('Colombia', -73.60107643338482, 11.25403231725588);
	countryList[1] = new Country ('Dominican Republic', -70.30889750095805, 18.67951294152882);
	countryList[2] = new Country ('Ecuador', -81.37589446590795, -1.261942597403832);
	countryList[3] = new Country ('Honduras', -86.76682436701726, 15.46015469386808);	
	countryList[4] = new Country ('Peru', -80.20614035548351, -5.495469544906294);
	countryList[5] = new Country ('USA', -99.02850264592448,38.559372208701,0);
