var map;
var openMessage;
var locationList = new Array(
	{lat:47.614721, lng:-122.347877, title: "Belltown Court Condo", add1: "2415 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.633036, lng:-122.345552, title: "Seaporte Townhomes", add1: "1512 Taylor Ave North", add2: "Seattle, WA 98109", link: "townhomes-seattle-seaporte.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.6256, lng:-122.321304, title: "Broadway Suites", add1: "723 Broadway Ave East", add2: "Seattle, WA 98102", link: "suites-seattle-broadway.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.61961, lng:-122.299842, title: "Chelsea Square Townhome", add1: "126B 25th Avenue East", add2: "Seattle, WA 98122", link: "townhomes-seattle-chelsea-square.html"}
);

function init(){

	var mapLoc = new google.maps.LatLng(47.64099,-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;
	});
}

