All of the pins drop where they should be. However all the pins share the same info box. Having a hard time figuring the proper to way to create the map to show all the pins from the json feed and show a custom infowindow.
        $.ajax({
            url: '/search?cct=US&&cty='+searchloc+'&add=&mobilefeed=true',
            dataType: 'json',
            success: function(data, status){
                var infowindow; 
                var count = 1;
                function newinfo(marker,locationname,thumb,address,itemid){
                 var contentString = '<a href="search_listing.html?propid='+itemid+'&proptitle='+locationname+'" class="item-link" ><div id="infocontent"><img src="'+thumb+'" width="75px" style="float:left;margin-right:10px;">'+
                          '<b>'+locationname+'</b>'+
                          '<br>'+address+''+
                          '</div></a>';
                         infowindow = new google.maps.InfoWindow({
                                content: contentString
                            });
                 google.maps.event.addListener(marker, 'click', function() {
                        infowindow.open(map,marker);
                    });
                };
                $.each(data, function(i,item){ 
                    if (count==1){
                         var center = new google.maps.LatLng(item.lat, item.long);
                        // using global variable:
                        map.panTo(center);
                    }
                    var locationname = item.title;
                    var imagethumb = '/listing/'+item.id+'/?mobilefeedview=true&img=true';
                    marker = new google.maps.Marker({
                    position: new google.maps.LatLng(item.lat, item.long),
                    title: locationname,
                    map: map
                    });
                    newinfo(marker,locationname,imagethumb,item.address,item.id);
                    count = count + 1;
                });
            },
            error: function(){
                alert('There was an error loading the data. 928');
            }
        });
    var searchmapOptions = {
        center: new google.maps.LatLng(32.7150771, -117.1642001),
        zoom: 12,
        mapTypeId: google.maps.MapTypeId.ROADMAP
    };
var map = new google.maps.Map(document.getElementById("searchmap"), searchmapOptions);
 
     
    