(function() {
        window.onload = function(){
        	   
          var options = {  
          	zoom: 9,
          	center: new google.maps.LatLng(38.330909,23.664342),
          	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.325201, 23.631000), 
            map: map,
            title: 'Sylor',
            clickable: true,
            icon: path+'/images/sylor-arrow-map.png'
          });
     		
     	if (lang == 'gr') {
     		var info = new google.maps.InfoWindow({content: '<strong>Έδρα - Εργοστάσιο - Έκθεση</strong><p>Βιομηχανική ζώνη Οιοφύτων<br/>Σχηματάρι Βοιωτίας, 320 09</p><br/><p>T: +30 22620 32471<br/>T: +30 22620 32472</p>'});
     	} else if (lang == 'rus') {
     		var info = new google.maps.InfoWindow({content: '<strong>Главный офис – Завод</strong><p>Inofita Industrial zone, 320 09<br/>Schimatari, Beotia, Greece.</p><br/><p>Телефоны: +30 22620 32471<br/>Телефоны: +30 22620 32472</p>'});
     	} else if (lang == 'eng') {
     		var info = new google.maps.InfoWindow({content: '<strong>Main Office - Showroom - Factory</strong><p>Schimatari, Beotia<br/>32011, Greece</p><br/><p>T: +30 22620 32471<br/>T: +30 22620 32472</p>'});
     	}
     	          
          google.maps.event.addListener(marker,'click',function() {
          	info.open(map,marker);
          });
      	}    	
})();
