﻿

function makeMap() {
    $(".gmap_marker_img").each(function(i, v) {
        this.src = "/assets/images/gmap_icons_new/ReferencesDots_GIFs/" + (i+1) + ".gif";
        
    });
    
    $(".gmap_marker").each(function(i,v) {
    
        showAddress(this.title, (i+1), true,this.id);
    });
}