$(document).ready(function() {
	counter();
});

function counter()
{
	var ajxFile = "counter.html"; 	   
	$.ajax(
	{  
	   	cache: false,
		type: "POST",  
		url: ajxFile,
		success: function()
		{
		} 
	});
}


var map = null;
        
function GetMap()
{
    map = new VEMap('map');
    map.SetDashboardSize(VEDashboardSize.Normal);
    map.LoadMap(new VELatLong(51.345460, 12.389080), 16, 'r', false);
    var shape = new VEShape(VEShapeType.Pushpin, map.GetCenter());
    shape.SetTitle('Bäckerei Göbecke GbR');
    shape.SetDescription('Hans-Poeche-Straße 13 <br /> 04103 Leipzig');
    map.AddShape(shape);
} 
