function init() {
myMap = new LMap();
myMap.setContainer('map');
myMap.setLat(31.9481202783);
myMap.setLng(35.9291231632);
myMap.setZoom('5');
myMap.setName('Ahliyah School KG');
myMap.setAddress('Take Zahran to first circle, then head east on Rainbow street for 500 meters - make a right and a quick left at the corner of AWNI SUPERMARKET.
');
myMap.init();
myMap.showPin(true);
}
//Call the init function
window.onload = init;
//Destroy Google Maps objects on unload
window.onunload = GUnload;