$(document).ready(initialize);
$('body').unload(function(){ GUnload();});
function initialize() {
		
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map_canvas"));
		map.setMapType(G_HYBRID_MAP);
		map.setCenter(new GLatLng(50.7350, -3.5158), 14);
		map.setUIToDefault();
		var blueIcon = new GIcon(G_DEFAULT_ICON);
		blueIcon.image = "http://gmaps-samples.googlecode.com/svn/trunk/markers/blue/blank.png";
		markerOptions = { icon:blueIcon };
        var latlng = new GLatLng(50.7298, -3.5158);
        var marker = new GMarker(latlng, markerOptions);
        window.m = map;
        GEvent.addListener(marker,"click",showAddress);
        map.addOverlay(marker);    
        showAddress();
    }
  }

function showAddress()
{
    window.m.openInfoWindowHtml(new GLatLng(50.7298, -3.5158), "<strong>Creative Juice Solutions</strong><br/>46 Blackboy Road<br/>Exeter<br/>Devon<br/>EX4 6SZ<br /><br/>T: 01392 456833<br/>F: 01392 456838");
}
