$(document).ready(function() {

	//------- Google Maps ---------//
		  
	// Creating a LatLng object containing the coordinate for the center of the map
	var latlng = new google.maps.LatLng(55.47651,12.18541);
	  
	// Creating an object literal containing the properties we want to pass to the map  
	var options = {  
		zoom: 5, // This number can be set to define the initial zoom level of the map
		center: latlng,
		mapTypeId: google.maps.MapTypeId.ROADMAP // This value can be set to define the map type ROADMAP/SATELLITE/HYBRID/TERRAIN
	};  
	// Calling the constructor, thereby initializing the map  
	var map = new google.maps.Map(document.getElementById('map_div'), options);  
	
	// Define Marker properties
	var image = new google.maps.MarkerImage('../image/assets/Bunnpris_logo.png',
		// This marker is 129 pixels wide by 42 pixels tall.
		new google.maps.Size(75, 15),
		// The origin for this image is 0,0.
		new google.maps.Point(0,0),
		// The anchor for this image is the base of the flagpole at 18,42.
		new google.maps.Point(37, 0)
	);

	var image2 = new google.maps.MarkerImage('../image/assets/Logo_Spar.png',
		// This marker is 129 pixels wide by 42 pixels tall.
		new google.maps.Size(80, 15),
		// The origin for this image is 0,0.
		new google.maps.Point(0,0),
		// The anchor for this image is the base of the flagpole at 18,42.
		new google.maps.Point(40, 0)
	);

	var image3 = new google.maps.MarkerImage('../image/assets/SuperBest_logo.jpg',
		// This marker is 129 pixels wide by 42 pixels tall.
		new google.maps.Size(25, 25),
		// The origin for this image is 0,0.
		new google.maps.Point(0,0),
		// The anchor for this image is the base of the flagpole at 18,42.
		new google.maps.Point(12, 0)
	);

	var image4 = new google.maps.MarkerImage('../image/assets/Coop_Logo.jpg',
		// This marker is 129 pixels wide by 42 pixels tall.
		new google.maps.Size(51, 15),
		// The origin for this image is 0,0.
		new google.maps.Point(0,0),
		// The anchor for this image is the base of the flagpole at 18,42.
		new google.maps.Point(25, 0)
	);

	var image5 = new google.maps.MarkerImage('../image/assets/logo-meny.png',
		// This marker is 129 pixels wide by 42 pixels tall.
		new google.maps.Size(45, 50),
		// The origin for this image is 0,0.
		new google.maps.Point(0,0),
		// The anchor for this image is the base of the flagpole at 18,42.
		new google.maps.Point(22, 0)
	);

	
	// Add Marker
	var marker1 = new google.maps.Marker({
		position: new google.maps.LatLng(59.93964,10.71939), 
		map: map
	});	
	
	// Add listener for a click on the pin
	google.maps.event.addListener(marker1, 'click', function() {  
		infowindow1.open(map, marker1);  
	});
		
	// Add information window
	var infowindow1 = new google.maps.InfoWindow({  
		content:  createInfo('<img src=\"http://t2.gstatic.com/images?q=tbn:ANd9GcSrqsSVJKB4thfrytl4R_5UQ0pb5Ql8gq9UmePUWy4gcKrGuS2Dj7ItDy8\"/> Bunnpris Blindern', 'Problemveien 3,<br />0313 OSLO,<br />Norway')
	}); 

	
	// Create information window
	function createInfo(title, content) {
		return '<div class="infowindow"><strong>'+ title +'</strong><br />'+content+'</div>';
	} 

});



