var map;
var openMessage;
var locationList = new Array(
	{lat:47.597685, lng:-122.334073, title: "Pioneer Square Condo", add1: "526 1st Ave South", add2: "Seattle, WA 98104", link: "suites-seattle-pioneer-square.html"},
	{lat:47.614721, lng:-122.347877, title: "Belltown Suites", add1: "2415 Second Avenue", add2: "Seattle, WA 98121", link: "suites-seattle-belltown-court.html"},
	{lat:47.613267, lng:-122.344382, title: "Belltown Grandview Condo", add1: "2201 Second Avenue", add2: "Seattle, WA 98121", link: "suites-seattle-belltown-court.html"},
	{lat:47.628954, lng:-122.348077, title: "Prospect Suites", add1: "414 Prospect Street", add2: "Seattle, WA 98109", link: "suites-seattle-prospect.html"},
	{lat:47.626876, lng:-122.345016, title: "Seattle Center Suites", add1: "807 6th Avenue North", add2: "Seattle, WA 98109", link: "suites-seattle-center.html"},
	{lat:47.628669, lng:-122.344952, title: "Seaward Suites", add1: "1016 6th Ave North", add2: "Seattle, WA 98109", link: "suites-seattle-seaward.html"},
	{lat:47.637094, lng:-122.32626, title: "Eastlake Suites", add1: "2007 Eastlake Ave E", add2: "Seattle, WA 98102", link: "suites-seattle-eastlake.html"},
	{lat:47.648653, lng:-122.356957, title: "Dravus Court", add1: "15 Dravus Street", add2: "Seattle, WA 98109", link: "suites-seattle-dravus-court.html"},
	{lat:47.654557, lng:-122.373579, title: "Emerson Suites", add1: "3807 13th Ave West", add2: "Seattle, WA 98119", link: "suites-seattle-emerson.html"},
	{lat:47.666333, lng:-122.37889, title: "Ballard Suites", add1: "5216 17th Ave Nortwest", add2: "Seattle, WA 98107", link: "suites-seattle-ballard-suites.html"},
	{lat:47.657983, lng:-122.352072, title: "Dayton Guest House", add1: "4208 Dayton Avenue North", add2: "Seattle, WA 98103", link: "suites-seattle-dayton-guest-house.html"},
	{lat:47.620836, lng:-122.326547, title: "East Thomas Suites", add1: "403 East Thomas St", add2: "Seattle, WA 98102", link: "suites-seattle-east-thomas.html"},
	{lat:47.609216, lng:-122.329309, title: "Royal Manor Suites", add1: "1120 8th Avenue, Ste 1103", add2: "Seattle, WA 98101", link: "suites-seattle-royal-manor.html"},
	{lat:47.585974, lng:-122.301827, title: "Judkins Park Townhome", add1: "1911 - 24th Ave S", add2: "Seattle, WA 98144", link: "townhomes-seattle-judkins-park.html"},
	{lat:47.608634, lng:-122.34377, title: "Waterfront Landings", add1: "1900 Alaskan Way #110", add2: "Seattle, WA 98101", link: "condos-seattle-waterfront-landings.html"},
	{lat:47.547797, lng:-122.387631, title: "Seattle West Suites", add1: "6021 California Ave SW #A", add2: "Seattle, WA 98136", link: "suites-west-seattle.html"},
	{lat:47.595916, lng:-122.287096, title: "Leschi Waterfront Condos", add1: "720 Lakeside Ave South", add2: "Seattle, WA 98144", link: "suites-seattle-leschi-waterfront-condo.html"},
	{lat:47.601374, lng:-122.327346, title: "5th Ave Condos", add1: "108 – 5th Ave South", add2: "Seattle, WA 98104", link: "condos-seattle-tobira.html"}
);

function init(){

	var mapLoc = new google.maps.LatLng(47.61000,-122.336884);
	var mapOpt = {
		zoom: 13,
		center: mapLoc,
		scrollwheel: false,
		mapTypeId: google.maps.MapTypeId.ROADMAP
	}
	
	map = new google.maps.Map(document.getElementById('map_canvas'), mapOpt);
	
	for(var i = 0; i < locationList.length; i++){
		var loc = locationList[i];
		var markerLoc = new google.maps.LatLng(loc['lat'], loc['lng']);
		var marker = new google.maps.Marker({
			position: markerLoc,
			map: map,
			title: loc['title']
		});
		
		attachMessage(marker, i);
	}
}

function attachMessage(marker, index){
	var loc = locationList[index];
	var content = "<a href='" + loc['link'] + "' class='map_title'><h3 class='map_title'>" + loc['title'] + "</h3></a>";
	content += "<address class='map_address'>" + loc['add1'] + "<br />" + loc['add2'] + "</address>";
	var message = new google.maps.InfoWindow({
		content: content
	});
	
	google.maps.event.addListener(marker, 'click', function(){
		if(openMessage)
			openMessage.close();
		
		message.open(map, marker);
		openMessage = message;
	});
}


