(function() {
        window.onload = function(){
        	   
          var options = {  
          	zoom: 14,
          	center: new google.maps.LatLng(38.095793, 23.79558),
          	mapTypeId: google.maps.MapTypeId.ROADMAP,
          	mapTypeControl: true,
          	mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
          	navigationControl: true,
          	navigationControlOptions: {style: google.maps.NavigationControlStyle.DEFAULT},
          	scaleControl: true
          };  
          // Calling the constructor, thereby initializing the map  
          var map = new google.maps.Map(document.getElementById('map'), options);  

          var marker = new google.maps.Marker({
            position: new google.maps.LatLng(38.095793, 23.79558), 
            map: map,
            title: 'Gnomon Constructions S.A.',
            clickable: true,
            //icon: '/images/sylor-arrow-map.png'
          });
     		
     	if (lang == 'gre') {
     		var info = new google.maps.InfoWindow({
     			maxWidth: '20',
     			content: '<div><p style="font-size:12px;font-weight:bold;">ΓΝΩΜΩΝ ΚΑΤΑΣΚΕΥΕΣ Α.Ε.</p><p style="font-size:12px;">Πάρνηθος 32, Κηφησιά 14564<br/>Ελλάδα<br/>+30 210 62 01 818</p></div>'
     		});
     	} else if (lang == 'eng') {
     		var info = new google.maps.InfoWindow({
     			maxWidth: '20',
     			content: '<div><p style="font-size:12px;font-weight:bold">Gnomon Construction S.A.</p><p style="font-size:12px;">23, Parnithos str.<br/>Greece<br/>+30 210 62 07 818</p></div>'
     		});
     	}
     	          
          google.maps.event.addListener(marker,'click',function() {
          	info.open(map,marker);
          });
      	}    	
})();
