// Google Map
function initialize() {
var latlng = new google.maps.LatLng(41.1225479191827, 16.87602996826172);
var settings = {
zoom: 16,
center: latlng,
mapTypeControl: false,
mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
navigationControl: false,
navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
mapTypeId: google.maps.MapTypeId.ROADMAP
};
	var map = new google.maps.Map(document.getElementById("map_canvas"), settings);
	var companyLogo = new google.maps.MarkerImage('http://lucianagalli.it/wp-content/themes/galli/images/LogoMap.png',
	new google.maps.Size(100,40),
	new google.maps.Point(0,0),
	new google.maps.Point(22,40)
	);
	var companyShadow = new google.maps.MarkerImage('http://lucianagalli.it/wp-content/themes/galli/images/LogoMapShadow.png',
	new google.maps.Size(150,80),
	new google.maps.Point(0,0),
	new google.maps.Point(47, 59)
	);
	var companyPos = new google.maps.LatLng(41.1225479191827, 16.87602996826172);
	var companyMarker = new google.maps.Marker({
	position: companyPos,
	map: map,
	icon: companyLogo,
	shadow: companyShadow,
	title:"Studio Luciana Galli"
	});  
	
}
