-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathpe.com1.html
More file actions
1097 lines (981 loc) · 55.5 KB
/
Copy pathpe.com1.html
File metadata and controls
1097 lines (981 loc) · 55.5 KB
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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- page id: article--><html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="en" />
<meta name="Keywords" content="perris, police, exchange, thought, gunfire, father, times, hit, first, turned" />
<meta name="Description" content="PERRIS: Woman ordered hit on father of her child, police say | perris, police, exchange, thought, gunfire, father, times, hit, first, turned" />
<meta name="publication_date" content="2015-01-14" />
<meta name="content_type" content="article" />
<meta name="content_title" content="PERRIS: Woman ordered hit on father of her child, police say" />
<meta property="og:title" content="PERRIS: Woman ordered hit on father of her child, police say"/>
<meta property="og:type" content="article"/>
<meta property="og:description" content="PERRIS: Woman ordered hit on father of her child, police say | perris, police, exchange, thought, gunfire, father, times, hit, first, turned"/>
<meta property="og:image" content="http://images.onset.freedom.com/pressenterprise/thumb/ni6w6g-judyavalos.jpg"/>
<meta property="og:url" content="http://www.pe.com/articles/perris-758171-police-exchange.html"/>
<meta property="og:site_name" content="Press Enterprise"/>
<meta name="content_author" content="SARAH BURGE" />
<link rel="canonical" href="http://www.pe.com/articles/perris-758171-police-exchange.html" />
<meta name="content_section" content="news" />
<meta name="sailthru.image.full" content="http://images.onset.freedom.com/pressenterprise/ni6w6g-judyavalos.jpg" />
<meta name="sailthru.image.thumb" content="http://images.onset.freedom.com/pressenterprise/thumb/ni6w6g-judyavalos.jpg" />
<meta name="sailthru.tags" content="news, perris, police, exchange, thought, gunfire, father, times, hit, first, turned" />
<meta name="sailthru.location" content="" />
<meta name="sailthru.author" content="SARAH BURGE" />
<meta name="sailthru.date" content="2015-01-14 15:07:20"/>
<meta name="sailthru.title" content="PERRIS: Woman ordered hit on father of her child, police say" />
<meta property="fb:app_id" content="1413700038878423"/>
<meta name="geo.placename" content="Riverside"/>
<meta name="geo.region" content="US-CA"/>
<meta name="ICBM" content="33.948100, -117.396100"/>
<meta name="geo.position" content="33.948100;-117.396100"/>
<meta name="content_thumbnail" content="http://images.onset.freedom.com/pressenterprise/thumb/ni6w6g-judyavalos.jpg" />
<meta name='parsely-page'
content='{"title": "PERRIS: Woman ordered hit on father of her child, police say",
"link": "http://www.pe.com/articles/perris-758171-police-exchange.html",
"image_url": "http://images.onset.freedom.com/pressenterprise/ni6w6g-judyavalos.jpg",
"type": "post",
"post_id": "758171",
"pub_date": "2015-01-14 15:07:20",
"section": "news",
"author": "SARAH BURGE",
"tags": ["perris", "police", "exchange", "thought", "gunfire", "father", "times", "hit", "first", "turned"]
}' />
<title>PERRIS: Woman ordered hit on father of her child, police say - Press Enterprise</title>
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="alternate" media="handheld" href="" />
<link rel="alternate" type="application/rss+xml" title=" - www.pe.com" href="http://www.pe.com/common/rss/rss.php?catID=24090" />
<!-- Begin Brightcove 3 script -->
<script type="text/javascript" src="http://admin.brightcove.com/js/BrightcoveExperiences.js"></script>
<script type="text/javascript" src="http://admin.brightcove.com/js/APIModules_all.js"></script>
<script type="text/javascript" src="http://common.onset.freedom.com/bc3/seo/js/brightcove.js"></script>
<script type="text/javascript">
var _play = "";
var _selectedVideoIdxInLineup = -1000; //This must be set to -1000 for article video advancement
var _videoId = "";
var _videoIDs = "";
var _isMostViewedVideo = false;
</script>
<!-- End Brightcove 3 script -->
<!-- generated by AdTag class, ads served by DART -->
<script type='text/javascript'>
if(!globals){var globals = {};}
</script>
<script type="text/javascript" src="/common/tools/load.php?js=common_fi_oas,common_dartads"></script>
<script type='text/javascript'>var freedom = new DartAds({domain: 'cnd.rgva.themonitor',taxonomy: 'news/breaking',ref: '',kw: '',seo: 'perris',seo1: 'police',seo2: 'exchange',seo3: 'thought',seo4: 'gunfire',extra: 'pt=default;aid=758171;c1=homepage;c2=breaking-news;c3=perris;c4=news-homepage;',test: '',positions: 'Top,Middle,Middle1,Middle4,x85,x88,x89,x90,x91,Top3,x47,x48,x49,x02,Middle2,x61,OCRPos1,OCRPos2,OCRPos3,OCRPos4' });
</script>
<script type='text/javascript'> function OAS_RICH(position) { freedom.ad(position); } </script>
<script type="text/javascript" src="http://common.onset.freedom.com/tools/load.php?js=common_jquery-1.4.4.min,common_json2,common_jquery/jquery.jcarousel.min,common_jquery-ui-1.8.6.custom.min,common_jquery/jquery.ba-bbq.min,common_jquery/jquery.ifixpng,common_jquery/jquery.cookie,jquery.expander.min,ocr_com_nav,gallery,article,poll,jquery.fancybox.pack,parsely&scode=pressenterprise&v=1">
</script>
<link rel="stylesheet" type="text/css" href="http://common.onset.freedom.com/tools/load.php?css=&scode=pressenterprise"/> <link rel="stylesheet" type="text/css" href="http://common.onset.freedom.com/tools/load.php?css=style,jquery_jcarousel,articlevideoskin,site,gstyle,common_survey,slideshow-long-caption,jquery.fancybox&scode=pressenterprise&v=2" />
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,500,600,700,900' rel='stylesheet' type='text/css'>
<script type="text/javascript">
PageNumber="1";
</script>
<style type="text/css">
#videoEmbedContainer ul {margin:0px!important;}
#embedsList ul li {margin:0px!important;}
</style>
<!--[if lte IE 6]>
<link rel='stylesheet' media='screen' type='text/css' href='http://common.onset.freedom.com/tools/load.php?css=ie6-style&scode=pressenterprise' />
<![endif]-->
<!--[if lt IE 8]><style>
#slideImgDiv span {
display: inline-block;
height: 100%;
}
</style><![endif]-->
<script type="text/javascript" src="http://widget.perfectmarket.com/pressenterprise/load.js"></script>
</head>
<body id="ArticlePage" >
<a id="topopage"></a>
<!--googleoff: all-->
<input type="hidden" name="minPicNum" id="minPicNum" value="2" />
<div id="stats">
<script type="text/javascript" src="http://common.onset.freedom.com/fi/analytics/cms/?scode=pressenterprise&domain=www.pe.com&ctype=article%7Cfree&cid=758171&cname=PERRIS%3A+Woman+ordered+hit+on+father+of+her+child%2C+police+say&cauthor=BY+SARAH+BURGE&shier=news%7Cbreaking+news&ghier=news|breaking&al=free&us=free:not logged in"></script>
<script type="text/javascript">
// The below JSON object will be used to set analytic tags in the gallery.
var analytic = { "url": "http://common.onset.freedom.com/fi/analytics/cms/","data": { "scode": "pressenterprise","domain": "www.pe.com","ctype": "article%7Cfree","cid": "758171","cname": "PERRIS: Woman ordered hit on father of her child, police say","cauthor": "BY SARAH BURGE","pagenum": "","shier": "news|breaking news","ghier": "news|breaking" }}; </script>
</div>
<div id="PageWrap">
<!-- Begin Header -->
<!-- page id: article--><script type="text/javascript" src="http://common.onset.freedom.com/tools/load.php?js=siteuser&scode=pressenterprise" ></script> <div id="TopAd">
<div align="center">
<script type='text/javascript'>freedom.iframe({position: 'Top', dcopt: 'ist'});</script>
</div>
</div>
<div id="PreHead">
<div id="PreNav">
<a href="/sections/login/" class="">Log in</a> <a href="/sections/subscribe/">Subscribe Today</a>
<a href="/sections/help/">Customer Service</a> <a href="http://epaper.pe.com/Olive/ODE/PressEnterprise/">P-Edition</a> <a href="http://www.enterprisemedia.co/">Advertise</a>
<span class="fRight">
<a href="http://www.pe.com/workplaces">Top Workplaces</a><a href="http://www.unidossc.com" class="">UnidosSC.com</a>
</span>
</div>
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('#HeaderSearch a').click(function(event) {
event.preventDefault();
jQuery('#HeaderSearch .search-wrapper').toggle('slide');
});
});
(function() {
var epaperURL = 'http://epaper.pe.com/Olive/ODE/PressEnterprise/';
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent)) {
epaperURL = 'http://epaper.pe.com/Olive/ODE/PressEnterprise/';
}
var l1 = document.getElementById('epaperlink1');
if (l1) l1.href = epaperURL;
}
)();
</script>
</div>
<!-- pieces:1--><div id='NavAnchor'></div><div id='NavWrapper'><ul id="HeaderNavList">
<li class="home"><a class="title" href="/">Home</a></li>
<li class="news selected"><a class="title" href="/sections/news/">News</a></li>
<li class="sports"><a class="title" href="/sections/sports/">Sports</a></li>
<li class="entertainment"><a class="title" href="/sections/entertainment/">Entertainment</a></li>
<li class="business"><a class="title" href="/sections/business/">Business</a></li>
<li class="life"><a class="title" href="/sections/life/">Life</a></li>
<li class="opinion"><a class="title" href="/sections/opinion/">Opinion</a></li>
<li class="blogs"><a class="title" href="/sections/blogs/">Blogs</a></li>
<li class="photos"><a class="title" href="/sections/galleries/gallery/?category_id_list=24161">Photos</a></li>
<li class="obits"><a class="title" href="http://www.legacy.com/obituaries/pe/">Obits</a></li>
</ul><script type="text/javascript">if(navLoad)navLoad();</script>
<a class="register-connect" href="http://connect.pe.com/">Register Connect</a>
<style type="text/css">
#HeaderSearch a { width: 20px; margin-top: 6px; }
#HeaderSearch .gsc-search-button { display: none; width: 0; }
#HeaderSearch .gsc-input { font-size: 12px; height: 10px; margin: 2px auto !important; padding: 4px; text-align: left; width: 110px; }
</style>
<div id="HeaderSearch" class="sprite">
<a href=""></a>
<div class="search-wrapper" style="text-align: center;">
<form name="fisearch" action="/search/" method="get">
<input type="text" name="q" value="" style="padding: 6px 8px !important;margin: 6px auto;text-align: left;height: 10px;width: 110px;background-image: none;"/>
</form>
</div>
</div>
</div><div style="clear:both;"><!-- --></div>
<style type="text/css">#HeaderBanner {background-image: url("http://images.onset.freedom.com/pressenterprise/n4rjth-header.png");}</style> <div id="HeaderBanner" class="dark">
<a id="HeaderLogo" href="/"></a>
<ul id="HeaderTabLinks">
<li class=""><a href="/cars/">CARS</a></li>
<li class=""><a href="/jobs/">JOBS</a></li>
<li class=""><a href="/realestate/">HOMES</a></li>
<li class=""><a href="http://ads.pe.com">Shop</a></li>
<li class=""><a href="http://classifieds.pe.com/">Classifieds</a></li>
</ul>
</div>
<div id='SubNavAnchor'></div><div id='SubNavWrapper'><!--News--><div id="SubNav">
<a href="/sections/news/city-news/" title="City News">City News</a><a href="/sections/news/politics/" title="Politics">Politics</a><a href="/sections/news/topics/" title="Topics">Topics</a><a href="/sections/news/topics/environment/" title="Environment">Environment</a><a href="/sections/news/topics/education/" title="Education">Education</a><a href="/sections/news/announcements/" title="Announcements">Announcements</a><a href="/sections/news/traffic/" title="Traffic">Traffic</a><a href="/sections/galleries/gallery/?category_id_list=24165" title="Photos">Photos</a><a href="/sections/news/blogs/" title="Blogs">Blogs</a>
</div>
<span class="sprite social social-link-gplus" style="margin-right:10px;"><a href="https://plus.google.com/u/0/b/112247491310008794110/+pressenterprise/posts"></a></span>
<span class="sprite social social-link-twitter"><a href="http://twitter.com/#!/pecom_news"></a></span>
<span class="sprite social social-link-fb"><a href="http://www.facebook.com/ThePressEnterprise"></a></span>
</div><div class='DontMissExpanded'><ul><li><a href='/articles/water-758140-park-million.html'><div class='img-box'><img src='http://images.onset.freedom.com/pressenterprise/thumb/ni6jhn-wildrivers.jpg' width='80' height='80' alt='wave-wild-irvine-pool' /></div><span><span class='category'>News</span><h3>TEMECULA: Land for water park could fetch $2.85 million</h3></span></a></li><li><a href='/articles/shobert-758149-murrieta-chief.html'><div class='img-box'><img src='http://images.onset.freedom.com/pressenterprise/thumb/ni6nmu-b88305202z.120150114115859000gm27dv4b.10.jpg' width='80' height='80' alt='city-sandefer-left-counci' /></div><span><span class='category'>News</span><h3>MURRIETA: City bids farewell to outgoing fire chief</h3></span></a></li><li><a href='/articles/cities-758144-loan-state.html'><div class='img-box'><img src='http://images.onset.freedom.com/pressenterprise/thumb/ni6mou-jeffstone.jpg' width='80' height='80' alt='' /></div><span><span class='category'>News</span><h3>STATE SENATE: Jeff Stone raises prospect of loan to help 4 Inland cities </h3></span></a></li><li><a href='/articles/vigil-758152-crash-ruiz.html'><div class='img-box'><img src='http://images.onset.freedom.com/pressenterprise/thumb/ni6p2a-rayruiz.jpeg' width='80' height='80' alt='' /></div><span><span class='category'>News</span><h3>CORONA: Candlelight vigil set for 18-year-old killed in crash</h3></span></a></li></ul><div style='clear:both;'></div></div><script type="text/javascript">
insideGallery=false;
</script>
<!-- End Header -->
<div id="CollapseAd">
<script type="text/javascript">freedom.ad('x40')</script>
<script type="text/javascript">freedom.ad('x61')</script>
</div>
<div id="ContentWrap" class="roundedBox"> <!-- begin of ContentWrap -->
<div id="ArticleContainer" class="roundedBox">
<!--starting of articleLeadContainer div-->
<div id="articleLeadContainer" style="float:left; width:610px;">
<div class="articleTitle">
<!--googleon: all--> <h3 class="category">News</h3>
<h1 data-swiftype-index="true">PERRIS: Woman ordered hit on father of her child, police say</h1>
<div id="article-summary" data-swiftype-index="true"></div>
</div>
<div class="headerBase">
<div class="printMenuStyle2"><div id='socialMedia' style='padding-top: 15px; padding-bottom: 10px;'><div style="float:left;margin-right:5px;"><div class="g-plusone" data-annotation="none"></div></div><div class="fb-like" style="width:91px;float:left;overflow:hidden;padding-top:2px;margin-right:5px;" data-href="http://www.pe.com/articles/perris-758171-police-exchange.html" data-show-faces="false" data-action="like" data-share="true"></div><div style="float: left; padding-right: 0px; padding-top: 2px;">
<script src="http://platform.twitter.com/widgets.js" type="text/javascript"></script>
<a href="http://twitter.com/share" class="twitter-share-button">Tweet</a>
</div><div style="float: right; padding-top: 3px;"><a rel="nofollow" href="mailto:?subject=PRESSENTERPRISE:%20PERRIS%3A%20Woman%20ordered%20hit%20on%20father%20of%20her%20child%2C%20police%20say&body=http%3A%2F%2Fwww.pe.com%2Farticles%2Fperris-758171-police-exchange.html"><img src="/images/btn_email.gif"></a>  <script type="text/javascript" src="http://w.sharethis.com/button/sharethis.js#publisher=93f77c6d-5c37-4ead-83f9-6d5813aaa54a&type=website&style=rotate&buttonText=SHARE"></script></div><div style="clear:both;"></div></div></div><script>(function($){
$(document).ready(function(){
if($('.fb_share_count_top').hasClass('fb_share_no_count')){
$('.fb_share_count_inner').text('0');
$('.fb_share_count_top').removeClass('fb_share_no_count');
$('.fb_share_count_nub_top').removeClass('fb_share_no_count');
}
$('.stbutton:first').attr('class', '');
$('.stbuttontext:first').html('<img src="/images/btn_share.gif">');
});
})(jQuery);
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/platform.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
</div>
</div>
<!--ending of articleLeadContainer div-->
<!-- Begin Right Column -->
<div id="ContentRight">
<ul>
<style type="text/css">
<!--
.advertising {
color:#666666;
font-size:10px;
text-align:left;
}
-->
</style>
<li>
<div class="Section rightAdBox">
<script type="text/javascript">freedom.ad('300x90')</script>
</div>
</li>
<style type="text/css">
<!--
.advertising {
color:#666666;
font-size:10px;
text-align:left;
}
-->
</style>
<li>
<div class="Section rightAdBox">
<script type="text/javascript">freedom.ad('OCRPos1')</script>
</div>
</li>
<!--HubSpot Call-to-Action Code -->
<span class="hs-cta-wrapper" id="hs-cta-wrapper-5cd2c64b-c47b-4c72-b060-47bd57b5f034">
<span class="hs-cta-node hs-cta-5cd2c64b-c47b-4c72-b060-47bd57b5f034" id="hs-cta-5cd2c64b-c47b-4c72-b060-47bd57b5f034">
<!--[if lte IE 8]><div id="hs-cta-ie-element"></div><![endif]-->
<a href="http://cta-redirect.hubspot.com/cta/redirect/156288/5cd2c64b-c47b-4c72-b060-47bd57b5f034"><img class="hs-cta-img" id="hs-cta-img-5cd2c64b-c47b-4c72-b060-47bd57b5f034" style="border-width:0px;" src="https://no-cache.hubspot.com/cta/default/156288/5cd2c64b-c47b-4c72-b060-47bd57b5f034.png" /></a>
</span>
<script charset="utf-8" src="https://js.hscta.net/cta/current.js"></script>
<script type="text/javascript">
hbspt.cta.load(156288, '5cd2c64b-c47b-4c72-b060-47bd57b5f034');
</script>
</span>
<!-- end HubSpot Call-to-Action Code --><li>
<style type="text/css">
@import url("http://civicscience-css.s3.amazonaws.com/clients/pe.com/pe.css");
div.civicscience.ballotbox {width:300px!important}
</style>
<script type="text/javascript" src="https://www.civicscience.com/widget/jspoll/?elt=widget1&tgt=179"></script><div id="widget1"></div>
</li><style type="text/css">
<!--
.advertising {
color:#666666;
font-size:10px;
text-align:left;
}
-->
</style>
<li>
<div class="Section rightAdBox">
<script type="text/javascript">freedom.ad('OCRPos2')</script>
</div>
</li>
<li>
<h3>Trending</h3>
<div class="trendingData">
<div id="most_read_articles"></div>
<script type="text/javascript">
(function() {
var apikey = "pe.com",
secret = "eOGVoDAbL9mMdBlNRtjarJKeljuUc8QdFlsk48xXZg0",
container = "most_read_articles",
type = "popular",
limit = 5,
days = 1,
section = "";
Parsely.loadMaster(apikey, secret, container, type, limit, days, section);
})();
</script>
</div>
</li><style type="text/css">
div.pe-directory {padding-bottom:10px;}
div.pe-directory h2, div.pe-directory h3 {font-family:Geneva, sans-serif;/*text-transform:uppercase*/}
div.pe-directory h2 {/*border-bottom:1px solid #000;padding-bottom:5px;*/font-size:1.6em;font-weight:bold}
div.pe-directory h3 {font-size:1em}
ul.si_featured_businesses {padding-top: 0!important}
div.bdirect_content {margin: 0!important}
div.bdirect_content a, div.bdirect_content a:visited {color: #005689}
div.bdirect_content a:hover{text-decoration:underline}
div.bdirect_content li {font-size:12px;line-height:1.3em}
.si_widget .featured_business ul.contact_info li h5 {height:auto!important}
.si_widget .featured_business ul.contact_info li h5 a {font-size:14px}
.si_widget .featured_business ul.contact_info li h5 a, .si_widget .featured_business ul.contact_info li h5 a:visited {color:#000}
li.phonenumber {color:#000!important}
</style>
<li>
<div class="pe-directory">
<div class="bdirect_content">
<script type="text/javascript" src="http://widget.local.pe.com/widget/v1.0/resource_loader.js"></script>
<script type="text/javascript" src="http://widget.local.pe.com/widget/v1.0/js/featured_business?level=3"></script>
<p style="font-size:11px"><a href="http://local.pe.com/">Riverside Yellow Pages</a></p>
</div>
</div>
</li>
<style type="text/css">
<!--
.advertising {
color:#666666;
font-size:10px;
text-align:left;
}
-->
</style>
<li>
<div class="Section rightAdBox">
<script type="text/javascript">freedom.ad('OCRPos3')</script>
</div>
</li>
<li>
<div class="sidebarWidgetItem roundedBox">
<div class="widgetHeader"><a href="http://event.pe.com"><h3>THINGS TO DO</h3></a>
</div><p> </p><div class="widgetContent">
<iframe height="405" width="300" frameborder="0" marginheight="10" scrolling="no" src="http://event.pe.com/widget"></iframe>
<p> </p>
<div class="corner topLeft"></div>
<div class="corner topRight"></div>
<div class="corner bottomLeft"></div>
<div class="corner bottomRight"></div>
</div> </div>
</li>
<style type="text/css">
<!--
.advertising {
color:#666666;
font-size:10px;
text-align:left;
}
-->
</style>
<li>
<div class="Section rightAdBox">
<script type="text/javascript">freedom.ad('OCRPos4')</script>
</div>
</li>
<script>
jQuery(document).ready(function() {
var opts = {collapseTimer: 4000};
jQuery.each(['beforeExpand', 'afterExpand', 'onCollapse'], function(i, callback) {
opts[callback] = function(byUser) {
var by, msg = '<div class="success">' + callback;
if (callback == 'onCollapse') {
msg += ' (' + (byUser ? 'user' : 'timer') + ')';
}
msg += '</div>';
jQuery(this).parent().parent().append(msg)
}
});
jQuery('dl.expander dd').eq(0).expander();
jQuery('dl.expander dd').slice(1).expander(opts);
jQuery('ul.expander li').expander({
slicePoint: 50,
widow: 2,
expandSpeed: 0,
userCollapseText: '[^]'
});
jQuery('div.expander').expander();
});
</script>
<div id="topjob-contain">
<script type="text/javascript">
(function() {
var useSSL = 'https:' == document.location.protocol;
var src = (useSSL ? 'https:' : 'http:') + '//www.googletagservices.com/tag/js/gpt.js';
document.write('<scr' + 'ipt src="' + src + '"></scr' + 'ipt>');
})();
</script>
<div class="newjobz" name="newjob">
<div id='gpt-topjobs'>
<script type='text/javascript'>
googletag.defineSlot('/5771/cnd.rgva.themonitor/topjobs', [290, 200],'gpt-topjobs')
.addService(googletag.pubads())
.setTargeting('s1',['topjobs'])
.setTargeting('pos',['1']);
googletag.pubads().enableSyncRendering();
googletag.enableServices();googletag.display('gpt-topjobs');
</script>
</div>
</div></div>
<script>
////////////Randomize content on pageload
function randomFromTo(from, to) {
return Math.floor(Math.random() * (to - from + 1) + from);
}
function displayRandomJob() {
var r = randomFromTo(1, jQuery('div.newjobz').length);
jQuery('div.newjobz').hide().eq(r - 1).show();
}
jQuery(document).ready(function() {
displayRandomJob();
jQuery('#jobchanger').click(function() {
displayRandomJob();
});
});
</script>
<style type="text/css">
/*
AdForge Widget
Copyright 2011, Ownlocal Inc
Design by Hunter Hastings
<link id='adforge_styles' href='http://ownlocal-adforge-assets.s3.amazonaws.com/production/adforge.widget.css' media='screen' rel='stylesheet' type='text/css' />
*/
.adforge_widget {
width: 300px;
height: auto;
clear: both;
font-family: arial !important;
position:relative;
}
.adforge_widget_header {
width: 298px !important;
height: 38px;
line-height: 38px;
text-align: center;
font-size: 17px;
font-weight: bold;
color: #777;
border-radius: 5px 5px 0 0; -moz-border-radius: 5px 5px 0 0; -webkit-border-radius: 5px 5px 0 0;
}
ul.adforge_widget_list { width: 300px; list-style: none; margin: 0 !important; padding: 0 !important; }
ul.adforge_widget_list li {
width: 298px !important;
height: 60px;
line-height: 20px;
/* OL_LIGHTGREY_GRADIENT */
/* background: #eeeeee url(images/ol_light_gradient_bg.png) repeat-x top; */
background: #eeeeee;
border: 1px solid #ccc; border-top: 0;
}
ul.adforge_widget_list li a {
display: block;
height: 30px;
overflow: hidden;
width: 278px !important;
padding: 10px;
color: #777;
text-decoration: none;
font-size: 13px;
}
ul.adforge_widget_list li a strong {
color: #555; font-weight: bold;
font-size: 15px;
}
ul.adforge_widget_list li img {
/* background: url("http://adforge.heylocal.us/images/black_gradient.png") repeat-x scroll center top #131313; */
background: #131313;
border: 1px solid black;
border-radius: 8px 8px 8px 8px;
box-shadow: 0 -5px 15px rgba(255, 255, 255, 0.05) inset, 0 2px 3px rgba(255, 255, 255, 0.1);
display: block;
padding: 8px;
position: absolute;
z-index: 1000;
}
ul.adforge_widget_list li a:hover {
color: #444;
}
ul.adforge_widget_list li a:hover strong {
color: #222;
border-bottom: 1px dotted #aaa;
}
ul.adforge_widget_list li.adforge_widget_button {
height: 40px;
border-radius: 0 0 5px 5px;
-moz-border-radius: 0 0 5px 5px;
-webkit-border-radius: 0 0 5px 5px;
}
ul.adforge_widget_list li.adforge_widget_button a {
height: 20px;
text-align: center;
font-size: 11px;
font-weight: bold;
color: #999;
}
ul.adforge_widget_list li.adforge_widget_button a:hover {
color: #666;
}
ul.adforge_widget_list li.adforge_widget_button a img {
vertical-align: middle;
width: 11px;
height: 8px;
padding-left: 2px;
}
/* Color options */
.adforge_widget.gray .adforge_widget_header {
/* OL_DARKGREY_HEADER */
border: 1px solid #bbb;
/* background: url(images/ol_dark_header_bg.png) repeat-x center; */
box-shadow: inset 0 -2px 5px #e1e1e1, 0 1px 2px rgba(0,0,0,0.1);
-webkit-box-shadow: inset 0 -2px 3px #e1e1e1, 0 1px 2px rgba(0,0,0,0.1);
-moz-box-shadow: inset 0 -2px 5px #e1e1e1, 0 1px 2px rgba(0,0,0,0.1);
text-shadow: 0 1px 0 rgba(255,255,255,0.6);
}
.adforge_widget.blue .adforge_widget_header {
box-shadow: 0 !important;
-moz-box-shadow: 0 !important;
-webkit-box-shadow: 0 !important;
/* OL_BLACK_GLOSS */
/* background: #004b76 url(images/ol_blue_gloss_bg.png) repeat-x center; */
background: #004b76;
border: 1px solid #004b76;
color: #fff;
text-shadow: 0 1px 0 rgba(0,0,0,0.3);
}
.adforge_widget.blue ul.adforge_widget_list li {
/* OL_LIGHTBLUE_GRADIENT */
/* background: #dbe8ee url(images/ol_lightblue_gradient.png) repeat-x; */
background: #dbe8ee repeat-x;
border: 1px solid #c5d5dc; border-top: 0;
}
.adforge_widget.blue ul.adforge_widget_list li a {
color: #71858f; }
.adforge_widget.blue ul.adforge_widget_list li a:hover {
color: #576f7b; }
.adforge_widget.blue ul_adforge_widget_list li a strong {
color: #3a4c54; }
.adforge_widget.blue ul_adforge_widget_list li.adforge_widget_button a {
color: #2f5b71; }
.adforge_widget.blue ul_adforge_widget_list li.adforge_widget_button a:hover {
color: #17394b; }
.adforge_widget.black .adforge_widget_header {
box-shadow: 0 !important;
-moz-box-shadow: 0 !important;
-webkit-box-shadow: 0 !important;
/* OL_BLUE_GLOSS */
/* background: #111 url(images/ol_black_gloss_bg.png) repeat-x center; */
background: #111;
border: 1px solid #111;
color: #fff;
text-shadow: 0 1px 0 #111;
}
/* Clearfix
-----------------------------------------------*/
.clearfix:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.clearfix {
display: inline-block;
}
html[xmlns] .clearfix {
display: block;
}
* html .clearfix {
height: 1%;
}
@import url('http://adforge.heylocal.us/stylesheets/facebox.css');
</style>
<li>
<div id='adforge_widget'></div>
<script type='text/javascript' src='http://ads.pe.com/javascripts/adforge.widget.js'></script>
<script type='text/javascript'>
window.onload = adForge2.init({domain: 'ads.pe.com'});
</script>
</li>
<!--HubSpot Call-to-Action Code -->
<span class="hs-cta-wrapper" id="hs-cta-wrapper-a9869948-3383-4b01-9a2b-fbf303762453">
<span class="hs-cta-node hs-cta-a9869948-3383-4b01-9a2b-fbf303762453" id="hs-cta-a9869948-3383-4b01-9a2b-fbf303762453">
<!--[if lte IE 8]><div id="hs-cta-ie-element"></div><![endif]-->
<a href="http://cta-redirect.hubspot.com/cta/redirect/156288/a9869948-3383-4b01-9a2b-fbf303762453"><img class="hs-cta-img" id="hs-cta-img-a9869948-3383-4b01-9a2b-fbf303762453" style="border-width:0px;" src="https://no-cache.hubspot.com/cta/default/156288/a9869948-3383-4b01-9a2b-fbf303762453.png" /></a>
</span>
<script charset="utf-8" src="https://js.hscta.net/cta/current.js"></script>
<script type="text/javascript">
hbspt.cta.load(156288, 'a9869948-3383-4b01-9a2b-fbf303762453');
</script>
</span>
<!-- end HubSpot Call-to-Action Code -->
</ul>
</div>
<!-- End Right Column -->
<!-- Begin Left Column -->
<div id="ContentLeft">
<div id="ArticleHeader">
<div id="articleReporter" class="authorTxt" data-swiftype-index="true">
<p>
<!--googleon: all-->
<span class="articleByline">BY SARAH BURGE</span>
<span class="articleSource"> / STAFF WRITER</span>
</p>
<!--googleoff: all--> </div>
<div class="articleDate">Published: Jan. 14, 2015 Updated: 4:49 p.m.</div>
<div style="clear:both;"></div>
</div>
<div id="ArticleContentWrap" class="roundedBox">
<div id="article-read" class="ui-tabs-panel ui-corner-bottom ui-widget-content">
<div class="theContentBlock" data-swiftype-index="true"><div class="articleExtras"><!--googleon: all--><div class="articleImg-wrapper" data-swiftype-index="true"><div id="expandable" class="articleImg">
<div align="center"> <script type="text/javascript">
insideGallery=true;
var photoLinks = '';
var photoLinks = {
sitefullname : "The Press Enterprise",
cleanHeadline : new Array(),
cleansitefullname : "The Press Enterprise",
buybutton : "1",
buybuttonthis : new Array(),
buybuttontext : "Buy Photo",
buybuttonbacktext : "Buy Photo",
buybuttonlink : new Array(),
printbutton : "1",
printbuttontext : "Print Photo",
printbuttonlink : new Array()
}
// photoLinks object string variables
photoLinks.buybutton='1';
photoLinks.buybuttontext='Buy Photo';
photoLinks.buybuttonbacktext='&backtext=Return%20to%20the%20Photo';
photoLinks.printbutton='1';
photoLinks.printbuttontext='Print Photo';
photoLinks.sitefullname='The Press Enterprise';
photoLinks.cleansitefullname='The Press Enterprise';
slideshow.slideThumb[0]='<img id="img1" src="http://images.onset.freedom.com/pressenterprise/thumb/ni6w6g-judyavalos.jpg" border="0" alt="" />';
slideshow.slideSrc[0]='http://images.onset.freedom.com/pressenterprise/gallery/ni6w6g-judyavalos.jpg';
slideshow.slideWidth[0]='524';
slideshow.slideHeight[0]='656';
slideshow.slideAlt[0]='commit-shooting-conspirac';
slideshow.slideTitle[0]='commit-shooting-conspirac';
slideshow.slideLongInfo[0]='Judy Avalos, 20, was charged with conspiracy to commit murder after a shooting near Perris that injured her boyfriend.|RIVERSIDE COUNTY SHERIFF\'S DEPT./CONTRIBUTED IMAGE';
photoLinks.buybuttonlink[0]=""
photoLinks.printbuttonlink[0]='/sections/printer/photo/?id=758171&pic=1';
photoLinks.cleanHeadline[0]='PERRIS: Woman ordered hit on father of her child, police say';
slideshow.maxheight=420;slideshow.maxwidth=560;</script>
<div id="galleryWraper" class="">
<div class="gTop" >
<h3>PERRIS: Woman ordered hit on father of her child, police say</h3>
<div class="soical">
<span class="close-button sprite"></span>
<div class="photoLinks">
<div class="photoLinksButton"><a href="/sections/printer/photo/?id=758171&pic=0" class="photoLink" target="_blank">Print Photo</a></div> </div>
<div id="shareIcons">
<div class="addthis_toolbox">
<div class="custom_images">
<a class="addthis_button_email"><img src="http://common.onset.freedom.com/images/gallery/mail-ico.jpg" alt="Email This" /></a>
<a class="addthis_button_facebook"><img src="http://common.onset.freedom.com/images/gallery/fb-ico.jpg" alt="Share to Facebook" /></a>
<a class="addthis_button_twitter"><img src="http://common.onset.freedom.com/images/gallery/twitter-ico.jpg" alt="Share to Twitter" /></a>
<a class="addthis_button_more">Share</a>
</div>
</div>
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=YOUR-ACCOUNT-ID"></script>
</div>
<div id="PinButton">
<img src="/common/images/pin-favicon.png"/>
<a href="javascript:void((function(){var e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','http://assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);document.body.appendChild(e)})()); " >Pin It</a>
</div>
<a href="/sections/galleries/" target="_blank" class="viewAll">More Galleries</a> </div>
<div class="actions"><div id="Play" class="galleryLink"></div><div id="Pause" class="galleryLink pause" style="display:none;"></div></div>
</div>
<!--/gTop -->
<div class="gContent">
<div id="img">
<div id="galleryAds" style="display:none;">
<div class="advertising">ADVERTISEMENT</div>
<script type="text/javascript">
freedom.iframe({
position: 'Middle4'
})
</script>
</div>
<div class="expand-canvas"><span class="expand sprite"></span></div>
<div id="slideContainerDiv">
<div id="slideImgDiv">
<img src="http://images.onset.freedom.com/pressenterprise/gallery/ni6w6g-judyavalos.jpg" alt="commit-shooting-conspirac" title="commit-shooting-conspirac" width="524" height="656" class="galleryLink" id="fullImage" />
</div>
</div>
<div id="Next" class="galleryLink sprite"><a href="?pic=1" onclick="return false;" title="Next Photo"> </a></div><div id="Prev" class="galleryLink sprite"><a href="?pic=1" onclick="return false;" title="Previous Photo"> </a></div>
<div id="otherImages">
<div class="closeOther"></div>
<div id="otherThumbs">
</div><!--/otherThumbs -->
<div id="hiddenresult"></div>
<div id="pagination"></div>
</div><!--/otherImage -->
</div><!--/img -->
</div>
<!--/gContent -->
<div class="gBottom">
<script type="text/javascript">slideshow.showThumbNails();</script>
<div id="slideInfoDiv" data-swiftype-index="true">
<div class="cutline">Judy Avalos, 20, was charged with conspiracy to commit murder after a shooting near Perris that injured her boyfriend.</div>
<div class="credit">RIVERSIDE COUNTY SHERIFF'S DEPT./CONTRIBUTED IMAGE</div>
</div>
<div class="articleTabLink"><a href="/articles/perris-758171-police-exchange.html">Related article » </a></div>
</div>
<!--/gBottom -->
</div>
<!--/galleryWraper -->
<div class="viewAllGalleries">
</div>
</div></div></div><!--googleoff: all--> <script type="text/javascript">
jQuery('.articleImg-wrapper').height(jQuery('.articleImg').outerHeight(true));
jQuery('.expand-canvas').click(function() {
jQuery('#expandable').addClass('expanded');
});
jQuery('.close-button').click(function() {
jQuery('#expandable').removeClass('expanded');
});
</script></div><!-- end articleExtras --><!--googleon: all--><p>After a man was shot four times in an exchange of gunfire near Perris, police at first thought it might have been a drug deal gone wrong.<!--googleoff: all--></p><!--googleon: all-->
<p>But their focus quickly turned to the 20-year-old mother of the man’s child. She is now accused of orchestrating an attempt to kill him. The man survived his injuries.<!--googleoff: all--></p><!--googleon: all-->
<p>Judy Avalos, of Perris, was arrested at the hospital where she was visiting her injured boyfriend the day after the Dec. 30 shooting. She has pleaded not guilty to conspiracy to commit murder and is being held in lieu of $1 million bail.<!--googleoff: all--></p><!--googleon: all-->
<p>Neither the gunman, nor a man believed to have accompanied him, have been identified, Lt. David Lelevier said. The gunman’s compensation for the shooting appears to have been not a cash payment but a romantic relationship with Avalos, he said.<!--googleoff: all--></p><!--googleon: all-->
<p>Defense attorney Nic Cocis said Avalos did not seek to have her boyfriend killed. Avalos believed he was going to be beaten up, not shot, Cocis said.<!--googleoff: all--></p><!--googleon: all-->
<p>The shooting was reported to the Riverside County Sheriff’s Department about 9:30 p.m. in the 23300 block of Edmond Street in the unincorporated area known as Good Hope.<!--googleoff: all--></p><!--googleon: all-->
<p>Avalos told investigators that she and her 24-year-old boyfriend had gone to Bakersfield together to retrieve a Jeep and she followed him back to Riverside County in her pickup, search warrant documents say. The boyfriend waited outside in the Jeep while Avalos went into her mother’s house to pick up their 4-year-old daughter. Avalos said she had been inside about 10 minutes when she heard a hail of gunfire and dropped to the floor.<!--googleoff: all--></p><!--googleon: all-->
<p>After the gunfire stopped, Avalos said she went outside to find her boyfriend, with four gunshot wounds, walking up the driveway and holding a gun, Investigator Robert Cornett wrote in search warrant documents.<!--googleoff: all--></p><!--googleon: all-->
<p>Deputies later discovered a car, which had been reported stolen, abandoned a few blocks away. It was riddled with bullet holes.<!--googleoff: all--></p><!--googleon: all-->
<p>The boyfriend told investigators that the shooter and another man were in a white car that pulled up next to him while he was parked on Edmond Street, search warrant documents say. He said the car had driven past him, stopped for a few minutes at the dead end of the street, then pulled up next to him with a window down.<!--googleoff: all--></p><!--googleon: all-->
<p>The men in the car told him they were lost and asked for directions to Highway 74. A minute or two later, he said, one of the men pulled a gun and started shooting at him. He said he grabbed the gun under his seat and fired back at them as the car drove off, search warrant documents say.<!--googleoff: all--></p><!--googleon: all-->
<p>“(He) went on to say that Avalos had a strange conversation with him a few days prior,” Cornett wrote. “He said she called him up and asked him if he had been shot at.”<!--googleoff: all--></p><!--googleon: all-->
<p>When investigators questioned Avalos about the conversation, she said she had had a dream about it, adding that “when she has a dream about things, they come true,” Cornett wrote.<!--googleoff: all--></p><!--googleon: all-->
<p>She denied having anything to do with the shooting and let deputies download data from her cell phone.<!--googleoff: all--></p><!--googleon: all-->
<p>Investigators said they found several suspicious texts, written in Spanish, that had been deleted from the phone. Avalos wrote to someone saying she wanted them to take out only her boyfriend and that it had to be tonight – Dec. 30, search warrant papers say.<!--googleoff: all--></p><!--googleon: all-->
<p>She wrote that he would be in a Jeep parked in front of her mother’s house and the person replied that he was set with two people for tonight. At 9:24 p.m., Avalos texted to say they were there. The other person replied, telling Avalos to delete the text messages before “they do their job,” Cornett wrote.<!--googleoff: all--></p><!--googleon: all-->
<p>After she was arrested, Avalos told investigators her boyfriend had been mistreating her and not letting her leave the house to go out with her friends, Cornett wrote. Avalos said he would point a gun at her and tell her he was going to kill her, but that she had never reported it to police, search warrant papers say.<!--googleoff: all--></p><!--googleon: all-->
<p>“She said they had been arguing all week and she was just ‘mad’ at him,” Cornett wrote. “She said she was wrong for what she did but did not know any other way to get out of the relationship.”<!--googleoff: all--></p><!--googleon: all--><!--googleoff: all--><br /></div><div id="pagination"> <ul></u></div> <div id="articleAttachment" data-swiftype-index="true">
</div>
<div id="article-read-footer">
<div class="article-page-links"></div>
<div id="morenewsrecommender" class="roundedBoxBorder midPadding">
<a href='/common/archives/?catID=24090'><h3>More from Breaking News</h3></a>
<ul>
<li class="articlelist newstogram">
<div class="img-box">
</div>
<div>
<h4><a href="/articles/school-758173-fontana-threat.html">FONTANA: Fontana High search fails to find explosives (UPDATE 2)</a></h4>
</div>
</li>
<li class="articlelist newstogram">
<div class="img-box">
<img src="http://images.onset.freedom.com/pressenterprise/thumb/s-defaultcrime.jpg" width="80" height="60" alt="" />
</div>
<div>
<h4><a href="/articles/police-758189-employees-murrieta.html">MURRIETA: Taco Bell robbed at gunpoint</a></h4>
</div>
</li>
<li class="articlelist newstogram">
<div class="img-box">
<img src="http://images.onset.freedom.com/pressenterprise/thumb/s-defaultlawenforcement.jpg" width="80" height="60" alt="" />
</div>
<div>
<h4><a href="/articles/big-758183-bear-chase.html">HWY. 330: Tenant dispute prompts mountain highway chase, arrest</a></h4>
</div>
</li>
</ul>
</div>
<div class="printMenuStyle2"><a rel="nofollow" href="#article-comments">COMMENTS</a> | <a rel="nofollow" href="/common/printer/view.php?db=pressenterprise&id=758171" target="_blank">PRINT</a> | <a rel="nofollow" href="mailto:?subject=PRESSENTERPRISE:%20PERRIS%3A%20Woman%20ordered%20hit%20on%20father%20of%20her%20child%2C%20police%20say&body=http%3A%2F%2Fwww.pe.com%2Farticles%2Fperris-758171-police-exchange.html">EMAIL</a> |   <script language="javascript" type="text/javascript">SHARETHIS.addEntry({title:'PERRIS: Woman ordered hit on father of her child, police say',summary:'After a man was shot four times in an exchange of gunfire near Perris, police at first thought it might have been a drug deal gone wrong.',icon: 'http://images.onset.freedom.com/pressenterprise/thumb/ni6w6g-judyavalos.jpg'}, {button:true} );</script></div> </div>
</div>
<div id="recommender"></div>
<script type="text/javascript">
var drJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://");
document.write(unescape("%3Cscript src='" + drJsHost + "static.newstogram.com/rmv2/js/recommenderv2-h2.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try{
var _recommender = new _rec({
apiKey: '07b3a7dd790c85722dd6442c1e256f63',
cssUrl: 'http://static.newstogram.com/rmv2/css/recommender_styles-h.css',
title: 'Recommended for You',
limit: '4',
width: '590',
height: '275',
truncate: '48',
adside: 'left',
section: '0000'
});
_recommender.renderPersonalized();
} catch(err) {};
</script>
<div class="marginLarge"></div>
<div id="circularhub_module_1583"></div><script src="//api.circularhub.com/1583/933a3e1010bd5ab2/circularhub_module.js"></script>
<div id="article-comments">
<div id="slComments">
<h3 class="commentsHeader">Join the conversation</h3>
<p class="policy">Comments are encouraged, but you must follow our <a target="_blank" rel="nofollow" href="http://www.freedom.com/eula.html">User Agreement</a></p>
<p>Keep it civil and stay on topic. No profanity, vulgarity, racial slurs or personal attacks. People who harass others or joke about tragedies will be blocked. By posting your comment, you agree to allow Freedom Communications, Inc. the right to republish your name and comment in additional Freedom publications without any notification or payment.</p>
</div>
</div>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '1413700038878423', // App ID
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
oauth : true, // enable OAuth 2.0
xfbml : true // parse XFBML
});
// Additional initialization code here
};
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "http://connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}(document));
</script>
<style>
#fbComments{
text-align:center;
width:600px;
padding-left:0px;
}
</style>
<div class="fb-comments" data-href="http://www.pe.com/articles/perris-758171-police-exchange.html" data-num-posts="5" data-width="600"></div>
<div class="clear"></div>
</div>
</div>
<!-- Begin Footer -->
<div id="BotAd">
<script type='text/javascript'>freedom.iframe({position: 'Top3'});</script>
</div>
<div id="ContentFooter" class="roundedBox">
<div id="footerTopLinks">
<span><a href="#">Return to Top</a></span>
<ul id="footerTopLinksList"><!-- inc -->
<li class="home"><a class="title" href="/">Home</a></li>
<li class="news"><a class="title" href="/sections/news/">News</a></li>
<li class="news"><a class="title" href="/sections/news/city-news/">Cities</a></li>
<li class="sports"><a class="title" href="/sections/sports/">Sports</a></li>
<li class="entertainment"><a class="title" href="/sections/entertainment/">Entertainment</a></li>
<li class="business"><a class="title" href="/sections/business/">Business</a></li>
<li class="life"><a class="title" href="/sections/life/">Life</a></li>
<li class="opinion"><a class="title" href="/sections/opinion/">Opinion</a></li>
<li class="business"><a class="title" href="/sections/blogs/">Blogs</a></li>
<li class="travel"><a class="title" href="/sections/galleries/gallery/?category_id_list=24161">Photos</a></li>
<li class="life"><a class="title" href="http://www.legacy.com/obituaries/pe/">Obituaries</a></li>
<li class="weather"><a class="title" href="http://weather.pe.com/">Weather</a></li>
<li><a href="/sections/realestate/">Real Estate</a></li>
<li><a href="/sections/jobs/">Jobs</a></li>
<li><a href="/sections/cars/">Cars</a></li>
<!-- <li><a href="/deals">Deals</a></li> -->
<li><a href="http://classifieds.pe.com/">Classifieds</a></li>
</ul><script type="text/javascript">if(navLoad)navLoad();</script>
</div>
<div id="footerBottom">
<a href="/" class="footerFlag"></a>
<div id="footerCopyright">
Copyright © <script type="text/javascript"> tDate=new Date(); update=tDate.getFullYear(); document.write(update); </script> The Press-Enterprise. All Rights Reserved.
<br />
<a href="/sections/about/">About Us</a> | <a href="http://www.freedom.com/privacy.html">Privacy Policy</a> | <a href="http://www.freedom.com/eula.html">User Agreement</a> | <a href="/sections/sitemap/">Site Map</a>
</div>
</div>
<!--<div class="corner topLeft"></div>
<div class="corner topRight"></div>
<div class="corner bottomLeft"></div>
<div class="corner bottomRight"></div>-->
</div>
<!-- ContextWeb -->
<img src="http://bh.contextweb.com/bh/set.aspx?action=add&advid=1518&token=FOCI1" width="1" height="1" border="0">
<script language= "JavaScript" type="text/javascript">
ord=Math.random()*10000000000000000;
document.write('<img src="http://ad.doubleclick.net/activity;src=1379696;dcnet=4155;boom=34742;sz=1x1;ord='+ ord +'?" width="1" height="1" border="0" alt="">');
</script>
<noscript>
<img src="http://ad.doubleclick.net/activity;src=1379696;dcnet=4155;boom=34742;sz=1x1;ord=1?" width="1" height="1" border="0" alt="">
</noscript>
<script type="text/javascript">
(function() {
var epaperURL = 'http://digital.olivesoftware.com/Olive/ODE/PressEnterprise';
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent)) {
epaperURL = 'http://digital.olivesoftware.com/Olive/ODE/PressEnterprise/';
}