window.onload = function(){
	if( $('#map').length > 0 ) {
		initialize();
	}
}

//google map options
function initialize() {
	var latlng = new google.maps.LatLng(53.800651, -4.064941);
	var myOptions = {
		zoom: 15,
		center: latlng,
		mapTypeId: google.maps.MapTypeId.ROADMAP
	};
	var map = new google.maps.Map(document.getElementById("map"), myOptions);
	
	var html = '<div class="info"><strong>A L & G Abbott</strong><br />150 Bedford Road, Kempston, Bedford, Bedfordshire, MK42 8BH</div>';
	
	var marker = new google.maps.Marker({
		position: latlng,
		map: map,
		title: "A L & G Abbott",
		clickable: true,
		content: html
	});
	
	google.maps.event.addListener(marker, 'click', function() {
		closeInfos();
		var info = new google.maps.InfoWindow({content: this.content});
		info.open(map,this);
		infos[0]=info;
	});
}

