fireOn = Window.ie ? 'load' : 'domready';
window.addEvent(fireOn, function(){
	
	/**
	 *	Create map
	 */
	//http://maps.google.com/maps?f=q&source=s_q&hl=nl&geocode=&q=leuvensesteenweg+290+3390+tielt-winge&sll=37.926868,-95.712891&sspn=52.523996,96.767578&ie=UTF8&ll=50.906064,4.866514&spn=0.041676,0.0945&z=14
	var latlng = new google.maps.LatLng(50.906064, 4.866514);
    var myOptions = {
      zoom: 13,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP,
      mapTypeControl: false
    };
    var map = new google.maps.Map(document.getElementById('map'), myOptions);
    
    /**
     *	Add marker
     */
    new google.maps.Marker({
    	map: map,
    	position: new google.maps.LatLng(50.906154, 4.866514),
    	title: 'Monroe Videotheek',
    	icon: 'http://www.videotheekmonroe.be/design/images/layout/marker.gif'
    });
});
