// JavaScript Document

var map;
var clat = 40.73;
var clng = -73.9966;
var startzoom = 14;

var markers = [
{
'latitude': 40.729512,
'longitude': -73.991742,
'text': '440 Studios<br />440 Lafayette Street<br /><a href="http://www.nytheatre.com/nytheatre/venue.php?t=440">http://www.nytheatre.com/nytheatre/venue.php?t=440</a>'
},
{
'latitude': 40.7257497310638,
'longitude': -73.9941676519811,
'text': 'Lafayette Street Theatre<br />45 Bleecker Street<br /><a href="http://www.nytheatre.com/nytheatre/venue.php?t=45below">http://www.nytheatre.com/nytheatre/venue.php?t=45below</a>'
},
{
'latitude': 40.7330910209566,
'longitude': -74.0030971448869,
'text': 'Actors Playhouse<br />100 Seventh Avenue South<br /><a href="http://www.nytheatre.com/nytheatre/venue.php?t=actors">http://www.nytheatre.com/nytheatre/venue.php?t=actors</a>'
},
{
'latitude': 40.7314775884151,
'longitude': -74.0050333645195,
'text': 'Cherry Lane Theatre<br />38 Commerce Street<br /><a href="http://www.nytheatre.com/nytheatre/venue.php?t=chlane">http://www.nytheatre.com/nytheatre/venue.php?t=chlane</a><br />Cherry Lane Theatre - Studio<br />38 Commerce Street<br /><a href="http://www.nytheatre.com/nytheatre/venue.php?t=clstudio">http://www.nytheatre.com/nytheatre/venue.php?t=clstudio</a>'
},
{
'latitude': 40.7236363179982,
'longitude': -73.9834488742054,
'text': 'Connelly Theatre<br />220 East 4th Street<br /><a href="http://www.nytheatre.com/nytheatre/venue.php?t=connelly">http://www.nytheatre.com/nytheatre/venue.php?t=connelly</a>'
},
{
'latitude': 40.72059,
'longitude': -73.99254,
'text': 'Dixon Place<br />161 Chrystie Street<br /><a href="http://www.nytheatre.com/nytheatre/venue.php?t=dixon">http://www.nytheatre.com/nytheatre/venue.php?t=dixon</a>'
},
{
'latitude': 40.7188869640231,
'longitude': -73.9861500263214,
'text': 'Flamboyan Theater<br />107 Suffolk Street<br /><a href="http://www.nytheatre.com/nytheatre/venue.php?t=flam">http://www.nytheatre.com/nytheatre/venue.php?t=flam</a><br />Milagro Theater<br />107 Suffolk Street<br /><a href="http://www.nytheatre.com/nytheatre/venue.php?t=milagro">http://www.nytheatre.com/nytheatre/venue.php?t=milagro</a>'
},
{
'latitude': 40.724938,
'longitude': -74.004667,
'text': 'HERE Arts Center - Mainstage<br />145 Sixth Avenue<br /><a href="http://www.nytheatre.com/nytheatre/venue.php?t=here">http://www.nytheatre.com/nytheatre/venue.php?t=here</a><br />HERE Arts Center - Dorothy B. Williams Theatre<br />145 Sixth Avenue<br /><a href="http://www.nytheatre.com/nytheatre/venue.php?t=heredbw">http://www.nytheatre.com/nytheatre/venue.php?t=heredbw</a>'
},
{
'latitude': 40.732649,
'longitude': -73.998268,
'text': 'Manhattan Theatre Source<br />177 MacDougall Street<br /><a href="http://www.nytheatre.com/nytheatre/venue.php?t=mts">http://www.nytheatre.com/nytheatre/venue.php?t=mts</a>'
},
{
'latitude': 40.730144,
'longitude': -74.000889,
'text': 'Minetta Lane Theatre<br />18 Minetta Lane<br /><a href="http://www.nytheatre.com/nytheatre/venue.php?t=minetta">http://www.nytheatre.com/nytheatre/venue.php?t=minetta</a>'
},
{
'latitude': 40.7299678400159,
'longitude': -74.0004373993725,
'text': 'Players Theatre<br />115 MacDougal Street<br /><a href="http://www.nytheatre.com/nytheatre/venue.php?t=players">http://www.nytheatre.com/nytheatre/venue.php?t=players</a><br />Players Loft<br />115 MacDougal Street<br /><a href="http://www.nytheatre.com/nytheatre/venue.php?t=ploft">http://www.nytheatre.com/nytheatre/venue.php?t=ploft</a>'
},
{
'latitude': 40.7263176050037,
'longitude': -74.0044197253883,
'text': 'Soho Playhouse<br />15 Vandam Street<br /><a href="http://www.nytheatre.com/nytheatre/venue.php?t=soho">http://www.nytheatre.com/nytheatre/venue.php?t=soho</a>'
},
{
'latitude': 40.7362,
'longitude': -74.0086,
'text': 'The New School for Drama Theater<br />151 Bank Street<br /><a href="http://www.nytheatre.com/nytheatre/venue.php?t=newsch">http://www.nytheatre.com/nytheatre/venue.php?t=newsch</a><br />Cherry Pit<br />155 Bank Street<br /><a href="http://www.nytheatre.com/nytheatre/venue.php?t=bank">http://www.nytheatre.com/nytheatre/venue.php?t=bank</a>'
},

];

function plotVenue(lat, lng, desc) {
		var marker = new GMarker(new GLatLng(lat, lng));

		GEvent.addListener(marker, 'click',
			function() {
				marker.openInfoWindowHtml(desc);
				}
			);
		map.addOverlay(marker);
      }

 function init() {
     if (GBrowserIsCompatible()) {
	    map = new GMap2(document.getElementById("map"));
		map.addControl(new GSmallMapControl());
		map.setCenter(new GLatLng(clat, clng), startzoom);
		
		for(id in markers) {
			plotVenue(markers[id].latitude, markers[id].longitude, markers[id].text);
	    }
 	}
 }
 
window.onload = init;
window.onunload = GUnload;