

var markers = {
    "#Venue": {
	    icon: 1,
        latLng: [51.523252,-0.127189],
        html: "George VII and Alexandra Suites<br />Royal National Hotel<br />Bedford Way<br />London<br />WC1H 0DG"
    },
    "#CarPark1": {
        latLng: [51.523361000000001,-0.12612699999999999],
        html: "National Car Parks Ltd<br/>Woburn Place<br/>WC1H 0LP"
    },
    "#CarPark2": {
        latLng: [51.522589000000004,-0.144868],
        html: "Pure Parking<br/>W1W 5AX"
    },
    "#CarPark3": {
        latLng: [51.520150999999998,-0.13797599999999999],
        html: "National Car Parks Ltd<br/>34-42 Cleveland Street<br/>W1T 4JE"
    },
    "#CarPark4": {
        latLng: [51.518830000000001,-0.12284399999999999],
        html: "National Car Parks Ltd<br/>Bloomsbury Square<br/>WC1A 2RJ"
    },
    "#CarPark5": {
        latLng: [51.526321000000003,-0.123379],
        html: "National Car Parks Ltd<br/>Clare Court<br/>Judd Street<br/>WC1H 9QR"
    }
};

var jqMap = "#GoogleMap";
function figureOutKey() {
    if (location.host.match(/localhost/i)) {
        return "ABQIAAAAzu1kJqdDFOJoBuBKH_GrQBT2yXp_ZAY8_ufC3CFXhHIE1NvwkxRLM-jLSjrCUjwfheVmzhQ2YzHz-Q";
    } else if (location.host.match(/skintwo\.londonalternativemarket/i)) {
        return "ABQIAAAAoBLSOvayr1vaxbMJnQRlohSc5OQESn4BKY2EhhXB17-fUguJwhSsrlASBd4p-41icOqhjlnEm42W9g";
    } else if (location.host.match(/londonalternativemarket/i)) {
        return "ABQIAAAAH27Va6dcygT7qdA7RnED8hREqyurXk-3RfyKt6jbj3wn5WIxmhRKVw3DNRDFm8a-eMKHImkvtMd6nQ";
    } else if (location.host.match(/www\.lamskintwospecial\.com/i)) {
        return "ABQIAAAAoBLSOvayr1vaxbMJnQRlohRkfeUBBZQSZYcsuCtcev1rSWGFDRTN_JPwLaklXaTtHnji0iwEz9LbNQ";
    } else if (location.host.match(/lamskintwospecial\.com/)) {
        return "ABQIAAAAoBLSOvayr1vaxbMJnQRlohQtYQlloGgn4xXRBHsjyzh9_lx56hROZjybEJHAFfxhBs3EV7ZKC6fjTg";
    } else if (location.host.match(/www\.lamskintwospecial\.co\.uk/i)) {
        return "ABQIAAAAoBLSOvayr1vaxbMJnQRlohQ7vStxNDhTG7PicCmKSFMPwz9NQRR0Kk_RS0Akspc4DNfBOiJNywwP6w";
    } else if (location.host.match(/lamskintwospecial\.co\.uk/i)) {
        return "ABQIAAAAoBLSOvayr1vaxbMJnQRlohQc84T7ybpw4URL5o9FbCw0pYK-gBSLoIpnJL9tE2KraubligC_Ra38cA";
    } else if (location.host.match(/lams2s-staging.pfm102.webfactional.com/i)) {
		return "ABQIAAAAoBLSOvayr1vaxbMJnQRlohT8X673RvKllYvYDRRwqbQQbi261BTd_B_62K_FJ21NlDYrEb-CjrWEnQ";
	}
    return "";
}

$(function() {
    $(jqMap).jmap("init", {
        mapCenter:[51.523252,-0.127189],
        mapZoom: 15,
        mapControlSize: "large",
        mapEnableDoubleClickZoom: true,
        mapEnableScrollZoom: true,
        mapEnableSmoothZoom: false
    });
    $.each(markers, function() {
        $(jqMap).jmap("addMarker", {
            pointLatLng: this.latLng,
            pointHTML: this.html,
	        icon: this.icon
        });
    });
    $("#Points a").bind("click", function(e) {
	    e.preventDefault();
        var p = $(this).attr("href");
        $(jqMap).jmap("moveTo", {
            mapCenter: markers[p].latLng,
            centerMethod: "pan"
        });
    });
    $("#GetDirections").bind("click", function(e) {
	    e.preventDefault();
        $("#Result").empty();
        $(jqMap).jmap("searchDirections", {
            fromAddress: $("#From").val(),
            toAddress: $("#To").val(),
            directionsPanel: "Result"
        });
    });
    $("#Reset").bind("click", function(e) {
	    e.preventDefault();
        $("#Result").empty();
        $("#To").val("WC1H 0DG");
        $("#From").val("");
    });

	$("#Points li:eq(0)").click();
});

