function InitGoogleMaps() {         
    var latlng = new google.maps.LatLng(48.255696, 17.281607);
    var settings = {
        zoom: 15,
        center: latlng,
        mapTypeControl: true,
        mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
        navigationControl: true,
        navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
        mapTypeId: google.maps.MapTypeId.ROADMAP       // ROADMAP, SATELLITE, HYBRID or TERRAIN.
    };
    var map = new google.maps.Map(document.getElementById("map_canvas"), settings);
    
    // klasicky marker    
    /*var companyPos = new google.maps.LatLng(48.593791,17.848442);
    var companyMarker = new google.maps.Marker({
    position: companyPos,
    map: map,
    title:"Dental Studio 2001"
    });*/
    
    // vlastny marker
    var companyLogo = new google.maps.MarkerImage(
        '/Templates/default/img/map.png',
        new google.maps.Size(150,100),
        new google.maps.Point(0,0),
        new google.maps.Point(75,50)
    );
    var companyShadow = new google.maps.MarkerImage(
        '/Templates/default/img/map_tien.png',
        new google.maps.Size(167,172),
        new google.maps.Point(0,0),
        new google.maps.Point(23, 169)
    );
    var companyPos = new google.maps.LatLng(48.255696, 17.281607);
    var companyMarker = new google.maps.Marker({
        position: companyPos,
        map: map,
        icon: companyLogo,
        //shadow: companyShadow,
        title:"SCREAM TATTOO"
    });
}
