jQuery(document).ready(function() {
	$options = {
		zoom             : 5,
		center           : new google.maps.LatLng(52.151917, 5.515137),
		mapTypeId        : google.maps.MapTypeId.SATELLITE,
		disableDefaultUI : true,
		draggable        : false,
		disableDoubleClickZoom : true
	}
	$forecast = new google.maps.Map(document.getElementById('weersverwachting-frame'), $options);

	$boundries    = new google.maps.LatLngBounds(
		new google.maps.LatLng(48.895,0),
		new google.maps.LatLng(55.974,10.856)
		);

	$overlay      = new google.maps.GroundOverlay('http://mijn.buienradar.nl/gps/maps.gif', $boundries);
	$overlay.setMap($forecast);
});
