var map;
var lat = 52.807405;
var lng = -1.64458;

var zoom = 15;

$(document).ready(function() {
    if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map"));
    }
    map.setCenter(new GLatLng(lat, lng), zoom);
    map.addControl(new GLargeMapControl());
    
    var marker = new GMarker(new GLatLng(lat, lng));
    map.addOverlay(marker);
    

	
	
    var tabs = [
        new GInfoWindowTab('Address',  '<div class="tabAddress"><strong>Mykonos Restaurant and Bar</strong><br /></div>'),
		new GInfoWindowTab('Info',  '<div class="tabInfo">29 Borough Rd, Burton upon Trent, Staffordshire DE14 2, UK. The mykonos pub and restaurant is a restaurant based in dudley that is a very popular bar and restaurant which serves amazing foods and wines for reasonable prices. </div>')
    ];
    marker.openInfoWindowTabsHtml(tabs, { maxWidth: 450 });

    GEvent.addListener(marker, "click", function() {                                                          
        marker.openInfoWindowTabsHtml(tabs, { maxWidth: 450 });                                                      
    });

    
});