var centerLatitude = 40.394765;
var centerLongitude = 49.82726;
var startZoom = 15;
var map;
var images_folder='images/';
var infowindow = null;

function addMarker(latitude, longitude, title, description, iconImage) {
    var marker = new google.maps.Marker({
            position: new google.maps.LatLng(latitude, longitude),
            title: title,
            animation: google.maps.Animation.BOUNCE ,
            map: map
        });
}



function initialize() {
    var myLatlng = new google.maps.LatLng(centerLatitude, centerLongitude);
    var myOptions = {
      zoom: startZoom,
      center: myLatlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP,
      mapTypeControlOptions: {
        style: google.maps.MapTypeControlStyle.HORIZONTAL_BAR,
        position: google.maps.ControlPosition.TOP_RIGHT
      },
      disableDefaultUI: true,
      panControl: true,
      panControlOptions: {
        style: google.maps.ZoomControlStyle.SMALL
      },
      zoomControl: true,
      mapTypeControl: true,
      scaleControl: true,
      streetViewControl: false,
      overviewMapControl: false
    }
    map = new google.maps.Map(document.getElementById("gmap"), myOptions);
    addMarker(centerLatitude, centerLongitude, 'Happy Inn', '');
}

window.onunload = GUnload;
