var geocoder;
	var map;
	var image = "/images/5star.png";
	var featured = new google.maps.MarkerImage("./images/featured.png", new google.maps.Size(33, 43));
	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 seaworld = "Sea World, Sea World Drive Main Beach, Gold Coast Queensland 4217 Australia";
	var clubwatermark = "3032 Surfers Paradise Boulevard, Surfers Paradise QLD 4217";
	var indigo = "186 The Esplanade, Burleigh Heads QLD 4220";
	var meriton = "2669 Gold Coast Hwy, Broadbeach QLD 4218";
	
	var dorchester = "3 Garfield Terrace, Surfers Paradise QLD 4217";
	var casa = "2367 Gold Coast Hwy, Mermaid Beach QLD 4218";
	var bluec = "3 McLean St, Coolangatta QLD 4225";
	
	var fun1 = "Cavil avenue, Surfers Paradise, Australia ";
	var fun2 = "Broadbeach Blvd, Broadbeach, Australia ";
	var fun3 = "Main beach Pde, Surfers Paradise, Australia ";
	var fun5 = "Skilled Park PO Box 4897 Robina Town Centre Qld 4230";
	var fun7 = "Movie World, Pacific Motorway, Oxenford Gold Coast,Queensland 4210 Australia";
	

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

			var marker = new google.maps.Marker({position: results[0].geometry.location, map: map, icon: featured, title: "Seaworld Resort"});
		});
		geocoder.geocode({address: clubwatermark}, function (results, status) {
			map.set_center(results[0].geometry.location);
			var marker = new google.maps.Marker({position: results[0].geometry.location, map: map, icon: fivestar, title: "Club Watermark"});
	 	});
		geocoder.geocode({address: indigo}, function (results, status) {
			
			var marker = new google.maps.Marker({position: results[0].geometry.location, map: map, icon: fivestar, title: "Indigo Blue Luxury Beach Front Apartments"});
	 	});
		geocoder.geocode({address: meriton}, function (results, status) {

			var marker = new google.maps.Marker({position: results[0].geometry.location, map: map, icon: fivestar, title: "Mertion Serviced Apartments Gold Coast"});
	 	});
		
		
		geocoder.geocode({address: dorchester}, function (results, status) {

			var marker = new google.maps.Marker({position: results[0].geometry.location, map: map, icon: fourstar, title: "Dorchester On The Beach"});
	 	});
		geocoder.geocode({address: casa}, function (results, status) {

			var marker = new google.maps.Marker({position: results[0].geometry.location, map: map, icon: fourstar, title: "Casa Del Mar (House of the Sea)"});
	 	});
		geocoder.geocode({address: bluec}, function (results, status) {

			var marker = new google.maps.Marker({position: results[0].geometry.location, map: map, icon: fourstar, title: "Blue C Apartments"});
	 	});
		
		
		
		geocoder.geocode({address: fun1}, function (results, status) {
			
			var marker = new google.maps.Marker({position: results[0].geometry.location, map: map, icon: fun, title: "Cavil Avenue"});
	 	});
		geocoder.geocode({address: fun2}, function (results, status) {

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

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

			var marker = new google.maps.Marker({position: results[0].geometry.location, map: map, icon: fun, title: "Warner Bros. Movie World"});
	 	});
  	}

