function createMap()
{
	var latlng = new google.maps.LatLng(-34.397, 150.644);
	var myOptions = {
		zoom: 15,
		center: latlng,
		mapTypeId: google.maps.MapTypeId.ROADMAP,
		navigationControl: false,
		mapTypeControl: false,
		scaleControl: false
	};
	var map = new google.maps.Map( document.getElementById("mapContainer") , myOptions );

	geocoder = new google.maps.Geocoder();
	geocoder.geocode( { 'address': 'Bruhaugveien 1, 2817 Gjøvik, Norway'}, function(results, status) 
	{
		if (status == google.maps.GeocoderStatus.OK) 
		{
			var marker = new google.maps.Marker(
			{
				map: map,
				title: 'AutoCentret',
				position: results[0].geometry.location
			});
			map.panTo( marker.position );
		//Get images nearby
		}
		else
		{
           alert("Geocode was not successful for the following reason: " + status);
		}
	});
}


jQuery(document).ready(function()
{
	createMap();
});
