var geocoder;
	var map;
	var image = "/images/5star.png";
	var fivestar = new google.maps.MarkerImage("./images/5star.png", new google.maps.Size(33, 43));
	var fourstar = new google.maps.MarkerImage("./images/4star.png", new google.maps.Size(33, 43));
	var fun = new google.maps.MarkerImage("./images/family.png", new google.maps.Size(33, 43));
	var address = "5 Yarra St South Yarra, Australia";
	var burke = "11 Cohen Pl, Melbourne, Australia";
	var flinders = "267 Flinders lane, Melbourne, Australia";
	var southyarra = "470 Punt Rd, Melbourne, Australia";
	var davisave = "44 Davis Ave, Melbourne, Australia";

	var fun1 = "8 Whiteman St, Southbank, Australia";
	var fun2 = "11 Nicholson St, Carlton, Australia";
	var fun3 = "2 Swanston Street Walk, Melbourne, Australia";
	var fun4 = "Corner King St & Flinders St, Melbourne, Australia";
	var fun5 = "Melbourne Cricket Ground";

	

	function initialize() {
		geocoder = new google.maps.Geocoder();
   		var myOptions = {
      			zoom: 12,
      			mapTypeId: google.maps.MapTypeId.ROADMAP
    		};
    		map = new google.maps.Map(document.getElementById("map"), myOptions);
		geocoder.geocode({address: address}, function (results, status) {

			
			var marker = new google.maps.Marker({position: results[0].geometry.location, map: map, icon: fivestar, title: "Punthill South Yarra Grande"});
		});
		geocoder.geocode({address: burke}, function (results, status) {

			var marker = new google.maps.Marker({position: results[0].geometry.location, map: map, icon: fourstar, title: "Punthill Burke St"});
	 	});
		geocoder.geocode({address: flinders}, function (results, status) {
			map.set_center(results[0].geometry.location);
			var marker = new google.maps.Marker({position: results[0].geometry.location, map: map, icon: fourstar, title: "Punthill Flinders Lane"});
	 	});
		geocoder.geocode({address: southyarra}, function (results, status) {

			var marker = new google.maps.Marker({position: results[0].geometry.location, map: map, icon: fourstar, title: "Punthill South Yarra Punt Rd"});
	 	});
		geocoder.geocode({address: davisave}, function (results, status) {

			var marker = new google.maps.Marker({position: results[0].geometry.location, map: map, icon: fourstar, title: "Punthill South Yarra Davis Ave"});
	 	});
		
		geocoder.geocode({address: fun1}, function (results, status) {

			var marker = new google.maps.Marker({position: results[0].geometry.location, map: map, icon: fun, title: "Crown Casino"});
	 	});
		geocoder.geocode({address: fun2}, function (results, status) {

			var marker = new google.maps.Marker({position: results[0].geometry.location, map: map, icon: fun, title: "Museum Victoria"});
	 	});
		geocoder.geocode({address: fun3}, function (results, status) {

			var marker = new google.maps.Marker({position: results[0].geometry.location, map: map, icon: fun, title: "Federation Square"});
	 	});
		geocoder.geocode({address: fun4}, function (results, status) {

			var marker = new google.maps.Marker({position: results[0].geometry.location, map: map, icon: fun, title: "Melbourne Aquarium"});
	 	});
		geocoder.geocode({address: fun5}, function (results, status) {

			var marker = new google.maps.Marker({position: results[0].geometry.location, map: map, icon: fun, title: "Melbourne Cricket Ground"});
	 	});
  	}

