var map;
var featuredSpots = [
	["hubba", 37.7956017070277, -122.398027181625],
	["3rdarmy", 37.7478639243281, -122.389283180237],
	["smtriple", 34.0098298614881, -118.495670557022],
	["lahigh", 34.0557883234658, -118.33277463913],
	["lovepark", 39.954230, -75.16567]
];

$(document).ready(function(){
	initialize();
});

function initialize() {
	
	// Select random spot
	randomSpot = featuredSpots[Math.floor(Math.random() * featuredSpots.length)];
	
	var latlng = new google.maps.LatLng(randomSpot[1], randomSpot[2]);
	var myOptions = {
		zoom: 19,
		disableDefaultUI: true,
		center: latlng,
		mapTypeId: google.maps.MapTypeId.SATELLITE
	};
	map = new google.maps.Map(document.getElementById("map"), myOptions);
	
}