This repository has been archived by the owner on Apr 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
map.html
1081 lines (1037 loc) · 62.1 KB
/
map.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">
<html>
<head>
<meta charset='UTF-8'/>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<title>Interactive map: Long weekend of gun deaths | NBC News</title>
<meta name="description" content="Beginning at 12:01 a.m. on Jan. 19, NBC News tallied every known gun death across the U.S., stopping at midnight on Martin Luther King, Jr. Day, Monday, Jan. 21— a day the gun debate again made national headlines as part of President Obama’s inaugural address. This interactive map shows all the gun deaths we uncovered. Part of the Flashpoint: Guns in America series">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300' rel='stylesheet' type='text/css'>
<link href="http://www.nbcnews.com/id/50742861" rel='stylesheet' type='text/css'>
<!--<link href="main.css" rel='stylesheet' type='text/css'>-->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src='http://underscorejs.org/underscore-min.js'></script>
<script src='http://api.tiles.mapbox.com/mapbox.js/v0.6.7/mapbox.js'></script>
<script src='http://assets.msnbc.msn.com/rendering/msnbc/html40/assets/Js/Analytics.js?v=02082013'></script>
<link href='http://api.tiles.mapbox.com/mapbox.js/v0.6.7/mapbox.css' rel='stylesheet' />
</head>
<body>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
<script>
var params = new Array()
params.siteName = "msnbc";
params.section = "US news";
params.subSection = "flashpoint";
params.subSubSection = "flashpoint";
params.subSubSubSection = "";
params.typeName = "flashpointmap";
params.eventType = "pageload";
params.eventName = "load";
params.byline = "U.S. News";
params.elem = "document";
params.featureName = "wbpage";
params.sitePageId = "50698918";
params.headline = "Long weekend of gun deaths";
params.source = "";
params.zipCode = "";
params.deviceType = "desktop";
params.isOriginalContent = true;
EventTracker().track(params);
</script>
<div id='header'>
<p class="breadcrumbs">
<a class="logo ir" href="http://www.nbcnews.com">NBCNews.com</a> / <a class="parent" href="http://usnews.nbcnews.com/flashpoint"><span>Flashpoint:</span> Guns in America</a>
</p>
<h1>Long weekend of gun deaths</h1>
<p class="summary">Beginning at 12:01 a.m. on Jan. 19, NBC News tallied every known gun death across the U.S., stopping at midnight on Martin Luther King, Jr. Day, Monday, Jan. 21— a day the gun debate again made national headlines as part of President Obama’s inaugural address. This interactive map shows all the gun deaths we uncovered. <a href="http://usnews.nbcnews.com/flashpoint">Go here for our complete coverage.</a></p>
<ul class="share">
<li>
<div class="fb-like" data-send="false" data-layout="button_count" data-width="450" data-show-faces="true" data-action="recommend"></div>
</li>
<li>
<div><a href="https://twitter.com/share" class="twitter-share-button" data-via="twitterapi" data-lang="en">Tweet</a></div>
</li>
<li>
<div><g:plusone size="medium" data-annotation="bubble" recommendations="false"></g:plusone></div>
<script type="text/javascript">
window.___gcfg = {
lang: 'en-US'
};
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
</li>
</ul>
</div>
<div id='pane'>
<div id='map'></div>
<div id='legend'>
<form id="legend-form">
<input checked="checked" value="accidental" type="checkbox"><span class='swatch accidental'></span> Accidental shooting</input><br/>
<input checked="checked" value="homicide" type="checkbox"><span class='swatch homicide'></span> Homicide</input><br/>
<input checked="checked" value="murdersuicide" type="checkbox"><span class='swatch murdersuicide'></span> Murder-suicide</input><br/>
<input checked="checked" value="police" type="checkbox"><span class='swatch police'></span> Police shooting</input><br/>
<input checked="checked" value="selfdefense" type="checkbox"><span class='swatch selfdefense'></span> Self-defense</input><br/>
<input checked="checked" value="suicide" type="checkbox"><span class='swatch suicide'></span> Suicide</input><br/>
<input checked="checked" value="unclassified" type="checkbox"><span class='swatch unclassified'></span> Unclassified or open investigation</input><br/>
</form>
</div>
</div>
<div id="footer">
<div id="credit">CREDITS: <a href="http://www.nbcnews.com">NBC News</a> and <a href="https://twitter.com/GunDeaths">@GunDeaths</a> Twitter feed / Map powered by <a href="http://mapbox.com/about/maps/">MapBox</a> / <a href="mailto:[email protected]?Subject=Gun map">Send us feedback</a></div>
</div>
<article>
<header>Click on the marker for details <span>[ All times ET ]</span></header>
<section id='buffalo1' class='homicide death1 pic' data-lon='-78.8783689' data-lat='42.8864468'>
<h2><span>Jan 19, 1:00 AM</span>Buffalo, N.Y.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Christopher D. Cotton, age 42</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Cotton became Buffalo's first homicide victim of the year when he was shot while sitting in his car at an East Side intersection, police said. Family members said they do not know why he was in the area at 1 a.m. There has been no arrest.</p>
<small class='tooltip'>
Image: Christopher Cotton
</small>
</section>
<section id='cleveland2' class='homicide death1 ' data-lon='-81.6778691' data-lat='41.4871888'>
<h2><span>Jan 19, 1:00 AM</span>Cleveland, Ohio</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Anthony Burns, age 31</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Burns was killed and another man wounded during an altercation involving four men in an East Side nightspot, the Phase III Lounge, according to police. Burns died of a gunshot wound to the chest, and a second man was treated for a leg wound. Three men and a juvenile have been arrested.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='tillamook3' class='murdersuicide death2 pic' data-lon='-123.8428' data-lat='45.4564'>
<h2><span>Jan 19, 1:14 AM</span>Tillamook, Ore.</h2>
<div class='image tooltip'></div>
<div class='image image2 tooltip'></div>
<p><b>Victims: </b>Kayla Ann Hendrickson, age 16; Jacob Allen Green, 24</p>
<p><b>Incident type: </b>Murder-suicide</p><p><b>Weapon(s): </b>.40-caliber Ruger SR40 center-fire pistol</p>
<p class='tooltip'><b>Summary: </b>Hendrickson was shot to death after an argument with Green, her boyfriend, alongside an Oregon highway, police said. Green committed suicide after driving to California 300 miles away.</p>
<small class='tooltip'>
Images: Jacob Allen Green | Kayla Ann Hendrickson
</small>
</section>
<section id='hampton4' class='homicide death2 pic' data-lon='-76.3452218' data-lat='37.0298687'>
<h2><span>Jan 19, 1:46 AM</span>Hampton, Va.</h2>
<div class='image tooltip'></div>
<p><b>Victims: </b>Joseph Lee McQueen, age 30; Clifton Kareem Christian, 24</p>
<p><b>Incident type: </b>Homicide (multiple)</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>An argument in the parking lot of a Hampton, Va., bar led to the shooting deaths of McQueen and Christian, police said. There has been no arrest.</p>
<small class='tooltip'>
Image: Clifton Christian
</small>
</section>
<section id='allentown5' class='homicide death1 pic' data-lon='-75.4716219' data-lat='40.6022032'>
<h2><span>Jan 19, 2:00 AM</span>Allentown, Pa.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Kyle J. Stroman Jr., age 20</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Stroman, from Brooklyn, N.Y., became Allentown's first homicide of the year when he was found shot to death at an intersection on the city's north side. Police said they have no suspect in the shooting.</p>
<small class='tooltip'>
Image: Kyle J. Strowman Jr.
</small>
</section>
<section id='aurora6' class='homicide death1 ' data-lon='-104.832642' data-lat='39.756191'>
<h2><span>Jan 19, 2:00 AM</span>Aurora, Colo.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Debby McGaughy, age 50</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>McGaughy, a mother of four, was shot multiple times inside her home. A man taken into custody a short time later has since been released.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='washington7' class='homicide death1 ' data-lon='-77.03' data-lat='38.89'>
<h2><span>Jan 19, 2:30 AM</span>Washington, D.C.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Tracy McFadden, age 44</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Metro Police are offering a reward of up to $25,000 for information leading to the arrest in the shooting death of McFadden on the city's Northwest side, near Howard University Hospital.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='mcdonough8' class='accidental death1 ' data-lon='-84.1468616' data-lat='33.4473361'>
<h2><span>Jan 19, 2:41 AM</span>McDonough, Ga.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Name not released, age 15</p>
<p><b>Incident type: </b>Accidental shooting</p><p><b>Weapon(s): </b>.38-caliber revolver</p>
<p class='tooltip'><b>Summary: </b>A 14-year-old Georgia youth accidentally shot his 15-year-old brother to death when they were handling their mother's handgun in their home. The gun had been unloaded earlier in the evening. Officials have not decided whether to charge anyone. The names of the boys have not been released.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='gresham9' class='accidental death1 ' data-lon='-122.4367058' data-lat='45.5067406'>
<h2><span>Jan 19, 3:00 AM</span>Gresham, Ore.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Jeffrey Dennehy, age 23</p>
<p><b>Incident type: </b>Accidental shooting</p><p><b>Weapon(s): </b>Shotgun</p>
<p class='tooltip'><b>Summary: </b>Dennehy died when a shotgun accidentally discharged in his home. Gresham police said a friend of the deceased who was present at the shooting cooperated with the investigation, and no charges are expected to be filed.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='southvalley10' class='homicide death5 pic' data-lon='-106.6780809' data-lat='35.0100487'>
<h2><span>Jan 19, 3:00 AM</span>South Valley, N.M.</h2>
<div class='image tooltip'></div>
<div class='image image2 tooltip'></div>
<div class='image image3 tooltip'></div>
<div class='image image4 tooltip'></div>
<p><b>Victims: </b>Greg Griego, age 51; Sarah Griego, 40; Zephaniah Griego, 9; Jael Griego, 5; Angelina Griego , 2</p>
<p><b>Incident type: </b>Homicide (multiple)</p><p><b>Weapon(s): </b>First a .22-caliber rifle, then a .223-caliber military-style AR-15 semi-automatic rifle</p>
<p class='tooltip'><b>Summary: </b>Nehemiah Griego, the 15-year-old son of a New Mexico pastor, has been charged with five-counts of first-degree murder and three counts of child abuse in connection with the shooting deaths of his parents and three siblings. Police say the teenager also considered shooting his girlfriend's parents and killing more people at a Wal-Mart but was arrested.</p>
<small class='tooltip'>
Images: Greg Griego | Sarah and Angelina Griego | Jael Griego | Zephaniah Griego
</small>
</section>
<section id='batonrouge11' class='accidental death1 ' data-lon='-91.154551' data-lat='30.4507462'>
<h2><span>Jan 19, 3:09 AM</span>Baton Rouge, La.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Trevon Wilson, age 18</p>
<p><b>Incident type: </b>Accidental shooting</p><p><b>Weapon(s): </b>.22-caliber rifle</p>
<p class='tooltip'><b>Summary: </b>Tyler Washington, 19, is accused of carelessly operating the loaded firearm seconds before the gun discharged, striking the victim, police said. He has been charged with negligent homicide.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='stlouis12' class='police death1 ' data-lon='-90.1978889' data-lat='38.6272733'>
<h2><span>Jan 19, 5:00 AM</span>St. Louis, Mo.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Thomas Donovan, age 21</p>
<p><b>Incident type: </b>Police shooting</p><p><b>Weapon(s): </b>Police service weapon</p>
<p class='tooltip'><b>Summary: </b>A 21-year veteran police officer working security shot and killed Donovan, who officers said was brandishing a replica gun at a White Castle. Police suspect the victim may have previously robbed the restaurant.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='moscow13' class='suicide death1 pic' data-lon='-117.0001651' data-lat='46.7323875'>
<h2><span>Jan 19, 11:46 AM</span>Moscow, Idaho</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Jason "Cowboy" Monson, age 18</p>
<p><b>Incident type: </b>Suicide</p><p><b>Weapon(s): </b>Smith & Wesson Model 66 revolver, .357-caliber Magnum.</p>
<p class='tooltip'><b>Summary: </b>Monson, an 18-year-old University of Idaho freshman, shot himself to death in his dorm room, one day after another gun was removed from the dorm by police.</p>
<small class='tooltip'>
Image: Jason Monson
</small>
</section>
<section id='mountvernon14' class='homicide death1 ' data-lon='-95.22461893' data-lat='33.180806'>
<h2><span>Jan 19, 1:00 PM</span>Mount Vernon, Texas</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Juvenal Gonzales, age 37</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Gonzales was picking up his children for visitation from his ex-wife's home, when they got into an argument and a man came into the room and shot him several times, police said. The Fort Worth Star-Telegram reported that Clint Weldon Wilson, 31, of Sulphur Springs, Texas, was charged with murder, possession of a firearm by a felon and theft of a firearm.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='cleveland15' class='accidental death1 pic' data-lon='-81.6778691' data-lat='41.4871888'>
<h2><span>Jan 19, 1:45 PM</span>Cleveland, Ohio</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Nevaeh "Nae Nae" Benson, age 6</p>
<p><b>Incident type: </b>Accidental shooting</p><p><b>Weapon(s): </b>Handgun</p>
<p class='tooltip'><b>Summary: </b>The child fatally shot herself in the face with her father's gun. The father, Edmund Benson, 23, has been charged with endangerment. As a convicted felon, he was not allowed to own a gun.</p>
<small class='tooltip'>
Image: Navaeh Benson
</small>
</section>
<section id='kansascity16' class='homicide death1 ' data-lon='-94.6272' data-lat='39.1142'>
<h2><span>Jan 19, 2:40 PM</span>Kansas City, Kan.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Leslie R. Stubblefield, age 43</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Stubblefield was found dead of a gunshot wound, police said. No arrest has been made.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='sanleandro17' class='homicide death1 ' data-lon='-122.1675374' data-lat='37.704815'>
<h2><span>Jan 19, 3:21 PM</span>San Leandro, Calif.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Kenneth Lee Seets, age 50</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Seets was shot and killed in crossfire between two groups of armed gang rivals at a Bay Area Rapid Transit station, police said. An unidentified woman also was wounded by a stray bullet. One person was arrested, and police are looking for others.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='idahofalls18' class='homicide death1 ' data-lon='-112.0846153' data-lat='43.493873'>
<h2><span>Jan 19, 3:50 PM</span>Idaho Falls, Idaho</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Kristy M. Aschliman, age 21</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Aschliman was shot multiple times, police said. Her car was found stuck in the snow nearby. Adan Arroyo, 22, was arrested and charged with first-degree murder, according to local media reports.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='fortwayne19' class='homicide death1 ' data-lon='-85.1386015' data-lat='41.0799898'>
<h2><span>Jan 19, 4:12 PM</span>Fort Wayne, Ind.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Jermaine Donte Foster, age 30</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Foster was found shot dead in a car while a second man who was wounded was located inside a nearby apartment building, police said. No arrest has been made.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='longbeach20' class='homicide death1 ' data-lon='-118.1884871' data-lat='33.7774658'>
<h2><span>Jan 19, 7:30 PM</span>Long Beach, Calif.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Jose Luis Vidal, age 24</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Three men and a woman burst into a home, opened fire and fled, according to police. Vidal was killed, and a second 28-year-old man was wounded. No arrest has been made, and the motive is unknown.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='sanfrancisco21' class='homicide death1 ' data-lon='-122.3912596' data-lat='37.7340974'>
<h2><span>Jan 19, 8:34 PM</span>San Francisco, Calif.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Jamal Gaines, age 26</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Handgun</p>
<p class='tooltip'><b>Summary: </b>Gaines was shot multiple times while driving his car, police said. Gaines attempted to drive away but crashed his vehicle. He died of gunshot wounds shortly after. Carnell Taylor Jr., 24, was arrested three days later and charged with murder, shooting into a motor vehicle, and possession of a firearm by a felon, according to local media reports. He has pleaded not guilty.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='greenville22' class='homicide death1 ' data-lon='-82.3985105' data-lat='34.8512316'>
<h2><span>Jan 19, 10:00 PM</span>Greenville, S.C.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Edward Henry "Da-Da" Goldsmith, age 47</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Goldsmith was shot and killed in a parking lot outside an apartment complex, police said.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='thomasville23' class='selfdefense death1 ' data-lon='-80.0819879' data-lat='35.8826369'>
<h2><span>Jan 19, 10:38 PM</span>Thomasville, N.C.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>David Braswell, age 38</p>
<p><b>Incident type: </b>Self-defense</p><p><b>Weapon(s): </b>.22-caliber rifle</p>
<p class='tooltip'><b>Summary: </b>Braswell was beating up his girlfriend when her father shot him with a .22 rifle, police said. The shooting was ruled justified, but the girlfriend's father, Clifton Dennis, 56, was charged with possession of a firearm by a convicted felon.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='memphis24' class='homicide death1 pic' data-lon='-90.0516285' data-lat='35.1490215'>
<h2><span>Jan 19, 11:00 PM</span>Memphis, Tenn.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Rene Trejo, age 28</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Trejo was shot and killed in his car by one of three males who approached the vehicle demanding money, police said. No suspects have been arrested.</p>
<small class='tooltip'>
Image: Rene Trejo
</small>
</section>
<section id='scott25' class='homicide death1 pic' data-lon='-92.0961' data-lat='34.6964'>
<h2><span>Jan 19, 11:00 PM</span>Scott, Ark.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Hubert Dewayne Jackson, age 27</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Handguns</p>
<p class='tooltip'><b>Summary: </b>Jackson was found by the side of a rural road with numerous gunshot wounds. Police later arrested his cousin, Jeremy Davis, 29, and Nicholas Ryan Hollaway, 23, and charged them with murdering him in a money dispute.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='grapevine26' class='murdersuicide death2 ' data-lon='-97.06737195' data-lat='32.936068'>
<h2><span>Jan 19, 11:00 PM</span>Grapevine, Texas</h2>
<div class='image tooltip'></div>
<p><b>Victims: </b>Kelly Suckla, age 43; Krista Suckla, 44</p>
<p><b>Incident type: </b>Murder-suicide</p><p><b>Weapon(s): </b>9mm semi-automatic handgun</p>
<p class='tooltip'><b>Summary: </b>Kelly Suckla shot and killed his estranged wife, Krista Suckla, at their daughter's 17th birthday before shooting himself, dying instantly, police said.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='picayune27' class='homicide death1 ' data-lon='-89.67922824' data-lat='30.5266'>
<h2><span>Jan 19, 11:00 PM</span>Picayune, Miss.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Nickoles Ray Sullivan, age 33</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>.22-caliber pistol, legally owned</p>
<p class='tooltip'><b>Summary: </b>Sullivan and his ex-girlfriend, Alina Lamey, 38, were having an argument about a dog when she shot him in the back a .22-caliber pistol, police say. Lamey has been charged with murder.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='princegeorgescounty28' class='homicide death1 pic' data-lon='-76.8518695' data-lat='38.803929'>
<h2><span>Jan 20, 12:01 AM</span>Prince George's County, Md.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Marcus Antonio Jones, age 16</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Jones, whom police described as a known gang member, was shot and killed by members of a rival gang while leaving a party, police said. Two teenagers were arrested and charged with first and second-degree murder. Police are seeking a third suspect.</p>
<small class='tooltip'>
Image: Marcus Antonio Jones
</small>
</section>
<section id='sharon29' class='homicide death1 ' data-lon='-80.4934035' data-lat='41.2331116'>
<h2><span>Jan 20, 12:07 AM</span>Sharon, Pa.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Leangelo Michael "Lee-Lee" Crumby-Ford, age 17</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Crumby-Ford was shot in the chest at a small gathering at a private residence, police said. Jontae Maurice Barnes, 19, of Sharon was arrested and charged with involuntary manslaughter and third-degree murder. </p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='tularecounty30' class='homicide death1 ' data-lon='-118.7962661' data-lat='36.26992445'>
<h2><span>Jan 20, 12:45 AM</span>Tulare County, Calif.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Osevio Anguiano Lopez, age 34</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>California Highway Patrol officers stopped a vehicle for a traffic violation and found Lopez with a gunshot wound to the head, according to police reports. A second victim in the vehicle was treated at a nearby hospital for gunshot wounds and released. No arrest has been made.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='montgomery31' class='homicide death1 ' data-lon='-86.27316602' data-lat='32.343799'>
<h2><span>Jan 20, 1:00 AM</span>Montgomery, Ala.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Erskine Chambliss, age 32</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Chambliss was shot several times. Officers determined that Chambliss had been in an altercation. A suspect, Michael Alexander Jr., 18, was arrested and charged with one count of murder.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='losangeles32' class='homicide death1 ' data-lon='-118.2419714' data-lat='34.0501713'>
<h2><span>Jan 20, 1:15 AM</span>Los Angeles, Calif.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Angel Serna Mancilla, age 27</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Handgun</p>
<p class='tooltip'><b>Summary: </b>Police found Mancilla on the sidewalk with gunshot wounds. Police say the shooter and Mancilla got into an altercation before the shooter pulled a handgun, shot Mancilla, and drove away in a white sedan. There has been no arrest.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='libertytownship33' class='suicide death1 ' data-lon='-82.61255985' data-lat='40.156589'>
<h2><span>Jan 20, 1:53 AM</span>Liberty Township, Ohio</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>James A. Crego, age 42</p>
<p><b>Incident type: </b>Suicide</p><p><b>Weapon(s): </b>Ruger 9mm handgun</p>
<p class='tooltip'><b>Summary: </b>Police say Crego was drinking and taking prescription pain pills at the residence he shared with his girlfriend of three years before shooting her in the back. When the girlfriend ran to a neighbor's house to call police, Crego walked into the driveway and fatally shot himself, police said.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='kansascity34' class='homicide death1 ' data-lon='-94.6272' data-lat='39.1142'>
<h2><span>Jan 20, 2:00 AM</span>Kansas City, Kan.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>David Franklin, age 32</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b> Police say they found Franklin dead in his car on North Seventh Avenue in what appears to have been an incident of gang violence. Police say some arrests have been made, but have not released any information.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='dallas35' class='homicide death1 ' data-lon='-96.8000082' data-lat='32.7801052'>
<h2><span>Jan 20, 2:40 AM</span>Dallas, Texas</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Tynarion Warren, age 24</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Handgun</p>
<p class='tooltip'><b>Summary: </b>Warren and a second person pulled into a Dallas-area gas station and while the second individual was inside, Warren apparently became involved in an altercation with another man who had pulled into the station in a Cadillac sedan and was fatally shot, police said. The shooting was caught on a station security camera, but no arrest has been made.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='santaana36' class='homicide death1 ' data-lon='-117.8620053' data-lat='33.7490525'>
<h2><span>Jan 20, 2:40 AM</span>Santa Ana, Calif.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Ruben Gonzalez Jr., age 20</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Believed to be a handgun</p>
<p class='tooltip'><b>Summary: </b>Police said a fight between rival gangs led to the shooting of Gonzalez. Evidence suggested other people might have been wounded. Gonzalez was a documented gang member, according to the Santa Ana Police Department.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='parkhills37' class='murdersuicide death2 ' data-lon='-90.5181804' data-lat='37.854218'>
<h2><span>Jan 20, 3:00 AM</span>Park Hills, Mo.</h2>
<div class='image tooltip'></div>
<p><b>Victims: </b>Joseph Lee Gillam, age 22; Billy Jo Edwards, 30</p>
<p><b>Incident type: </b>Murder-Suicide</p><p><b>Weapon(s): </b>.45-caliber Kimber pistol</p>
<p class='tooltip'><b>Summary: </b>Gillam and Edwards appear to have gotten into a dispute over a woman that one or both of them were involved with, according to a county prosecutor. The argument escalated into a physical assault, with Edwards believed to be the aggressor, the prosecutor said. Gillam apparently then pulled a handgun and shot Edwards twice before turning the gun on himself, he said.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='pascagoula38' class='homicide death1 ' data-lon='-88.54910058' data-lat='30.362517'>
<h2><span>Jan 20, 3:07 AM</span>Pascagoula, Miss.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Hardy Parker Jr., age 51</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Believed to be a small handgun</p>
<p class='tooltip'><b>Summary: </b>Half-brothers Parker and Alfred Durden Jr., 46, were walking way home when they were accosted by a gunman, police said. Durden pretended to be dead after being hit in the head as the man shot Parker multiple times. Pascagoula police Capt. Davy Davis said the alleged shooter, Adrian Orville Moore, was out on bail awaiting trial on charges he shot a neighbor, Jackie C. Davis. Moore is now being held on $1 million bail for first-degree murder and aggravated assault. </p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='torrance39' class='homicide death1 pic' data-lon='-118.3406288' data-lat='33.8358492'>
<h2><span>Jan 20, 3:25 AM</span>Torrance, Calif.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Devin Scandore, age 22</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Scandore was attending a punk rock concert with friends when a fight broke out that spilled into the parking lot, where he was shot by an unknown assailant, according to police reports. His family and friends said he was trying to protect others when he was shot.</p>
<small class='tooltip'>
Image: Devin Scandore
</small>
</section>
<section id='lawton40' class='homicide death2 ' data-lon='-98.3903305' data-lat='34.6086854'>
<h2><span>Jan 20, 3:30 AM</span>Lawton, Okla.</h2>
<div class='image tooltip'></div>
<p><b>Victims: </b>Jamar Marcus Mitchell, age 20; Lemar Whitney, 28</p>
<p><b>Incident type: </b>Homicide </p><p><b>Weapon(s): </b>Handgun</p>
<p class='tooltip'><b>Summary: </b>After an altercation in the parking lot of the Platinum Gentleman’s Club, Whitney shot Mitchell, an Army private at nearby Fort Sill, according to police. Mitchell was with a group of fellow soldiers at the club. After shooting Mitchell, Whitney was tackled by a security guard, who, after being threatened, used a gun of his own to shoot and kill Whitney, police said.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='syracuse41' class='homicide death1 ' data-lon='-76.1474244' data-lat='43.0481221'>
<h2><span>Jan 20, 4:30 AM</span>Syracuse, N.Y.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Angelo Jenkins, age 49</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Handgun</p>
<p class='tooltip'><b>Summary: </b>Suspect Shala Williams, 31, got into an argument at a party with Jenkins, who appears to have been his cousin, according to police. Several hours after that altercation, Williams returned and fired into a bedroom where Jenkins was with his girlfriend, Neisha Baker, 23, police said. Jenkins was killed and Baker was treated at a local hospital and released. Williams has been arrested and charged with second-degree murder and other charges.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='batonrouge42' class='homicide death1 ' data-lon='-91.154551' data-lat='30.4507462'>
<h2><span>Jan 20, 5:00 AM</span>Baton Rouge, La.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Paul Wright, age 33</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Wright was found in the middle of Hooper Road by officers responding to reports of a shooting following a fight, police said. While several potential suspects have been questioned, there has been no arrest.
</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='philadelphia43' class='homicide death1 ' data-lon='-75.163789' data-lat='39.952335'>
<h2><span>Jan 20, 5:00 AM</span>Philadelphia, Pa.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Tyree Thomas, age 25</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Tyree Thomas, 25, was shot twice in the chest around 5 a.m. Sunday morning inside a home in the Kingsessing neighborhood, police said. </p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='hughescounty44' class='unclassified death1 pic' data-lon='-96.29248698' data-lat='35.029318'>
<h2><span>Jan 20, 7:00 AM</span>Hughes County, Okla.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Michael Eric Morris, age 21</p>
<p><b>Incident type: </b>Unclassified or open investigation</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Deputies responding to a shooting at a social gathering at a residence outside town found Morris dead in the house with an apparent gunshot wound. A suspect, Joe Henry Harden, 22, was arrested at the scene on a murder complaint and booked into Hughes County jail
</p>
<small class='tooltip'>
Image: Michael Eric Morris
</small>
</section>
<section id='birmingham45' class='selfdefense death1 ' data-lon='-86.8025' data-lat='33.5206'>
<h2><span>Jan 20, 10:57 AM</span>Birmingham, Ala.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Demetrius Thompson, age 43</p>
<p><b>Incident type: </b>Self-defense</p><p><b>Weapon(s): </b>Handgun</p>
<p class='tooltip'><b>Summary: </b>Thompson, known as "Meatball" to friends and family, threatened to kill a man he encountered in a neighbor’s house, police said. Bystanders calmed things down and Thompson left, but he later fired at the man as he was leaving the home, and the man returned fire. The Jefferson County District Attorney’s Office ruled that the man shot in self-defense. The reason for the dispute was unclear. </p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='columbus46' class='homicide death1 ' data-lon='-83.0007065' data-lat='39.9622601'>
<h2><span>Jan 20, 4:38 PM</span>Columbus, Ohio</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Jerimiah Holloway, age 47</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Police responded to call of shots fired at a home and found Holloway on the porch of his residence with multiple gunshot wounds. He was pronounced dead at a local hospital. No arrest has been made. </p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='sacramento47' class='unclassified death1 ' data-lon='-121.4933' data-lat='38.5817'>
<h2><span>Jan 20, 6:30 PM</span>Sacramento, Calif.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Raymont Dwayne Sears, age 50</p>
<p><b>Incident type: </b>Unclassified or open investigation</p><p><b>Weapon(s): </b>.30-30 hunting rifle</p>
<p class='tooltip'><b>Summary: </b>Sears was shot by a homeowner after coming onto the man’s property twice and threatening him and in some cases throwing items at him, including a cane, logs and a fireplace grate, police said. Sears was acting erratically and had a history of such behavior, police said. The couple who lived in the house did not know him. Police expect the shooting will be ruled a case of justifiable self defense, though that determination has not yet been made. </p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='philadelphia48' class='homicide death1 ' data-lon='-75.163789' data-lat='39.952335'>
<h2><span>Jan 20, 7:45 PM</span>Philadelphia, Pa.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Antiquon Greer, age 39</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Greer was shot in the head while sitting in the driver's seat of a Ford Windstar minivan by an unidentified robber, police said.
</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='bradenton49' class='unclassified death1 pic' data-lon='-82.575' data-lat='27.4986'>
<h2><span>Jan 20, 10:20 PM</span>Bradenton, Fla.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>James Brady, age 26</p>
<p><b>Incident type: </b>Unclassified or open investigation</p><p><b>Weapon(s): </b>Handgun</p>
<p class='tooltip'><b>Summary: </b>Three robbers, dressed in black and wearing masks, approached residents Joshua Pinkham and Roy Potter as they stood in the carport of their home and attempted to rob them, police said. Brady pointed his gun at Pinkham, who was also armed, and gunfire was exchanged, leaving Brady dead, they said. One alleged robber, Jared Lee, has been charged with felony murder in Brady's death and authorities are seeking a third suspect, Charles Jones. Pinkham has not been charged; the state's attorney will determine whether it was a case of self defense.</p>
<small class='tooltip'>
Image: James Brady
</small>
</section>
<section id='newportnews50' class='homicide death1 ' data-lon='-76.428003' data-lat='36.9787588'>
<h2><span>Jan 20, 10:38 PM</span>Newport News, Va.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Ajene Tylik Marrow, age 24</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Handgun</p>
<p class='tooltip'><b>Summary: </b>Marrow was standing in a mobile home park when a gold-colored Nissan pulled up and one shot was fired from the vehicle, according to police. Marrow, who police believe was homeless, was found with a gunshot wound to the chest. No arrest has been made.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='downey51' class='homicide death1 ' data-lon='-118.1325688' data-lat='33.9400143'>
<h2><span>Jan 20, 11:30 PM</span>Downey, Calif.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Christian Cervantes, age 25</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>A 25-year-old man was shot several times outside a restaurant.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='warwick52' class='murdersuicide death2 pic' data-lon='-71.4422164' data-lat='41.65042295'>
<h2><span>Jan 21, 12:04 AM</span>Warwick, R.I.</h2>
<div class='image tooltip'></div>
<p><b>Victims: </b>William Liebrich, age 52; Colleen Liebrich, 50</p>
<p><b>Incident type: </b>Murder-Suicide</p><p><b>Weapon(s): </b>12-gauge shotgun</p>
<p class='tooltip'><b>Summary: </b>“There are two people dead,” the caller said before hanging up. Police responding to the residence found both Liebriches dead, she from a gunshot wound and he from a self-inflicted gunshot. Three typed notes were left, one for each of the couple’s two sons and another for the authorities. The Liebriches’ sons believe that their mother’s deteriorating health prompted the murder-suicide shooting. Their father had never owned a gun before, they said.</p>
<small class='tooltip'>
Image: Colleen and Willam Liebrich
</small>
</section>
<section id='forestville53' class='homicide death1 ' data-lon='-76.8749722' data-lat='38.8451131'>
<h2><span>Jan 21, 3:00 AM</span>Forestville, Md.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Brandon Rashad Catlett, age 21</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Catlett was shot dead on the street, police said. Tairon Dominique Dingle, 22, has been charged with first-degree murder and related charges in connection with his slaying.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='sanfrancisco54' class='homicide death1 pic' data-lon='-122.3912596' data-lat='37.7340974'>
<h2><span>Jan 21, 3:05 AM</span>San Francisco, Calif.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Daniel Colon, age 43</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Cousins Andrew and Daniel Colon were walking home from a bar where they had celebrated the 49ers NFC Championship victory, when authorities say they were shot by Seth Myers, who had earlier argued Andrew Colon. Andrew Colon survived the shooting, but his cousin Deniel did not. When police arrested Myers, they found three handguns, a shotgun, a bulletproof vest, cocaine, methamphetamine and several pounds of marijuana. Myers had no prior criminal record and legally owned the weapons, police said.</p>
<small class='tooltip'>
Image: Daniel Colon
</small>
</section>
<section id='philadelphia55' class='homicide death1 ' data-lon='-75.163789' data-lat='39.952335'>
<h2><span>Jan 21, 5:12 AM</span>Philadelphia, Pa.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Tairek Thomas, age 25</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Officers responding to a report of a person with a gun at a home said they found Thomas in the dining room with a gunshot wound to the left side of his head, police said. No arrest has been made. A woman at the home told officers she believed Thomas had been arguing with another man. The motive for the slaying is unknown.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='visalia56' class='homicide death1 ' data-lon='-119.2920585' data-lat='36.3302284'>
<h2><span>Jan 21, 5:16 AM</span>Visalia, Calif.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Clifford St. Martin, age 36</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>St. Martin was found with gunshot wounds in his driveway. Edgar Lugo, 32, was arrested in the shooting. St. Martin had been dating the mother of Lugo's child and there was tension between the two men, police said. St. Martin's obituary said he was an electrical contractor and is survived by three children.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='longbeach57' class='homicide death1 ' data-lon='-118.1884871' data-lat='33.7774658'>
<h2><span>Jan 21, 6:10 AM</span>Long Beach, Calif.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Deon Hale, age 42</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Hale was found dead of a gunshot wound to the upper body in his Gaviota Ave. home. No arrest has been made.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='jasper58' class='murdersuicide death2 pic' data-lon='-82.9483' data-lat='30.5181'>
<h2><span>Jan 21, 6:45 a.m.</span>Jasper, Fla.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Pamela Provenzano, age 61</p>
<p><b>Incident type: </b>Murder-Suicide</p><p><b>Weapon(s): </b>Handgun</p>
<p class='tooltip'><b>Summary: </b>Provenzano's body was found with gunshot wounds by the side of a dirt road. The suspect, her 79-year-old father, Daniel Lee Ovaert, was found dead of a self-inflicted shotgun wound on Jan. 22 in his car on Highway 318, between Ocala and Gainesville.</p>
<small class='tooltip'>
Image: Pamela Jo Provenzano
</small>
</section>
<section id='bexarcounty59' class='homicide death1 ' data-lon='-98.47251138' data-lat='29.4372179'>
<h2><span>Jan 21, 8:20 AM</span>Bexar County, Texas</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Jesse Rosas, age 38</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>.40-caliber handgun</p>
<p class='tooltip'><b>Summary: </b>Rosas was found on the side of a road with multiple gunshot wounds, police said. No weapon was found, and no one has been arrested.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='hoover60' class='homicide death1 ' data-lon='-86.88322092' data-lat='33.350997'>
<h2><span>Jan 21, 8:41 AM</span>Hoover, Ala.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Nicholas Taylor "Nick" Schneider, age 23</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Schneider was shot dead at an apartment complex. The resident of the apartment, who knew the victim, was taken into custody but later released while prosecutors decide whether to charge him or bring the case to a grand jury, police said.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='austin61' class='homicide death1 ' data-lon='-97.7428' data-lat='30.2669'>
<h2><span>Jan 21, 9:53 AM</span>Austin, Texas</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Christopher "Chris" Carson, age 38</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Handgun</p>
<p class='tooltip'><b>Summary: </b>Carson was shot in the chest and shoulder at an Austin auto repair shop, allegedly by his girlfriend’s estranged husband, Roy Rogers Soliz, 58, who was arrested a week later, police said.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='bouldercity62' class='murdersuicide death3 pic' data-lon='-114.8324851' data-lat='35.9785912'>
<h2><span>Jan 21, 11:20 AM</span>Boulder City, Nev.</h2>
<div class='image tooltip'></div>
<div class='image image2 tooltip'></div>
<p><b>Victims: </b>Kathryn Michelle Walters, age 46; Hans Walters, 52; Maximilian Walters, 5</p>
<p><b>Incident type: </b>Murder-Suicide</p><p><b>Weapon(s): </b>Handgun</p>
<p class='tooltip'><b>Summary: </b>Hans Walters, a Las Vegas police lieutenant, killed his wife, a former police officer, and their 5-year-old son, police said. He then called 911 to confess, set his house on fire and killed himself as police surrounded the house.</p>
<small class='tooltip'>
Images: Hans Walters | Kathryn Michelle Walters
</small>
</section>
<section id='cocoa63' class='homicide death1 pic' data-lon='-80.7422' data-lat='28.3858'>
<h2><span>Jan 21, 12:00 PM</span>Cocoa, Fla.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Lydia Bradford, age 24</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Police would not say</p>
<p class='tooltip'><b>Summary: </b>A gunman burst into Bradford’s home shortly before a child's birthday party, killed the mother of three and wounded her mother, who remains in critical condition. No arrest has been made.</p>
<small class='tooltip'>
Image: Lydia Bradford
</small>
</section>
<section id='perry64' class='suicide death1 ' data-lon='-84.2194127' data-lat='42.8264205'>
<h2><span>Jan 21, 12:00 PM</span>Perry, Mich.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Michael Cook, age 40</p>
<p><b>Incident type: </b>Suicide</p><p><b>Weapon(s): </b>Shotgun</p>
<p class='tooltip'><b>Summary: </b>Police responded to a call from Cook threatening suicide, according to a police spokesman. Officers talked to Cook, who had worked as an emergency medical technician with the local fire department before suffering a head injury about a year ago that prevented him from working, by phone until his cellphone battery died. He then killed himself with a shotgun, police said.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='barstow65' class='suicide death1 ' data-lon='-117.1005399' data-lat='34.8612115'>
<h2><span>Jan 21, 12:00 PM</span>Barstow, Calif.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Clarence Sanchez, age 60</p>
<p><b>Incident type: </b>Suicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Responders found Sanchez dead from an apparent self-inflicted gunshot wound, police said. Sanchez had served as union president of the American Federation of Government Employees at Marine Corps Logistics Base Barstow. A local newspaper reported that Sanchez had recently been accused of lewd conduct with a minor, but NBC News could not confirm that.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='trenton66' class='homicide death1 pic' data-lon='-74.7429463' data-lat='40.2170575'>
<h2><span>Jan 21, 2:43 PM</span>Trenton, N.J.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Andre Corbett, age 35</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Handgun</p>
<p class='tooltip'><b>Summary: </b>Corbett was standing outside of an apartment building when a gunman walked up and shot him multiple times, police said. Two men have been arrested and charged with murder connection with Corbett’s death. The victim's mother has made comments to local media denouncing gun violence.</p>
<small class='tooltip'>
Image: Andre Corbett
</small>
</section>
<section id='bayouvista67' class='homicide death1 ' data-lon='-89.8175651' data-lat='30.2813059'>
<h2><span>Jan 21, 3:20 PM</span>Bayou Vista, La.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Keyiona Chenevert, age 18</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Chenevert was found dead in her apartment of an apparent gunshot wound, police said. The case remains under investigation.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='grandrapids68' class='suicide death1 ' data-lon='-85.6680863' data-lat='42.9633599'>
<h2><span>Jan 21, 5:00 PM</span>Grand Rapids, Mich.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Hope Isabella Ruiz, age 19</p>
<p><b>Incident type: </b>Suicide</p><p><b>Weapon(s): </b>Handgun</p>
<p class='tooltip'><b>Summary: </b>Cops who arrested a suspect in a 7/11 robbery were executing a search warrant at his home when Ruiz, his 19-year-old girlfriend, committed suicide, police said. A 2-month-old baby in the house was not injured.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='savannah69' class='homicide death1 pic' data-lon='-81.1038' data-lat='32.0507'>
<h2><span>Jan 21, 7:00 PM</span>Savannah, Ga.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Rebecca Lorraine Foley, age 21</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Foley, a college student, was driving into the parking lot at her apartment complex when she was shot dead while still in the car, police said. No arrest has been made.</p>
<small class='tooltip'>
Image: Rebecca Foley
</small>
</section>
<section id='detroit70' class='homicide death1 pic' data-lon='-83.0567375' data-lat='42.3486635'>
<h2><span>Jan 21, 7:20 PM</span>Detroit, Mich.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Christopher "Chris" Best, age 61</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>AK-47 (according to witness). Police would not say.</p>
<p class='tooltip'><b>Summary: </b>Best, a music engineer, was shot while delivering money to the home of a friend who had done some construction work for him. Police said they believe robbery was the motive for the shooting.</p>
<small class='tooltip'>
Image: Chris Best
</small>
</section>
<section id='portallen71' class='police death1 pic' data-lon='-91.2101081' data-lat='30.4521351'>
<h2><span>Jan 21, 7:32 PM</span>Port Allen, La.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Ray Charles Hayes, age 50</p>
<p><b>Incident type: </b>Police shooting</p><p><b>Weapon(s): </b>AR-15 assault rifle</p>
<p class='tooltip'><b>Summary: </b>Hayes, an ex-convict, was shot and killed by police while threatening to kill a hostage he had seized during an armed robbery and forced to commandeer a police car, authorities said.</p>
<small class='tooltip'>
Image: Ray Charles Hayes
</small>
</section>
<section id='batonrouge72' class='accidental death1 pic' data-lon='-91.154551' data-lat='30.4507462'>
<h2><span>Jan 21, 7:33 PM</span>Baton Rouge, La.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Travin Varise, age 2</p>
<p><b>Incident type: </b>Accidental shooting</p><p><b>Weapon(s): </b>.357 Magnum handgun</p>
<p class='tooltip'><b>Summary: </b> Varise was allegedly playing with a gun at home when it went off, and a bullet struck his 2-year-old brother in the chest, killing him. The teen was charged with criminally negligent homicide.</p>
<small class='tooltip'>
Image: Travin Varise
</small>
</section>
<section id='elkhorn73' class='police death1 pic' data-lon='-88.5445447' data-lat='42.6727927'>
<h2><span>Jan 21, 7:47 PM</span>Elkhorn, Wis.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Alfredo Emilio Villarreal, age 18</p>
<p><b>Incident type: </b>Police shooting</p><p><b>Weapon(s): </b>Glock 19 9mm handgun</p>
<p class='tooltip'><b>Summary: </b>A Walworth County sheriff's deputy shot and killed Villarreal, an inmate who was attempting to escape from custody while undergoing medical tests at the hospital, police said. Alfredo Villarreal allegedly used a chair to break the window of his room and tried to hit the deputy over the head.</p>
<small class='tooltip'>
Image: Alfredo Emilio Villarreal
</small>
</section>
<section id='lafayette74' class='homicide death1 ' data-lon='-92.0198427' data-lat='30.2240897'>
<h2><span>Jan 21, 8:15 PM</span>Lafayette, La.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Jordan Melancon, age 22</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Unknown</p>
<p class='tooltip'><b>Summary: </b>Jordan Melancon, 22, was shot about 60 yards from a recreation center named for Martin Luther King, Jr., and on the national holiday celebrating his legacy. Melancon, who had two children, didn’t realize initially that he had been shot, and walked about two blocks before collapsing, according to local media reports. Police said Jacob Ardoin, 21, was charged with second-degree murder in the shooting death. </p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='houston75' class='homicide death1 ' data-lon='-95.3631' data-lat='29.7631'>
<h2><span>Jan 21, 8:35 PM</span>Houston, Texas</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Terry Griffin, age 29</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Springfield XD .40-caliber handgun </p>
<p class='tooltip'><b>Summary: </b>Griffin was fatally shot during a backyard gathering after an argument about dog-fighting erupted and became physical, according to police reports. Police later arrested Joseph Allen Green, 29, of Crosby, Texas, and charged him with murder.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='antioch76' class='homicide death1 ' data-lon='-121.7936427' data-lat='37.9755365'>
<h2><span>Jan 21, 10:00 PM</span>Antioch, Calif.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Albert Masalinto Calceta, age 36</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>.40-caliber handgun</p>
<p class='tooltip'><b>Summary: </b>A gang of robbers ambushed Calceta while he was riding his bike home from a bowling alley and shot him five times in the torso with a .40-caliber handgun, police said. No arrest has been made.</p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='montevista77' class='suicide death1 ' data-lon='-106.1485185' data-lat='37.5799013'>
<h2><span>Jan 21, 10:00 PM</span>Monte Vista, Colo.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Steven Scott Proctor, age 54</p>
<p><b>Incident type: </b>Suicide</p><p><b>Weapon(s): </b>.380-caliber semi-automatic handgun</p>
<p class='tooltip'><b>Summary: </b>Officers went to Proctor’s home to arrest him a day after he allegedly threatened someone with a firearm, according to police. Proctor refused to surrender, prompting authorities to evacuate nearby residences and call in a negotiator. After several hours, they entered the home around midnight and found Proctor dead. The shooting was ruled a suicide. </p>
<small class='tooltip'>
Image:
</small>
</section>
<section id='pittsburg78' class='homicide death1 pic' data-lon='-121.8850312' data-lat='38.021408'>
<h2><span>Jan 21, 10:12 PM</span>Pittsburg, Calif.</h2>
<div class='image tooltip'></div>
<p><b>Victim: </b>Steven Rosalez, age 16</p>
<p><b>Incident type: </b>Homicide</p><p><b>Weapon(s): </b>Handgun</p>
<p class='tooltip'><b>Summary: </b>Rosalez was shot dead and a 16-year-old friend was wounded when gunman hunted them down a few hours after an altercation, police said. Officers arrested Julius Short, 23, in connection with the killing.</p>
<small class='tooltip'>
Image: Steven Rosalez
</small>
</section>
</article>
<script>
var tiles = mapbox.layer().tilejson({
// Replace this example map ID with your own.
tiles: [ "http://a.tiles.mapbox.com/v3/nbcnews.map-h5z193u9/{z}/{x}/{y}.png" ]
});
var geojson = _(document.getElementsByTagName('section')).chain()
// Generate geojson data from section elements.
.map(function(el) {
var lon = el.getAttribute('data-lon');
var lat = el.getAttribute('data-lat');
if (!lon || !lat) return false;
return {
"geometry": {
"type": "Point",
"coordinates": [ parseFloat(lon), parseFloat(lat) ]
},
"properties": {
"id":el.id
}
};
})
// Filter out any false values.
.compact()
// Get array back from chain of operations.
.value();
var spots = mapbox.markers.layer()
// Load up markers from geojson data.
.features(geojson)
// Define a new factory function. Takes geojson input and returns a
// DOM element that represents the point.
.factory(function(f) {
var section = document.getElementById(f.properties.id);
// Add section text to spot element.
var el = document.createElement('div');
el.className = 'spot spot-' + section.id + ' ' + section.className;
el.innerHTML = '<section><div class="close-popout">x</div>' + document.getElementById(f.properties.id).innerHTML + '</section>';
var setActive = function(e) {
// Remove active class from all markers, sections.
_(spots.markers()).each(function(m) {
m.element.className = m.element.className.replace(/\s+active/g, '')
});
_(document.getElementsByTagName('section')).each(function(s) {
s.className = s.className.replace(/\s+active/g, '')
});
// Add active class to clicked marker, section.
el.className += ' active';
section.className += ' active';
// Pan the map to active marker.
map.ease.location({
lat: f.geometry.coordinates[1]+ 3.7,
lon: f.geometry.coordinates[0]
}).zoom(map.zoom()).optimal();
ArticleScrollChecker.disableScrollCheck(true);
$('article').scrollTop(
$(section).position().top + $('article').scrollTop()
);
setTimeout(function(){
ArticleScrollChecker.disableScrollCheck(false);
},10);
// Optionally use the code below and comment out the above
// to move the map without animation.
// map.centerzoom({
// lat: f.geometry.coordinates[1],
// lon: f.geometry.coordinates[0]
// }, map.zoom());
};
// Add handlers for click, touchend for markers and click on sections.
MM.addEvent(el, 'click', setActive);
MM.addEvent(el, 'touchend', setActive);
section.onclick = setActive;
return el;
});
var map = mapbox.map('map', [tiles, spots]);
map.setZoomRange(3, 7);
map.centerzoom({lon:-96,lat:37}, 5);
map.ui.zoomer.add();
var ArticleScrollChecker = {
previousActive: 0,
scrollTimeout: 0,
scrollDelay: 50,
doScrollCheck: true,
sections: [],
initialize: function() {
//console.log( "::: initialize() :::" );
var scope = this;
$( "article" ).scroll(function(){
scope.handleArticleScroll();
});
this.sections = $("article section");
},