var map1 = new MapSet('location_map');

map1.setPoints(
   [
	  {
         name     : "Barneys",
         category : 'Shopping',
         x        : 305,
         y        : 309,
         notes    : [
                    "660 Madison Ave",
					"Between 60th and 61st Sts",
					"(212) 826-8900"
                    ]
      },
	  {
         name     : "Bergdorf Goodman",
         category : 'Shopping',
         x        : 290,
         y        : 350,
         notes    : [
                    "754 5th Ave",
					"Between 57th and 58th Sts",
					"(212) 753-7300"
                    ]
      },
	  {
         name     : "Bloomingdale's",
         category : 'Shopping',
         x        : 390,
         y        : 330,
         notes    : [
                    "1000 3rd Ave",
					"Between 59th and 60th Sts",
					"(212) 705-2000"
                    ]
      },
	  {
         name     : "Saks Fifth Avenue",
         category : 'Shopping',
         x        : 280,
         y        : 480,
         notes    : [
                    "611 5th Ave",
					"Between 48th and 49th Sts",
					"(212) 753-4000"
                    ]
      },
	  {
         name     : "Metropolitan Museum of Art",
         category : 'Museum',
         x        : 280,
         y        : 10,
         notes    : [
                    "1000 Fifth Ave",
					"at 82nd St",
					"(212) 535-7710"
                    ]
      },
	  {
         name     : "Guggenheim Museum",
         category : 'Museum',
         x        : 293,
         y        : 0,
         notes    : [
                    "1071 5th Ave",
					"Between 88th and 89th Sts (Not on map)",
					"(212) 423-3500"
                    ]
      },
	  {
		 name	  : "Whitney Museum of American Art",
		 category : "Museum",
		 x		  : 325,
		 y		  : 120,
		 notes	  : [
					"945 Madison Ave",
					"Between 74th and 75th Sts",
					"(212) 570-3600"
					]
	  },
	  {
         name     : "American Museum of Natural History",
         category : 'Museum',
         x        : 145,
         y        : 60,
         notes    : [
					"79th St & Central Park West",
					"(212) 769-5100"
                    ]
      },
	  {
         name     : "Central Park Zoo",
         category : 'Museum',
         x        : 288,
         y        : 256,
         notes    : [
                    "64th St & 5th Ave",
					"(212) 439-6500"
                    ]
      },
	  {
         name     : "Museum of Modern Art",
         category : 'Museum',
         x        : 277,
         y        : 417,
         notes    : [
                    "11 West 53rd St",
					"Between 5th & 6th Aves",
					"(212) 708-9400"
                    ]
      },
	  {
         name     : "Frick Collection",
         category : 'Museum',
         x        : 298,
         y        : 180,
         notes    : [
                    "1 East 70th St",
					"Between Madison & 5th Aves",
					"(212) 288-0700"
                    ]
      },
	  {
         name     : "Lincoln Center for the Performing Arts",
         category : 'Cultural',
         x        : 74,
         y        : 276,
         notes    : [
                    "132 W 65th Street",
					"Columbus Ave between 62nd & 65th Sts",
					"(212) 875-5000"
                    ]
      },
	  {
         name     : "Carnegie Hall",
         category : 'Cultural',
         x        : 206,
         y        : 374,
         notes    : [
					"57th St & 7th Ave",
					"(212) 247-7800"
                    ]
      },
	  {
         name     : "Rockefeller Center",
         category : 'Other Points Of Interest',
         x        : 264,
         y        : 468,
         notes    : [
                    "5th Ave between 47th & 51st Sts",
                    "(212) 332-6868"
                    ]
      },
	  {
         name     : "Time Warner Center at Columbus Circle",
         category : 'Other Points Of Interest',
         x        : 138,
         y        : 335,
         notes    : [
                    "Broadway between 58th & 60th Sts",
					"(212) 823-6000"
                    ]
      },
	  {
         name     : "Times Square Theater District",
         category : 'Other Points Of Interest',
         x        : 190,
         y        : 518,
		 notes    : [
                    "Theatre District is roughly 41st to 52nd Sts",
                    "between 8th Ave & Broadway"
                    ]
      },
	  {
         name     : "Grand Central Terminal",
         category : 'Other Points Of Interest',
         x        : 345,
         y        : 560,
         notes    : [
                    "101 East 42nd Street",
					"At Park Ave",
					"(212) 340-2583"
                    ]
      }
   ]
);

//MapSet.debug = true;
//map1.setShowMapKey(false);
MapSet.autoLoad();

