{
rodents.selectAll( "path" )
.data( rodentData.features )
.enter()
.append( "path" )
.attr("fill", initialDate)
.attr("stroke", "#ccc")
.attr("d", bos_geoPath)
.attr("class","incident")
.on("mouseover", function(d){
d3.select("h2").text(d.properties.LOCATION_STREET_NAME);
d3.select(this).attr("class","incident hover");
})
.on("mouseout", function(d){
d3.select("h2").text("");
d3.select(this).attr("class","incident");
});
}