// JavaScript Document
googleMap ={};

googleMap.init = function() {
	  var mapCenter = new google.maps.LatLng(51.510118, -0.143005);
      var mapOptions = {
		zoom: 15,
		center: mapCenter,
		mapTypeId: google.maps.MapTypeId.ROADMAP,
		mapTypeControl: false
	};
	map = new google.maps.Map(document.getElementById("mapDiv"), mapOptions);
  
		getIcons();
		var RIlatLong = new google.maps.LatLng(51.510118,-0.143005);
		var RIMarker = new google.maps.Marker({position:RIlatLong, map:map, icon:blueIcon});
		var label = new Label({map: map});     
		label.set('position', RIlatLong);     
		label.set('text','The Royal Institution');
		googleMap.createHotelLayers(map);
		hotels.show();
}

googleMap.createHotelLayers = function(map) {
	hotels = new Overlay(map, 'hotelsBtn', {icon: redIcon});
	hotels.loadOverlays = function() {

	this.addMarker(51.5092, -0.1424, 'Brown\'s Hotel', '<ul><li><a href="http://www.brownshotel.com/" class="bodyLink" target="_blank"><strong>Brown\'s Hotel</strong></a><br />30 Albemarle Street, London, London W1S 4BP<br />020 7493 6020</li></ul>');
	
	this.addMarker(51.5013, -0.1284, 'Holiday Inn London Mayfair', '<ul><li><a href="http://www.holidayinn.com/hotels/gb/en/london/lonmf/hoteldetail" class="bodyLink" target="_blank"><strong>Holiday Inn London Mayfair</strong></a><br />3 Berkeley Street, London, W1J 8NE</li></ul>');
	
	this.addMarker(51.5048, -0.1472, 'The Park Lane Hotel', '<ul><li><a href="http://www.starwoodhotels.com/sheraton/property/overview/contact.html?propertyID=105" class="bodyLink" target="_blank"><strong>The Park Lane Hotel, London</strong></a><br />Piccadilly London, England W1J 7BX</li></ul>');
	
	this.addMarker(51.5109, -0.1358, 'Piccadilly Hotel', '<ul><li><a href="http://www.piccadillyhotel.net/" class="bodyLink" target="_blank"><strong>Piccadilly Hotel</strong></a><br />12 Sherwood Street, Piccadilly Circus, London W1F 7BR</li></ul>');
	
	this.addMarker(51.5149, -0.1275, 'The Regent Palace Hotel', '<ul><li><a href="http://www.regentpalacehotel.co.uk/londonmap.htm" class="bodyLink" target="_blank"><strong>The Regent Palace Hotel</strong></a><br />Piccadilly Circus, London W1B 5DN</li></ul>');
	
	this.addMarker(51.5073, -0.1437, 'Radisson Edwardian Mayfair Hotel', '<ul><li><a href="http://www.radissonedwardian.co.uk/mayfair.html" class="bodyLink" target="_blank"><strong>Radisson Edwardian Mayfair Hotel</strong></a><br />70 Stratton Street, London W1J 8LT </li></ul>');
	
	this.addMarker(51.5094, -0.1365, 'Le M&eacute;ridien Piccadilly', '<ul><li><a href="http://www.starwoodhotels.com/lemeridien/property/overview/index.html?propertyID=1925" class="bodyLink" target="_blank"><strong>Le M&eacute;ridien Piccadilly</strong></a><br />21 Piccadilly, London, EN W1J 0BH </li></ul>');
	
	this.addMarker(51.5002, -0.1262, 'The Westbury Hotel', '<ul><li><a href="http://www.westburymayfair.co.uk/" class="bodyLink" target="_blank"><strong>The Westbury Hotel</strong></a><br />Bond Street, Mayfair, London, W1S 2YF</li></ul>');
	
	}
}
$(document).ready(googleMap.init);
