-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdb_dump.sql
1800 lines (1573 loc) · 852 KB
/
db_dump.sql
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
-- MySQL dump 10.13 Distrib 5.1.61, for redhat-linux-gnu (i386)
--
-- Host: localhost Database: daytonva
-- ------------------------------------------------------
-- Server version 5.1.61
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `addresses`
--
DROP TABLE IF EXISTS `addresses`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `addresses` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) DEFAULT NULL,
`address_1` varchar(255) DEFAULT NULL,
`address_2` varchar(255) DEFAULT NULL,
`city` varchar(255) DEFAULT NULL,
`state` varchar(255) DEFAULT NULL,
`postal_code` varchar(255) DEFAULT NULL,
`address_type` varchar(255) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`country_id` int(11) NOT NULL DEFAULT '232',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=747 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `addresses`
--
LOCK TABLES `addresses` WRITE;
/*!40000 ALTER TABLE `addresses` DISABLE KEYS */;
INSERT INTO `addresses` VALUES (1,1,'869 Camelot Lane','','Harrisonburg','VA','22801','billing','2011-10-05 18:22:04','2011-10-05 18:22:04',232),(2,1,'869 Camelot Lane','','Harrisonburg','VA','22801','mailing','2011-10-05 18:22:04','2011-10-05 18:22:04',232),(25,13,'chak no.214GB samundri faisalabad','house no.925 street no.6/7 Warispura faisalabad','faisalabad','punjab','38000','billing','2011-11-19 19:24:04','2011-11-19 19:24:04',177),(5,3,'828 W Main St','','Sugarcreek','OH','44681','billing','2011-10-12 12:57:49','2012-04-17 17:48:34',232),(6,3,'828 W Main St','','Sugarcreek','OH','44681','mailing','2011-10-12 12:57:49','2012-04-17 17:48:47',232),(7,4,'28553 SR 751','','Newcomerstown','Oh','43832','billing','2011-10-13 14:34:09','2011-10-13 14:34:09',232),(8,4,'28553 SR 751','','Newcomerstown','Oh','43832','mailing','2011-10-13 14:34:09','2011-10-13 14:34:09',232),(9,5,'9033 Valley View Rd','','McGaheysville','VA','22840','billing','2011-10-17 15:33:30','2011-10-17 15:33:30',232),(10,5,'9033 Valley View Rd','','McGaheysville','VA','22840','mailing','2011-10-17 15:33:30','2011-10-17 15:33:30',232),(11,6,'9033 Valley View Road','','McGaheysville','Va','22840','billing','2011-10-17 16:13:54','2011-10-17 16:19:46',232),(12,6,'9033 Valley View Road','','McGaheysville','Va','22840','mailing','2011-10-17 16:13:54','2011-10-17 16:18:16',232),(13,7,'5170 County Road 314','','Millersburg','OH','44654','billing','2011-10-19 16:11:57','2011-12-05 19:08:48',232),(14,7,'5170 County Road 314','','Millersburg','OH','44654','mailing','2011-10-19 16:11:57','2011-12-05 19:08:21',232),(15,8,'828 W Main St','','Sugarcreek','OH','44681','billing','2011-10-19 17:03:34','2012-07-03 18:40:15',232),(16,8,'4478 RIDGE RD SW','','BALTIC','OH','43804','mailing','2011-10-19 17:03:34','2011-10-19 17:03:34',232),(17,9,'6598 TR 327','','Millersburg','OH','44654','billing','2011-10-20 17:21:34','2011-10-20 17:21:34',232),(18,9,'6598 TR 327','','Millersburg','OH','44654','mailing','2011-10-20 17:21:34','2011-10-20 17:21:34',232),(19,10,'308 Cary point Drive','','Cary','IL','60013','billing','2011-11-17 22:55:51','2011-11-17 22:55:51',232),(20,10,'308 Cary point Drive','','Cary','IL','60013','mailing','2011-11-17 22:55:51','2011-11-17 22:55:51',232),(21,11,'144 East Caren Drive','','Grantville','Pennsylvania','17028','billing','2011-11-18 16:28:06','2011-11-18 16:28:06',232),(22,11,'144 East Caren Drive','','Grantville','Pennsylvania','17028','mailing','2011-11-18 16:28:06','2011-11-18 16:28:06',232),(23,12,'5417 Newquay Ln','','Salida','CA','95368','billing','2011-11-18 18:39:16','2011-11-18 18:39:16',232),(24,12,'5417 Newquay Ln','','Salida','CA','95368','mailing','2011-11-18 18:39:16','2011-11-18 18:39:16',232),(26,13,'chak no.214GB samundri faisalabad','house no.925 street no.6/7 Warispura faisalabad','faisalabad','punjab','38000','mailing','2011-11-19 19:24:04','2011-11-19 19:24:04',177),(27,14,'1715 Cleveland Hwy','','Gainesville','Ga','30501','billing','2011-11-21 02:46:57','2011-11-21 02:46:57',232),(28,14,'1715 Cleveland Hwy','','Gainesville','Ga','30501','mailing','2011-11-21 02:46:57','2011-11-21 02:46:57',232),(29,15,'1279 Woodlyn Dr.','','Denver','PA','17517','billing','2011-11-21 18:11:09','2011-11-21 18:11:09',232),(30,15,'1279 Woodlyn Dr.','','Denver','PA','17517','mailing','2011-11-21 18:11:09','2011-11-21 18:11:09',232),(31,16,'12264 Millertwon Rd','','Fulks Run','VA','22830','billing','2011-11-21 18:24:47','2012-04-17 10:44:48',232),(32,16,'12264 Millertown RD','','Fulks RUn','VA','22830','mailing','2011-11-21 18:24:47','2012-04-17 10:44:15',232),(33,17,'10 North Chestnut St.','','Shenandoah','Pennsylvania','17976','billing','2011-11-21 20:29:35','2011-11-21 20:29:35',232),(34,17,'10 North Chestnut St.','','Shenandoah','Pennsylvania','17976','mailing','2011-11-21 20:29:35','2011-11-21 20:29:35',232),(35,18,'850 e utah valley dr','','Am Fo','UT','84003','billing','2011-11-21 21:46:34','2011-11-21 21:46:34',232),(36,18,'850 e utah valley dr','','Am Fo','UT','84003','mailing','2011-11-21 21:46:34','2011-11-21 21:46:34',232),(37,19,'Oregon','Adasd','Kralupy Nad','Czech Republic',NULL,'billing','2011-11-22 00:07:45','2011-11-22 00:07:45',232),(38,19,'Oregon','Adasd','Kralupy Nad','Czech Republic',NULL,'mailing','2011-11-22 00:07:45','2011-11-22 00:07:45',232),(39,20,'Istanbul','Istanbul','Istanbul','Istanbul',NULL,'billing','2011-11-23 17:03:16','2011-11-23 17:03:16',232),(40,20,'Istanbul','Istanbul','Istanbul','Istanbul',NULL,'mailing','2011-11-23 17:03:17','2011-11-23 17:03:17',232),(41,21,'5 Logan\'s Lane','','Parry Sound','Ontario','P2A 1H3','billing','2011-11-23 21:01:30','2011-11-23 21:01:30',37),(42,21,'5 Logan\'s Lane','','Parry Sound','Ontario','P2A 1H3','mailing','2011-11-23 21:01:30','2011-11-23 21:01:30',37),(43,22,'118 Rothsville station rd','','lititz','pa','17543','billing','2011-11-24 15:03:31','2011-11-24 15:03:31',232),(44,22,'118 Rothsville station rd','','lititz','pa','17543','mailing','2011-11-24 15:03:31','2011-11-24 15:03:31',232),(45,23,'Hauptstrasse 29','','Pöttsching','Burgenland','7033','billing','2011-11-24 18:36:24','2011-12-11 19:09:24',11),(46,23,'Hauptstrasse 29','','Pöttsching','Burgenland','7033','mailing','2011-11-24 18:36:24','2011-11-24 18:36:24',11),(47,24,'23111 Berendo Ave','','Torrance','CA','90502','billing','2011-11-25 05:12:07','2011-11-25 05:12:07',232),(48,24,'23111 Berendo Ave','','Torrance','CA','90502','mailing','2011-11-25 05:12:07','2011-11-25 05:12:07',232),(49,25,'40 N WENRICK STREET','','COVINGTON','OHIO','45318','billing','2011-11-26 12:54:25','2011-11-26 12:54:25',232),(50,25,'40 N WENRICK STREET','','COVINGTON','OHIO','45318','mailing','2011-11-26 12:54:25','2011-11-26 12:54:25',232),(51,26,'Dorfstrasse 36','','Hasle bei Burgdorf','Bern','3415','billing','2011-11-26 21:31:43','2011-11-26 21:31:43',42),(52,26,'Dorfstrasse 36','','Hasle bei Burgdorf','Bern','3415','mailing','2011-11-26 21:31:43','2011-11-26 21:31:43',42),(53,27,'328 Choctaw Est. Cr','','Sherman','Texas','75092','billing','2011-11-28 18:03:23','2011-11-28 18:03:23',232),(54,27,'328 Choctaw Est. Cr','','Sherman','Texas','75092','mailing','2011-11-28 18:03:23','2011-11-28 18:03:23',232),(55,28,'1338 W. King St.','','York','PA','17404','billing','2011-11-29 04:46:02','2011-11-29 04:46:02',232),(56,28,'1338 W. King St.','','York','PA','17404','mailing','2011-11-29 04:46:02','2011-11-29 04:46:02',232),(57,29,'255 Hartings Park Road','','Denver','PA','17517','billing','2011-12-01 14:07:27','2011-12-01 14:07:27',232),(58,29,'255 Hartings Park Road','','Denver','PA','17517','mailing','2011-12-01 14:07:27','2011-12-01 14:07:27',232),(59,30,'Flat 4','158 Otley Road','Leeds','West Yorkshire','LS165LG','billing','2011-12-02 10:30:39','2012-05-21 17:13:29',76),(60,30,'Flat 4','158 Otley Road','Leeds','West Yorkshire','LS165LG','mailing','2011-12-02 10:30:39','2011-12-02 10:30:39',76),(61,31,'10672 Blind Lane','','Shippensburg','Pennsylvania','17257','billing','2011-12-02 13:19:56','2011-12-02 13:19:56',232),(62,31,'10672 Blind Lane','','Shippensburg','Pennsylvania','17257','mailing','2011-12-02 13:19:56','2011-12-02 13:19:56',232),(63,32,'2498 Rochester Townline','','Staples','Ontario','N0P 2J0','billing','2011-12-03 18:00:56','2011-12-03 18:00:56',37),(64,32,'2498 Rochester Townline','','Staples','Ontario','N0P 2J0','mailing','2011-12-03 18:00:56','2011-12-03 18:00:56',37),(65,33,'36370 Avenue 16','','Madera','CA','93636-8246','billing','2011-12-04 02:31:12','2011-12-04 02:31:12',232),(66,33,'36370 Avenue 16','','Madera','CA','93636-8246','mailing','2011-12-04 02:31:12','2011-12-04 02:31:12',232),(67,34,'200 Law Avenue','','Moncks Corner','SC','29461','billing','2011-12-05 19:08:33','2011-12-05 19:08:33',232),(68,34,'200 Law Avenue','','Moncks Corner','SC','29461','mailing','2011-12-05 19:08:33','2011-12-05 19:08:33',232),(69,35,'136 Matier Ave.','PO Box 426','Wheatley','ON','N0P 2P0','billing','2011-12-05 21:03:24','2011-12-05 21:03:24',37),(70,35,'136 Matier Ave.','PO Box 426','Wheatley','ON','N0P 2P0','mailing','2011-12-05 21:03:25','2011-12-05 21:03:25',37),(71,36,'4048 Ridge RD','','Gordonville','PA','17529','billing','2011-12-07 01:37:57','2011-12-07 01:37:57',232),(72,36,'4048 Ridge RD','','Gordonville','PA','17529','mailing','2011-12-07 01:37:57','2011-12-07 01:37:57',232),(73,37,'1326 White Hall Road','','Turbotville','PA','17772','billing','2011-12-07 02:52:32','2011-12-07 02:52:32',232),(74,37,'1326 White Hall Road','','Turbotville','PA','17772','mailing','2011-12-07 02:52:32','2011-12-07 02:52:32',232),(75,38,'1326 White Hall Road','','Turbotville','PA','17772','billing','2011-12-07 03:10:59','2011-12-07 03:10:59',232),(76,38,'1326 White Hall Road','','Turbotville','PA','17772','mailing','2011-12-07 03:10:59','2011-12-07 03:10:59',232),(77,39,'6269e 600n','','KOKOMO','Indiana','46901','billing','2011-12-09 13:51:01','2011-12-09 13:51:01',232),(78,39,'6269e 600n','','KOKOMO','Indiana','46901','mailing','2011-12-09 13:51:01','2011-12-09 13:51:01',232),(79,40,'1615 Pinola Dr.','','Shippensburg','PA','17257','billing','2011-12-09 15:44:00','2011-12-09 15:44:00',232),(80,40,'1615 Pinola Dr.','','Shippensburg','PA','17257','mailing','2011-12-09 15:44:00','2011-12-09 15:44:00',232),(81,41,'123 main st','','salt lake city','ut','84121','billing','2011-12-09 22:30:06','2011-12-09 22:30:06',232),(82,41,'123 main st','','salt lake city','ut','84121','mailing','2011-12-09 22:30:06','2011-12-09 22:30:06',232),(83,42,'437 Valley Lane','','Collinsville','IL','62234','billing','2011-12-10 02:51:40','2011-12-10 02:51:40',232),(84,42,'437 Valley Lane','','Collinsville','IL','62234','mailing','2011-12-10 02:51:40','2011-12-10 02:51:40',232),(85,43,'105 horseshoe rd','','leola','pa','17540','billing','2011-12-10 04:00:45','2011-12-10 04:00:45',232),(86,43,'105 horseshoe rd','','leola','pa','17540','mailing','2011-12-10 04:00:45','2011-12-10 04:00:45',232),(87,44,'P.O. Box 384','','Bethel','PA','19507','billing','2011-12-10 15:46:52','2011-12-10 15:46:52',232),(88,44,'P.O. Box 384','','Bethel','PA','19507','mailing','2011-12-10 15:46:52','2011-12-10 15:46:52',232),(89,45,'223 Forgedale Road','','Fleetwood','PA','19522','billing','2011-12-11 19:50:39','2011-12-11 19:50:39',232),(90,45,'223 Forgedale Road','','Fleetwood','PA','19522','mailing','2011-12-11 19:50:39','2011-12-11 19:50:39',232),(91,46,'728 N 350 W','','Flora','IN','46929','billing','2011-12-12 04:08:17','2011-12-12 04:08:17',232),(92,46,'728 N 350 W','','Flora','IN','46929','mailing','2011-12-12 04:08:17','2011-12-12 04:08:17',232),(93,47,'Birchrunville\r\n','Birchwood\r\n','Bird City\r\n','Bird in Hand\r\n',NULL,'billing','2011-12-12 11:10:09','2011-12-12 11:10:09',232),(94,47,'Birchrunville\r\n','Birchwood\r\n','Bird City\r\n','Bird in Hand\r\n',NULL,'mailing','2011-12-12 11:10:09','2011-12-12 11:10:09',232),(95,48,'46954 County Road 18','','Brooten','MN','56316','billing','2011-12-12 16:48:41','2011-12-12 16:48:41',232),(96,48,'46954 County Road 18','','Brooten','MN','56316','mailing','2011-12-12 16:48:41','2011-12-12 16:48:41',232),(97,49,'482 Faber St.','','Pickerington','OH','43147','billing','2011-12-12 20:13:40','2011-12-12 20:13:40',232),(98,49,'482 Faber St.','','Pickerington','OH','43147','mailing','2011-12-12 20:13:40','2011-12-12 20:13:40',232),(99,50,'7819 Valley View Ln','','Greencastle','Pennsylvania','17225','billing','2011-12-13 00:50:13','2011-12-13 00:50:13',232),(100,50,'7819 Valley View Ln','','Greencastle','Pennsylvania','17225','mailing','2011-12-13 00:50:13','2011-12-13 00:50:13',232),(101,51,'Str. Deliu Petroiu nr 5 ap 12','','Timisoara','Timis','','billing','2011-12-13 20:34:35','2011-12-13 20:34:35',188),(102,51,'Str. Deliu Petroiu nr 5 ap 12','','Timisoara','Timis','','mailing','2011-12-13 20:34:35','2011-12-13 20:34:35',188),(103,52,'6818 wheelbarger rd','','dayton','va','22821','billing','2011-12-15 17:04:32','2011-12-15 17:04:32',232),(104,52,'6818 wheelbarger rd','','dayton','va','22821','mailing','2011-12-15 17:04:32','2011-12-15 17:04:32',232),(105,53,'528 Grant Ave','','Willow Grove','PA','19090','billing','2011-12-17 18:38:00','2011-12-17 18:38:00',232),(106,53,'528 Grant Ave','','Willow Grove','PA','19090','mailing','2011-12-17 18:38:00','2011-12-17 18:38:00',232),(107,54,'111 Peterson Road','','Seneca','SC','29678','billing','2011-12-19 01:30:10','2011-12-19 01:30:10',232),(108,54,'111 Peterson Road','','Seneca','SC','29678','mailing','2011-12-19 01:30:10','2011-12-19 01:30:10',232),(109,55,'Box 1727','','Raymond','Alberta','T0K2S0','billing','2011-12-19 21:01:12','2011-12-19 21:01:12',37),(110,55,'Box 1727','','Raymond','Alberta','T0K2S0','mailing','2011-12-19 21:01:12','2011-12-19 21:01:12',37),(111,56,'2003 Southern Blvd., SE','Suite 102 PMB70','Rio Rancho','NM','87124','billing','2011-12-19 23:04:51','2011-12-19 23:04:51',232),(112,56,'2003 Southern Blvd., SE','Suite 102 PMB70','Rio Rancho','NM','87124','mailing','2011-12-19 23:04:51','2011-12-19 23:04:51',232),(113,57,'307 E. Harrison St.','','Eureka','IL','61530','billing','2011-12-20 02:33:04','2011-12-20 02:33:04',232),(114,57,'307 E. Harrison St.','','Eureka','IL','61530','mailing','2011-12-20 02:33:04','2011-12-20 02:33:04',232),(115,58,'3013 Shoemake Ave','','Modesto','CA','95358','billing','2011-12-20 05:05:23','2011-12-20 05:05:23',232),(116,58,'3013 Shoemake Ave','','Modesto','CA','95358','mailing','2011-12-20 05:05:23','2011-12-20 05:05:23',232),(117,59,'20225 bothell-everett hwy','#1631','bothell','wa','98012','billing','2011-12-20 08:48:59','2011-12-20 08:48:59',232),(118,59,'20225 bothell-everett hwy','#1631','bothell','wa','98012','mailing','2011-12-20 08:48:59','2011-12-20 08:48:59',232),(119,60,'195 Hilltop Rd','','Lewisburg','PA','17837','billing','2011-12-20 11:10:27','2011-12-20 11:10:27',232),(120,60,'195 Hilltop Rd','','Lewisburg','PA','17837','mailing','2011-12-20 11:10:27','2011-12-20 11:10:27',232),(121,61,'Jyllingevej 58','','copenhagen','','2720','billing','2011-12-20 13:25:00','2011-12-20 13:25:00',58),(122,61,'Jyllingevej 58','','copenhagen','','2720','mailing','2011-12-20 13:25:00','2011-12-20 13:25:00',58),(123,62,'13808W Peninsula Rd','','Hayward','WI','54843','billing','2011-12-21 01:08:07','2011-12-21 01:08:07',232),(124,62,'13808W Peninsula Rd','','Hayward','WI','54843','mailing','2011-12-21 01:08:07','2011-12-21 01:08:07',232),(125,63,'1242 Monte Carlo Dr','','Jenison','MI','49428','billing','2011-12-21 03:13:47','2011-12-21 03:13:47',232),(126,63,'1242 Monte Carlo Dr','','Jenison','MI','49428','mailing','2011-12-21 03:13:47','2011-12-21 03:13:47',232),(127,64,'36345Despain Gulch Rd','','Stanfield','Or','97875','billing','2011-12-21 04:36:47','2011-12-21 04:36:47',232),(128,64,'36345Despain Gulch Rd','','Stanfield','Or','97875','mailing','2011-12-21 04:36:47','2011-12-21 04:36:47',232),(129,65,'83902 Winesap Rd.','','Milton Freewater','Oregon','97862','billing','2011-12-21 05:55:42','2011-12-21 05:55:42',232),(130,65,'83902 Winesap Rd.','','Milton Freewater','Oregon','97862','mailing','2011-12-21 05:55:42','2011-12-21 05:55:42',232),(131,66,'56 Montsera Road','','Carlisle','PA','17015','billing','2011-12-21 11:09:30','2011-12-21 11:09:30',232),(132,66,'56 Montsera Road','','Carlisle','PA','17015','mailing','2011-12-21 11:09:30','2011-12-21 11:09:30',232),(133,67,'5355 Suffolk Drive','','Jackson','MS','39211','billing','2011-12-21 19:37:59','2011-12-21 19:37:59',232),(134,67,'5355 Suffolk Drive','','Jackson','MS','39211','mailing','2011-12-21 19:37:59','2011-12-21 19:37:59',232),(135,68,'1450 HONOAPIILANI HIGHWAY','','WAILUKU','HI','96793','billing','2011-12-23 00:33:07','2011-12-23 00:33:07',232),(136,68,'1450 HONOAPIILANI HIGHWAY','','WAILUKU','HI','96793','mailing','2011-12-23 00:33:07','2011-12-23 00:33:07',232),(137,69,'118 rothsville station rd ','','lititz','pa','17543','billing','2011-12-23 01:01:05','2011-12-23 01:01:05',232),(138,69,'118 rothsville station rd ','','lititz','pa','17543','mailing','2011-12-23 01:01:05','2011-12-23 01:01:05',232),(139,70,'75 Logan St','','Brooklyn','New York','11208','billing','2011-12-23 23:00:05','2011-12-23 23:00:05',232),(140,70,'75 Logan St','','Brooklyn','New York','11208','mailing','2011-12-23 23:00:05','2011-12-23 23:00:05',232),(141,71,'4495 Cutter Rd','','Apple Creek','OH','44606','billing','2011-12-24 00:43:34','2012-05-14 23:17:30',232),(142,71,'4495 Cutter Rd','','Apple Creek','OH','44606','mailing','2011-12-24 00:43:34','2012-05-14 23:17:45',232),(143,72,'Box 295','','Linden','Alberta','T0M 1J0','billing','2011-12-24 16:26:45','2011-12-24 16:28:01',37),(144,72,'Box 295','','Linden','Alberta','T0M 1J0','mailing','2011-12-24 16:26:45','2011-12-24 16:26:45',37),(145,73,'508 Ocean Ave','','Bradley Beach','NJ','07720','billing','2011-12-24 17:10:25','2011-12-24 17:10:25',232),(146,73,'508 Ocean Ave','','Bradley Beach','NJ','07720','mailing','2011-12-24 17:10:25','2011-12-24 17:10:25',232),(147,74,'555 Willow Oak Way','','Roswell','GA','30076','billing','2011-12-25 17:46:18','2011-12-25 17:46:18',232),(148,74,'555 Willow Oak Way','','Roswell','GA','30076','mailing','2011-12-25 17:46:18','2011-12-25 17:46:18',232),(149,75,'10489 Northpoint Rd','','Tremont','IL','61568','billing','2011-12-26 13:38:35','2011-12-26 13:38:35',232),(150,75,'10489 Northpoint Rd','','Tremont','IL','61568','mailing','2011-12-26 13:38:35','2011-12-26 13:38:35',232),(151,76,'2667 Hog Hollow Road','','East Waterford','PA','17021','billing','2011-12-26 14:35:22','2011-12-26 14:35:22',232),(152,76,'2667 Hog Hollow Road','','East Waterford','PA','17021','mailing','2011-12-26 14:35:22','2011-12-26 14:35:22',232),(153,77,'614 Hospital Drive','','Lewisburg','Pennsylvania','17837','billing','2011-12-26 22:58:16','2011-12-26 22:58:16',232),(154,77,'614 Hospital Drive','','Lewisburg','Pennsylvania','17837','mailing','2011-12-26 22:58:16','2011-12-26 22:58:16',232),(155,78,'9001 Markville Dr. ','Apt 530','Dallas','TX','75243','billing','2011-12-27 06:34:46','2011-12-27 06:34:46',232),(156,78,'9001 Markville Dr. ','Apt 530','Dallas','TX','75243','mailing','2011-12-27 06:34:46','2011-12-27 06:34:46',232),(157,79,'279 North Erisman Road','','Manheim ','PA ','17545','billing','2011-12-28 02:27:23','2011-12-28 02:27:23',232),(158,79,'279 North Erisman Road','','Manheim ','PA ','17545','mailing','2011-12-28 02:27:23','2011-12-28 02:27:23',232),(159,80,'131 Tanglewood Lane','','Lancaster','PA','17601','billing','2011-12-28 19:37:39','2011-12-28 19:37:39',232),(160,80,'131 Tanglewood Lane','','Lancaster','PA','17601','mailing','2011-12-28 19:37:39','2011-12-28 19:37:39',232),(161,81,'200 Law Ave.','','Moncks Corner','SC','29461','billing','2011-12-29 14:50:48','2011-12-29 14:50:48',232),(162,81,'200 Law Ave.','','Moncks Corner','SC','29461','mailing','2011-12-29 14:50:48','2011-12-29 14:50:48',232),(163,82,'Brewerville, Monrovia','Brewerville, Monrovia','Monrovia','Mont','231','billing','2011-12-29 18:53:26','2011-12-29 18:53:26',130),(164,82,'Brewerville, Monrovia','Brewerville, Monrovia','Monrovia','Mont','231','mailing','2011-12-29 18:53:26','2011-12-29 18:53:26',130),(165,83,'202 E Edgewood St','','Springfield','MO','65807','billing','2011-12-29 23:25:05','2011-12-29 23:25:05',232),(166,83,'202 E Edgewood St','','Springfield','MO','65807','mailing','2011-12-29 23:25:05','2011-12-29 23:25:05',232),(167,84,'31248 CAREY ROAD','','SALEM','Ohio','44460','billing','2011-12-30 02:19:47','2011-12-30 02:19:47',232),(168,84,'31248 CAREY ROAD','','SALEM','Ohio','44460','mailing','2011-12-30 02:19:47','2011-12-30 02:19:47',232),(169,85,'15 Evansburg Road','','Collegeville','PA','19426','billing','2011-12-30 02:34:40','2011-12-30 02:34:40',232),(170,85,'15 Evansburg Road','','Collegeville','PA','19426','mailing','2011-12-30 02:34:40','2011-12-30 02:34:40',232),(171,86,'549 Shingle Mill Loop','','Bonners Ferry','ID - Idaho','83805','billing','2011-12-30 03:45:50','2011-12-30 03:45:50',232),(172,86,'549 Shingle Mill Loop','','Bonners Ferry','ID - Idaho','83805','mailing','2011-12-30 03:45:50','2011-12-30 03:45:50',232),(173,87,'813 matts lane','','appling ','ga','30802','billing','2011-12-30 14:37:23','2011-12-30 14:37:23',232),(174,87,'813 matts lane','','appling ','ga','30802','mailing','2011-12-30 14:37:23','2011-12-30 14:37:23',232),(175,88,'11 S Westview Drive','','Gordonville','PA','17529','billing','2011-12-30 15:07:44','2011-12-30 15:07:44',232),(176,88,'11 S Westview Drive','','Gordonville','PA','17529','mailing','2011-12-30 15:07:44','2011-12-30 15:07:44',232),(177,89,'7911 N Euclid','','Kansas City','Missouri','64118','billing','2011-12-30 15:29:06','2011-12-30 15:29:06',232),(178,89,'7911 N Euclid','','Kansas City','Missouri','64118','mailing','2011-12-30 15:29:06','2011-12-30 15:29:06',232),(179,90,'28500 Guys Mills Road','','Guys Mills','Pennsylvania','16327','billing','2011-12-30 17:33:14','2011-12-30 17:33:14',232),(180,90,'28500 Guys Mills Road','','Guys Mills','Pennsylvania','16327','mailing','2011-12-30 17:33:14','2011-12-30 17:33:14',232),(181,91,'28 NW TOMAHAWK E ','','MEDICINE LODGE ','KS','67104','billing','2011-12-30 21:38:39','2011-12-30 21:38:39',232),(182,91,'28 NW TOMAHAWK E ','','MEDICINE LODGE ','KS','67104','mailing','2011-12-30 21:38:39','2011-12-30 21:38:39',232),(183,92,'4200 Mebane Oaks Rd','','Mebane','NC','27302','billing','2011-12-30 22:01:27','2011-12-30 22:01:27',232),(184,92,'4200 Mebane Oaks Rd','','Mebane','NC','27302','mailing','2011-12-30 22:01:27','2011-12-30 22:01:27',232),(185,93,'740 Narvon Road','','Narvon','PA','17555','billing','2011-12-31 05:17:26','2011-12-31 05:17:26',232),(186,93,'740 Narvon Road','','Narvon','PA','17555','mailing','2011-12-31 05:17:26','2011-12-31 05:17:26',232),(187,94,'4561 Meadowlawn Dr. SE','','Kentwood','Michigan','49512','billing','2011-12-31 17:45:47','2011-12-31 17:45:47',232),(188,94,'4561 Meadowlawn Dr. SE','','Kentwood','Michigan','49512','mailing','2011-12-31 17:45:47','2011-12-31 17:45:47',232),(189,95,'450 surveyors point','','suwanee','GA','30024','billing','2011-12-31 18:17:16','2011-12-31 18:17:16',232),(190,95,'450 surveyors point','','suwanee','GA','30024','mailing','2011-12-31 18:17:16','2011-12-31 18:17:16',232),(191,96,'209 N Cadillac Dr','','Boardman','Ohio','44512','billing','2011-12-31 19:21:58','2011-12-31 19:21:58',232),(192,96,'209 N Cadillac Dr','','Boardman','Ohio','44512','mailing','2011-12-31 19:21:58','2011-12-31 19:21:58',232),(193,97,'7592 Woodstown Dr','','Springfield','Virginia','22153','billing','2011-12-31 20:29:01','2011-12-31 20:29:01',232),(194,97,'7592 Woodstown Dr','','Springfield','Virginia','22153','mailing','2011-12-31 20:29:01','2011-12-31 20:29:01',232),(195,98,'391 Lasher Rd','','Tivoli','NY','12583','billing','2011-12-31 22:00:07','2011-12-31 22:00:07',232),(196,98,'391 Lasher Rd','','Tivoli','NY','12583','mailing','2011-12-31 22:00:07','2011-12-31 22:00:07',232),(197,99,'2322 Sugarloaf Rd','','Hendersonville','NC','28792','billing','2011-12-31 23:50:22','2011-12-31 23:50:22',232),(198,99,'2322 Sugarloaf Rd','','Hendersonville','NC','28792','mailing','2011-12-31 23:50:22','2011-12-31 23:50:22',232),(199,100,'511 Sharp Road','','Barlow','Ky','42024','billing','2012-01-01 00:46:50','2012-01-01 00:46:50',232),(200,100,'511 Sharp Road','','Barlow','Ky','42024','mailing','2012-01-01 00:46:50','2012-01-01 00:46:50',232),(201,101,'4386 mohave dr','','westminster','MD','21157','billing','2012-01-01 02:30:19','2012-01-01 02:30:19',232),(202,101,'4386 mohave dr','','westminster','MD','21157','mailing','2012-01-01 02:30:19','2012-01-01 02:30:19',232),(203,102,'36370 Avenue 16','','Madera','CA','93636','billing','2012-01-01 04:20:29','2012-01-01 04:20:29',232),(204,102,'36370 Avenue 16','','Madera','CA','93636','mailing','2012-01-01 04:20:29','2012-01-01 04:20:29',232),(205,103,'7 hathorn street','','somerville','MA- MASSACHUSETTS','02145','billing','2012-01-01 04:38:18','2012-01-01 04:38:18',232),(206,103,'7 hathorn street','','somerville','MA- MASSACHUSETTS','02145','mailing','2012-01-01 04:38:18','2012-01-01 04:38:18',232),(207,104,'1634 Springville Road','','New Holland','PA','17557','billing','2012-01-01 04:52:23','2012-01-01 04:52:23',232),(208,104,'1634 Springville Road','','New Holland','PA','17557','mailing','2012-01-01 04:52:23','2012-01-01 04:52:23',232),(209,105,'7 Tolworth Way','','Embleton','Western Australia','6062','billing','2012-01-02 09:58:14','2012-01-02 09:58:14',12),(210,105,'7 Tolworth Way','','Embleton','Western Australia','6062','mailing','2012-01-02 09:58:14','2012-01-02 09:58:14',12),(211,106,'370 Hetrick Road','','Beavertown','PA','17813','billing','2012-01-04 19:22:08','2012-01-04 19:22:08',232),(212,106,'370 Hetrick Road','','Beavertown','PA','17813','mailing','2012-01-04 19:22:08','2012-01-04 19:22:08',232),(213,107,'2463 Overlook Road','Apt 10','Cleveland Heights','Ohio','44106','billing','2012-01-06 01:56:02','2012-04-10 07:15:47',232),(214,107,'2463 Overlook Road','Apt 10','Cleveland Heights','Ohio','44106','mailing','2012-01-06 01:56:02','2012-04-10 07:16:25',232),(215,108,'120 woodview dr','','Folsom','California','95630','billing','2012-01-06 08:25:08','2012-01-06 14:27:16',232),(216,108,'120 woodview dr','','Folsom','California','95630','mailing','2012-01-06 08:25:08','2012-01-06 14:27:38',232),(217,109,'7425 S US 421','','Rossville','IN','46065','billing','2012-01-06 21:16:47','2012-01-06 21:17:16',232),(218,109,'2261 Killmore Rd.','','Ellensburg','WA','98926','mailing','2012-01-06 21:16:47','2012-01-06 21:16:47',232),(219,110,'786 Houtztown Rd','','Myerstown','Pennsylvania','17067','billing','2012-01-07 22:33:14','2012-01-07 22:33:14',232),(220,110,'786 Houtztown Rd','','Myerstown','Pennsylvania','17067','mailing','2012-01-07 22:33:14','2012-01-07 22:33:14',232),(221,111,'76 Woolwich St #4','','Kitchener','Ontario','N2K 1S3','billing','2012-01-09 00:42:53','2012-01-09 00:42:53',37),(222,111,'76 Woolwich St #4','','Kitchener','Ontario','N2K 1S3','mailing','2012-01-09 00:42:53','2012-01-09 00:42:53',37),(223,112,'1016 St. Thomas Williamson Rd.','','St. Thomas','PA','17252','billing','2012-01-10 16:00:14','2012-01-10 16:00:14',232),(224,112,'1016 St. Thomas Williamson Rd.','','St. Thomas','PA','17252','mailing','2012-01-10 16:00:14','2012-01-10 16:00:14',232),(225,113,'R1073 County Rd M','','Athens','WI','54411','billing','2012-01-11 03:10:37','2012-01-11 03:10:37',232),(226,113,'R1073 County Rd M','','Athens','WI','54411','mailing','2012-01-11 03:10:37','2012-01-11 03:10:37',232),(227,114,'424 greenfield dr','','lebanon ','pa','17042','billing','2012-01-11 20:14:35','2012-01-11 20:14:35',232),(228,114,'424 greenfield dr','','lebanon ','pa','17042','mailing','2012-01-11 20:14:35','2012-01-11 20:14:35',232),(229,115,'Box6,Site4,','RR#2','Camrose','AB','T4V 2N1','billing','2012-01-12 01:48:53','2012-01-12 01:48:53',37),(230,115,'Box6,Site4,','RR#2','Camrose','AB','T4V 2N1','mailing','2012-01-12 01:48:53','2012-01-12 01:48:53',37),(231,116,'3279 TR 166','','Sugarcreek','Ohio','44681','billing','2012-01-12 18:19:03','2012-01-12 18:19:03',232),(232,116,'3279 TR 166','','Sugarcreek','Ohio','44681','mailing','2012-01-12 18:19:03','2012-01-12 18:19:03',232),(233,117,'420 Neff Avenue','','Harrisonburg','Virginia','22801','billing','2012-01-12 21:03:48','2012-01-12 21:03:48',232),(234,117,'420 Neff Avenue','','Harrisonburg','Virginia','22801','mailing','2012-01-12 21:03:48','2012-01-12 21:03:48',232),(235,118,'420 Neff Avenue','','Harrisonburg ','Virginia','22801','billing','2012-01-12 21:07:05','2012-01-12 21:07:05',232),(236,118,'420 Neff Avenue','','Harrisonburg ','Virginia','22801','mailing','2012-01-12 21:07:05','2012-01-12 21:07:05',232),(237,119,'420 Neff Avenue','','Harrisonburg','VA','22801','billing','2012-01-12 22:15:41','2012-01-12 22:15:41',232),(238,119,'420 Neff Avenue','','Harrisonburg','VA','22801','mailing','2012-01-12 22:15:41','2012-01-12 22:15:41',232),(239,120,'869 Camelot Lane','','Harrisonburg','VA','22801','billing','2012-01-13 15:34:34','2012-01-13 15:34:34',232),(240,120,'869 Camelot Lane','','Harrisonburg','VA','22801','mailing','2012-01-13 15:34:34','2012-01-13 15:34:34',232),(241,121,'str.Plaiesilor,nr. 19,Bl .L1 ,Sc.B, etaj 4,Ap.17','','Iasi','Romania','700596','billing','2012-01-14 20:46:16','2012-01-14 20:46:16',188),(242,121,'str.Plaiesilor,nr. 19,Bl .L1 ,Sc.B, etaj 4,Ap.17','','Iasi','Romania','700596','mailing','2012-01-14 20:46:16','2012-01-14 20:46:16',188),(243,122,'7604 rose briar ct','','knoxville','tn','37938','billing','2012-01-16 03:02:38','2012-01-16 03:02:38',232),(244,122,'7604 rose briar ct','','knoxville','tn','37938','mailing','2012-01-16 03:02:38','2012-01-16 03:02:38',232),(245,123,'3998 Wintersville Road','','Myerstown','PA','17067','billing','2012-01-16 21:58:32','2012-01-16 21:58:32',232),(246,123,'3998 Wintersville Road','','Myerstown','PA','17067','mailing','2012-01-16 21:58:32','2012-01-16 21:58:32',232),(247,124,'3550 Heroic Drive','','Rancho Palos Verdes','CA','90275','billing','2012-01-17 01:03:12','2012-01-17 01:03:12',232),(248,124,'3550 Heroic Drive','','Rancho Palos Verdes','CA','90275','mailing','2012-01-17 01:03:12','2012-01-17 01:03:12',232),(249,125,'1430 Peewee Cr.','','Seymour','MO','65746','billing','2012-01-17 03:15:13','2012-01-17 03:15:13',232),(250,125,'1430 Peewee Cr.','','Seymour','MO','65746','mailing','2012-01-17 03:15:13','2012-01-17 03:15:13',232),(251,126,'Udon Thani','Udon Thani','Udon Thani','Udon Thani',NULL,'billing','2012-01-17 19:42:57','2012-01-17 19:42:57',232),(252,126,'Udon Thani','Udon Thani','Udon Thani','Udon Thani',NULL,'mailing','2012-01-17 19:42:57','2012-01-17 19:42:57',232),(253,127,'10 S. Prince St. Apt. 413','','Lancaster','Pa','17603','billing','2012-01-17 23:00:52','2012-01-17 23:00:52',232),(254,127,'10 S. Prince St. Apt. 413','','Lancaster','Pa','17603','mailing','2012-01-17 23:00:52','2012-01-17 23:00:52',232),(255,128,'3424 State Route 48','','Covington','Ohio','45318','billing','2012-01-18 13:14:55','2012-01-18 13:14:55',232),(256,128,'3424 State Route 48','','Covington','Ohio','45318','mailing','2012-01-18 13:14:55','2012-01-18 13:14:55',232),(257,129,'138 School Road','','Bernville','Pennsylvania','19506','billing','2012-01-18 23:44:39','2012-01-18 23:44:39',232),(258,129,'138 School Road','','Bernville','Pennsylvania','19506','mailing','2012-01-18 23:44:39','2012-01-18 23:44:39',232),(259,130,'Rt. 1 Box 169','','Greentop','mo','63546','billing','2012-01-19 16:46:26','2012-01-19 16:46:26',232),(260,130,'Rt. 1 Box 169','','Greentop','mo','63546','mailing','2012-01-19 16:46:26','2012-01-19 16:46:26',232),(261,131,'610 Huntington Ave.','','Boston','MA','02115','billing','2012-01-20 04:57:27','2012-01-20 04:57:27',232),(262,131,'610 Huntington Ave.','','Boston','MA','02115','mailing','2012-01-20 04:57:27','2012-01-20 04:57:27',232),(263,132,'4189 Swinger Rd','','Arcanum','OH','45304','billing','2012-01-20 14:38:57','2012-01-20 14:38:57',232),(264,132,'4189 Swinger Rd','','Arcanum','OH','45304','mailing','2012-01-20 14:38:57','2012-01-20 14:38:57',232),(265,133,'13998 W Clyde Maher Rd','','Tahlequah','OK','74464','billing','2012-01-21 21:05:33','2012-01-21 21:05:33',232),(266,133,'13998 W Clyde Maher Rd','','Tahlequah','OK','74464','mailing','2012-01-21 21:05:33','2012-01-21 21:05:33',232),(267,134,'Box 143','','Roseisle','Manitoba','R0G 1V0','billing','2012-01-23 19:35:42','2012-01-23 19:35:42',37),(268,134,'Box 143','','Roseisle','Manitoba','R0G 1V0','mailing','2012-01-23 19:35:42','2012-01-23 19:35:42',37),(269,135,'26929 Orchid Ave','','Mission Viejo','California','92692','billing','2012-01-23 21:55:59','2012-01-23 21:55:59',232),(270,135,'26929 Orchid Ave','','Mission Viejo','California','92692','mailing','2012-01-23 21:55:59','2012-01-23 21:55:59',232),(271,136,'217 80th St','','Virginia Beach','Virginia','23451','billing','2012-01-24 17:24:26','2012-01-24 17:24:26',232),(272,136,'217 80th St','','Virginia Beach','Virginia','23451','mailing','2012-01-24 17:24:26','2012-01-24 17:24:26',232),(273,137,'57 E. Cross St.','','Laura','OH','45337','billing','2012-01-25 01:26:06','2012-01-25 01:26:06',232),(274,137,'57 E. Cross St.','','Laura','OH','45337','mailing','2012-01-25 01:26:06','2012-01-25 01:26:06',232),(275,138,'57 E. Cross St.','','Laura','OH','45337','billing','2012-01-25 01:26:37','2012-01-25 01:26:37',232),(276,138,'57 E. Cross St.','','Laura','OH','45337','mailing','2012-01-25 01:26:37','2012-01-25 01:26:37',232),(277,139,'Hesperange','Hesperange','Hesperange','Hesperange',NULL,'billing','2012-01-25 11:35:33','2012-01-25 11:35:33',232),(278,139,'Hesperange','Hesperange','Hesperange','Hesperange',NULL,'mailing','2012-01-25 11:35:33','2012-01-25 11:35:33',232),(279,140,'14773 county road 34 ','','goshen ','indiana','46528','billing','2012-01-25 21:10:45','2012-01-25 21:10:45',232),(280,140,'14773 county road 34 ','','goshen ','indiana','46528','mailing','2012-01-25 21:10:45','2012-01-25 21:10:45',232),(281,141,'7197 Hwy 392 West','','Harrison','Arkansas','72601','billing','2012-01-26 12:59:18','2012-01-26 12:59:18',232),(282,141,'7197 Hwy 392 West','','Harrison','Arkansas','72601','mailing','2012-01-26 12:59:18','2012-01-26 12:59:18',232),(283,142,'5721 hwy 11','','international Falls','minnesota','56649-9011','billing','2012-01-27 04:04:07','2012-01-27 04:04:07',232),(284,142,'5721 hwy 11','','international Falls','minnesota','56649-9011','mailing','2012-01-27 04:04:07','2012-01-27 04:04:07',232),(285,143,'6598 TR 327','','Millersburg','OH','44654','billing','2012-01-27 16:53:39','2012-01-27 16:53:39',232),(286,143,'6598 TR 327','','Millersburg','OH','44654','mailing','2012-01-27 16:53:39','2012-01-27 16:53:39',232),(287,144,'5505W 700N','','Shipshewana','Indiana','46565','billing','2012-01-28 21:27:16','2012-01-28 21:27:16',232),(288,144,'5505W 700N','','Shipshewana','Indiana','46565','mailing','2012-01-28 21:27:16','2012-01-28 21:27:16',232),(289,145,'Box 195','175 Main St','Landmark','MB','R0A 0X0','billing','2012-01-30 00:51:17','2012-01-30 00:51:17',37),(290,145,'Box 195','175 Main St','Landmark','MB','R0A 0X0','mailing','2012-01-30 00:51:17','2012-01-30 00:51:17',37),(291,146,'3465 township road 606','','fredericksburg','ohio','44627','billing','2012-01-31 01:27:34','2012-01-31 01:27:34',232),(292,146,'3465 township road 606','','fredericksburg','ohio','44627','mailing','2012-01-31 01:27:34','2012-01-31 01:27:34',232),(293,147,'898 Echo lake Road','','Bigfork','mt','59911','billing','2012-01-31 05:50:45','2012-01-31 05:50:45',232),(294,147,'898 Echo lake Road','','Bigfork','mt','59911','mailing','2012-01-31 05:50:45','2012-01-31 05:50:45',232),(295,148,'P.O. Box 96','','Mequon','WISCONSIN','53092','billing','2012-01-31 17:17:00','2012-01-31 17:17:35',232),(296,148,'7110 Tamarack Court','','Mequon','WISCONSIN','53092','mailing','2012-01-31 17:17:00','2012-01-31 17:17:00',232),(297,149,'7574 Easton Rd.','','Sterling','OH','44276','billing','2012-01-31 20:53:46','2012-01-31 20:53:46',232),(298,149,'7574 Easton Rd.','','Sterling','OH','44276','mailing','2012-01-31 20:53:46','2012-01-31 20:53:46',232),(299,150,'Churchview Nursery','Ightham Bypass','Sevenoaks','Kent','TN15 9AZ','billing','2012-02-01 17:37:02','2012-02-01 17:37:02',76),(300,150,'Churchview Nursery','Ightham Bypass','Sevenoaks','Kent','TN15 9AZ','mailing','2012-02-01 17:37:02','2012-02-01 17:37:02',76),(301,151,'Franz-Marc-Weg 1','','Hamm','NRW','59063','billing','2012-02-01 23:04:57','2012-02-01 23:04:57',56),(302,151,'Franz-Marc-Weg 1','','Hamm','NRW','59063','mailing','2012-02-01 23:04:57','2012-02-01 23:04:57',56),(303,152,'1868 Highway Route 20','','Cobleskill','NY','12043','billing','2012-02-02 11:25:56','2012-02-02 11:25:56',232),(304,152,'1868 Highway Route 20','','Cobleskill','NY','12043','mailing','2012-02-02 11:25:56','2012-02-02 11:25:56',232),(305,153,'strada panduri nr 141a','','targu-jiu','gorj','210250','billing','2012-02-02 17:33:37','2012-02-02 17:33:37',188),(306,153,'strada panduri nr 141a','','targu-jiu','gorj','210250','mailing','2012-02-02 17:33:37','2012-02-02 17:33:37',188),(307,154,'2406 Eastridge','','Goddard','KS','67052','billing','2012-02-02 17:36:21','2012-02-02 17:36:21',232),(308,154,'2406 Eastridge','','Goddard','KS','67052','mailing','2012-02-02 17:36:21','2012-02-02 17:36:21',232),(309,155,'869 Camelot Lane','','Harrisonburg','VA','22801','billing','2012-02-02 19:42:06','2012-02-02 19:42:06',232),(310,155,'869 Camelot Lane','','Harrisonburg','VA','22801','mailing','2012-02-02 19:42:06','2012-02-02 19:42:06',232),(311,156,'PO Box 1336','','Seminole ','Texas','79360','billing','2012-02-03 19:32:00','2012-02-03 19:32:00',232),(312,156,'PO Box 1336','','Seminole ','Texas','79360','mailing','2012-02-03 19:32:00','2012-02-03 19:32:00',232),(313,157,'Campo 51-A','','Namiquipa','Chihuahua','31977','billing','2012-02-04 23:01:53','2012-02-04 23:01:53',156),(314,157,'Campo 51-A','','Namiquipa','Chihuahua','31977','mailing','2012-02-04 23:01:53','2012-02-04 23:01:53',156),(315,158,'Campo 6-a no.168','','Cuauhtemoc','Chih','31500','billing','2012-02-06 04:38:26','2012-02-06 14:03:46',156),(316,158,'Campo 6-a no.168','','Cuauhtemoc','Chih','31500','mailing','2012-02-06 04:38:26','2012-02-07 13:14:11',156),(317,159,'113 Valleywood Dr','','Forest','VA','24551','billing','2012-02-06 20:12:32','2012-02-06 20:12:32',232),(318,159,'113 Valleywood Dr','','Forest','VA','24551','mailing','2012-02-06 20:12:32','2012-02-06 20:12:32',232),(319,160,'1738 W. Main St.','','Ephrata','Pennsylvania','17522','billing','2012-02-06 21:06:15','2012-02-06 21:06:15',232),(320,160,'1738 W. Main St.','','Ephrata','Pennsylvania','17522','mailing','2012-02-06 21:06:15','2012-02-06 21:06:15',232),(321,161,'10095 Rickreall Rd.','','Rickreall','Oregon','97371','billing','2012-02-07 02:41:52','2012-02-07 02:41:52',232),(322,161,'10095 Rickreall Rd.','','Rickreall','Oregon','97371','mailing','2012-02-07 02:41:52','2012-02-07 02:41:52',232),(323,162,'1309 Nw 25th Ave ','','Battle Ground','WA','98604','billing','2012-02-07 05:53:51','2012-02-07 05:53:51',232),(324,162,'1309 Nw 25th Ave ','','Battle Ground','WA','98604','mailing','2012-02-07 05:53:51','2012-02-07 05:53:51',232),(325,163,'7807 Deerhurst Pl.','','Maineville','Ohio','45039','billing','2012-02-08 20:28:12','2012-02-08 20:28:12',232),(326,163,'7807 Deerhurst Pl.','','Maineville','Ohio','45039','mailing','2012-02-08 20:28:12','2012-02-08 20:28:12',232),(327,164,'Campo 101, Box 143','','Cuauhtemoc','Chihuahua','31610','billing','2012-02-09 04:47:35','2012-07-06 04:20:10',232),(328,164,'Campo 101, Box 143','','Cuauhtemoc','Chihuahua','31610','mailing','2012-02-09 04:47:35','2012-02-09 04:47:35',156),(329,165,'1675 351st Avenue','','Boyd','MN','56218','billing','2012-02-09 21:26:07','2012-02-09 21:26:07',232),(330,165,'1675 351st Avenue','','Boyd','MN','56218','mailing','2012-02-09 21:26:07','2012-02-09 21:26:07',232),(331,166,'8402 Sego Lily Ct.','','Lorton','VA','22079','billing','2012-02-11 06:42:23','2012-02-11 06:42:23',232),(332,166,'8402 Sego Lily Ct.','','Lorton','VA','22079','mailing','2012-02-11 06:42:23','2012-02-11 06:42:23',232),(333,167,'2245 s pine grove street','','lebanon','pa','17046','billing','2012-02-11 20:06:41','2012-02-11 20:06:41',232),(334,167,'2245 s pine grove street','','lebanon','pa','17046','mailing','2012-02-11 20:06:41','2012-02-11 20:06:41',232),(335,168,'1280 4th Parallel Rd','','Ellensburg','Washington','98926','billing','2012-02-12 15:42:36','2012-02-12 15:42:36',232),(336,168,'1280 4th Parallel Rd','','Ellensburg','Washington','98926','mailing','2012-02-12 15:42:36','2012-02-12 15:42:36',232),(337,169,'381 Greenbrier Road','','Cambridge','Ontario','N1P 1C1','billing','2012-02-13 15:32:47','2012-02-13 15:32:47',37),(338,169,'381 Greenbrier Road','','Cambridge','Ontario','N1P 1C1','mailing','2012-02-13 15:32:47','2012-02-13 15:32:47',37),(339,170,'118 Rothsville Station Rd',' ','Lititz ','PA','17543','billing','2012-02-14 11:51:45','2012-02-14 11:51:45',232),(340,170,'118 Rothsville Station Rd',' ','Lititz ','PA','17543','mailing','2012-02-14 11:51:45','2012-02-14 11:51:45',232),(341,171,'521 Tyler Rd SE','','Kalkaska','MI','49646','billing','2012-02-14 18:24:33','2012-02-14 20:22:16',232),(342,171,'116 Bluffview Ln','','Charleston','sc','29492','mailing','2012-02-14 18:24:33','2012-02-14 18:24:33',232),(343,172,'Km 24 Carr Cuau A Alvaro Obregon','01 Campo Numero 7-A','Cuauhtemoc','Chihuahua','31608','billing','2012-02-16 00:31:38','2012-04-18 18:35:53',156),(344,172,'8914 Gateway East Blvd','','El Paso','TX','79907','mailing','2012-02-16 00:31:38','2012-02-16 00:45:55',232),(345,173,'8914 Gateway East Blvd','','El Paso','TX','79907','billing','2012-02-16 00:47:44','2012-02-16 00:47:44',232),(346,173,'8914 Gateway East Blvd','','El Paso','TX','79907','mailing','2012-02-16 00:47:44','2012-02-16 00:47:44',232),(347,174,'','','','','','billing','2012-02-16 01:51:45','2012-02-16 01:56:30',232),(348,174,'','','','','','mailing','2012-02-16 01:51:45','2012-02-16 01:56:50',232),(349,175,'3894 Fadi Dr.','','Troy','Michigan','48084','billing','2012-02-16 16:08:50','2012-02-16 16:08:50',232),(350,175,'3894 Fadi Dr.','','Troy','Michigan','48084','mailing','2012-02-16 16:08:50','2012-02-16 16:08:50',232),(351,176,'1012 Pleasantview Rd','','Ephrata','PA','17522','billing','2012-02-16 16:37:36','2012-02-16 16:37:36',232),(352,176,'1012 Pleasantview Rd','','Ephrata','PA','17522','mailing','2012-02-16 16:37:36','2012-02-16 16:37:36',232),(353,177,'236 County Road 361','','Niota','Tn','37826','billing','2012-02-18 02:49:42','2012-02-18 02:49:42',232),(354,177,'236 County Road 361','','Niota','Tn','37826','mailing','2012-02-18 02:49:42','2012-02-18 02:49:42',232),(355,178,'2818 Lincoln Hwy E','','Ronks','PA','17572','billing','2012-02-20 20:23:40','2012-05-04 17:57:08',232),(356,178,'73 Topham Street','','New Bedford','MA','02746','mailing','2012-02-20 20:23:40','2012-05-04 17:56:35',232),(357,179,'67 Villard St','','Apple Creek','Oh','44606','billing','2012-02-21 01:46:38','2012-02-21 01:46:38',232),(358,179,'67 Villard St','','Apple Creek','Oh','44606','mailing','2012-02-21 01:46:38','2012-02-21 01:46:38',232),(359,180,'265 Dewey Saddle Rd','','Grangeville','ID','835330','billing','2012-02-21 17:05:50','2012-02-21 17:05:50',232),(360,180,'265 Dewey Saddle Rd','','Grangeville','ID','835330','mailing','2012-02-21 17:05:50','2012-02-21 17:05:50',232),(361,181,'925 US Route 62','','Wilmot','OH','44689','billing','2012-02-24 13:38:16','2012-02-24 13:38:16',232),(362,181,'925 US Route 62','','Wilmot','OH','44689','mailing','2012-02-24 13:38:16','2012-02-24 13:38:16',232),(363,182,'23889 421 ave','','fedora','sd','57337','billing','2012-02-24 17:20:46','2012-02-24 17:20:46',232),(364,182,'23889 421 ave','','fedora','sd','57337','mailing','2012-02-24 17:20:46','2012-02-24 17:20:46',232),(365,183,'18 Pittson Ln','','Palm Coast','FL','32164','billing','2012-02-24 18:16:30','2012-02-24 18:16:30',232),(366,183,'18 Pittson Ln','','Palm Coast','FL','32164','mailing','2012-02-24 18:16:30','2012-02-24 18:16:30',232),(367,184,'28485 Peoria Rd,','','Halsey','Or','97348','billing','2012-02-25 03:27:53','2012-02-25 03:27:53',232),(368,184,'28485 Peoria Rd,','','Halsey','Or','97348','mailing','2012-02-25 03:27:53','2012-02-25 03:27:53',232),(369,185,'7024 W. Parker Road','','Deer Park','Washington','99006','billing','2012-02-25 20:07:29','2012-02-25 20:07:29',232),(370,185,'7024 W. Parker Road','','Deer Park','Washington','99006','mailing','2012-02-25 20:07:29','2012-02-25 20:07:29',232),(371,186,'25 cottage rd','','myerstown','PA','17067','billing','2012-02-26 00:09:10','2012-02-26 00:09:10',232),(372,186,'25 cottage rd','','myerstown','PA','17067','mailing','2012-02-26 00:09:10','2012-02-26 00:09:10',232),(373,187,'502 Blackburn Ct','','Seven Fields','PA','16046','billing','2012-03-01 15:25:05','2012-03-01 15:25:05',232),(374,187,'502 Blackburn Ct','','Seven Fields','PA','16046','mailing','2012-03-01 15:25:05','2012-03-01 15:25:05',232),(375,188,'12935 little Antietam Road','','Hagerstown','Maryland','21742','billing','2012-03-01 19:28:25','2012-03-01 19:28:25',232),(376,188,'12935 little Antietam Road','','Hagerstown','Maryland','21742','mailing','2012-03-01 19:28:25','2012-03-01 19:28:25',232),(377,189,'515 E Carefree Hwy #745','','Phoenix','AZ','85085','billing','2012-03-02 20:15:11','2012-03-02 20:15:11',232),(378,189,'515 E Carefree Hwy #745','','Phoenix','AZ','85085','mailing','2012-03-02 20:15:11','2012-03-02 20:15:11',232),(379,190,'733 MILLEDGEVILLE ROAD','','HADLEY','Pennsylvania','16130','billing','2012-03-04 23:19:04','2012-03-04 23:19:04',232),(380,190,'733 MILLEDGEVILLE ROAD','','HADLEY','Pennsylvania','16130','mailing','2012-03-04 23:19:04','2012-03-04 23:19:04',232),(381,191,'PO Box 370','','New Paris','IN','46553','billing','2012-03-05 13:51:25','2012-03-05 13:51:25',232),(382,191,'PO Box 370','','New Paris','IN','46553','mailing','2012-03-05 13:51:25','2012-03-05 13:51:25',232),(383,192,'5528 33rd Ave. South','','Minneapolis','MN','55417','billing','2012-03-05 19:45:08','2012-03-05 19:45:08',232),(384,192,'5528 33rd Ave. South','','Minneapolis','MN','55417','mailing','2012-03-05 19:45:08','2012-03-05 19:45:08',232),(385,193,'PO Box 507','','Montezuma','KS','67867','billing','2012-03-06 03:41:14','2012-03-06 03:41:14',232),(386,193,'PO Box 507','','Montezuma','KS','67867','mailing','2012-03-06 03:41:14','2012-03-06 03:41:14',232),(387,194,'4351 Mohawk St.','','Bakersfield','CA','93308','billing','2012-03-07 22:03:49','2012-03-07 22:03:49',232),(388,194,'4351 Mohawk St.','','Bakersfield','CA','93308','mailing','2012-03-07 22:03:49','2012-03-07 22:03:49',232),(389,195,'240 hwy 64','','Whiteville','Tn','38075','billing','2012-03-08 03:42:36','2012-03-08 03:42:36',232),(390,195,'240 hwy 64','','Whiteville','Tn','38075','mailing','2012-03-08 03:42:37','2012-03-08 03:42:37',232),(391,196,'5136 Canvasback Rd. NE','','Pennington','MN','56663','billing','2012-03-09 05:24:32','2012-03-09 05:24:32',232),(392,196,'5136 Canvasback Rd. NE','','Pennington','MN','56663','mailing','2012-03-09 05:24:32','2012-03-09 05:24:32',232),(393,197,'2711 Finley Guy Rd','','London','Ohio','43140','billing','2012-03-10 00:08:13','2012-03-10 00:08:13',232),(394,197,'2711 Finley Guy Rd','','London','Ohio','43140','mailing','2012-03-10 00:08:13','2012-03-10 00:08:13',232),(395,198,'Box 1404','','Carstairs','Alberta','T0M0N0','billing','2012-03-11 04:13:36','2012-03-12 15:21:08',37),(396,198,'Box 1404','','Carstairs','Alberta','T0M0N0','mailing','2012-03-11 04:13:36','2012-03-11 04:13:36',37),(397,199,'36 east hammond drive','','parkesburg','pa','19365','billing','2012-03-11 16:54:46','2012-05-21 00:55:41',232),(398,199,'1013 w Kings Hwy','','Coatesville','pa','19320','mailing','2012-03-11 16:54:46','2012-03-11 16:54:46',232),(399,200,'902 Cardinal Ln.','','Unionb','MO','63084','billing','2012-03-11 17:07:52','2012-03-11 17:07:52',232),(400,200,'902 Cardinal Ln.','','Unionb','MO','63084','mailing','2012-03-11 17:07:52','2012-03-11 17:07:52',232),(401,201,'4189 Swinger Rd','','Arcanum','Ohio','45304','billing','2012-03-12 18:42:40','2012-03-12 18:42:40',232),(402,201,'4189 Swinger Rd','','Arcanum','Ohio','45304','mailing','2012-03-12 18:42:40','2012-03-12 18:42:40',232),(403,202,'340 fountain','ave','brooklyn','ny','11208','billing','2012-03-13 06:40:07','2012-03-13 06:40:07',232),(404,202,'340 fountain','ave','brooklyn','ny','11208','mailing','2012-03-13 06:40:07','2012-03-13 06:40:07',232),(405,203,'1800 Peachtree St','','Doraville','ga','30291','billing','2012-03-14 14:10:43','2012-03-14 14:10:43',232),(406,203,'1800 Peachtree St','','Doraville','ga','30291','mailing','2012-03-14 14:10:43','2012-03-14 14:10:43',232),(407,204,'14221 Dallas Parkway','','Dallas','TX','75254','billing','2012-03-14 20:51:18','2012-03-14 20:51:18',232),(408,204,'14221 Dallas Parkway','','Dallas','TX','75254','mailing','2012-03-14 20:51:19','2012-03-14 20:51:19',232),(409,205,'5497 Cosgrove Rd SW ','','Kalona','Iowa','52247','billing','2012-03-16 18:09:36','2012-03-16 18:09:36',232),(410,205,'5497 Cosgrove Rd SW ','','Kalona','Iowa','52247','mailing','2012-03-16 18:09:37','2012-03-16 18:09:37',232),(411,206,'828 W Main St','','Sugarcreek','OH','44681','billing','2012-03-16 18:45:25','2012-03-16 18:45:25',232),(412,206,'828 W Main St','','Sugarcreek','OH','44681','mailing','2012-03-16 18:45:25','2012-03-16 18:45:25',232),(413,207,'Box 435','','Spanish Lookout','Cayo','99999','billing','2012-03-17 14:45:54','2012-03-17 14:45:54',36),(414,207,'Box 435','','Spanish Lookout','Cayo','99999','mailing','2012-03-17 14:45:54','2012-03-17 14:45:54',36),(415,208,'PO Box 38','','Elnora','IN','47529','billing','2012-03-17 21:34:04','2012-03-17 21:34:04',232),(416,208,'PO Box 38','','Elnora','IN','47529','mailing','2012-03-17 21:34:04','2012-03-17 21:34:04',232),(417,209,'p.o. box 294','','strasburg','pa','17579','billing','2012-03-20 18:38:42','2012-03-20 18:38:42',232),(418,209,'p.o. box 294','','strasburg','pa','17579','mailing','2012-03-20 18:38:42','2012-03-20 18:38:42',232),(419,210,'5850 Soncrest Road','','Delta','CO','81416','billing','2012-03-21 02:25:19','2012-03-21 02:25:19',232),(420,210,'5850 Soncrest Road','','Delta','CO','81416','mailing','2012-03-21 02:25:19','2012-03-21 02:25:19',232),(421,211,'5497 Cosgrove Rd SW','','Kalona ','Iowa','52247','billing','2012-03-21 02:40:10','2012-03-21 02:40:10',232),(422,211,'5497 Cosgrove Rd SW','','Kalona ','Iowa','52247','mailing','2012-03-21 02:40:10','2012-03-21 02:40:10',232),(423,212,'12106 Saint Andrews Place Apt 208','','Miramar','FL','33025','billing','2012-03-21 16:45:37','2012-03-21 16:45:37',232),(424,212,'12106 Saint Andrews Place Apt 208','','Miramar','FL','33025','mailing','2012-03-21 16:45:37','2012-03-21 16:45:37',232),(425,213,'Apdo 26 ','','Gonzalez','Tamaulipas','89700','billing','2012-03-22 18:11:55','2012-03-22 18:11:55',156),(426,213,'Apdo 26 ','','Gonzalez','Tamaulipas','89700','mailing','2012-03-22 18:11:55','2012-03-22 18:11:55',156),(427,214,'521 Prospect Road','','Manheim','PA','17545','billing','2012-03-24 17:40:14','2012-03-24 17:40:14',232),(428,214,'521 Prospect Road','','Manheim','PA','17545','mailing','2012-03-24 17:40:14','2012-03-24 17:40:14',232),(429,215,'9606 meadowbriar','','houston','tx','77063','billing','2012-03-25 01:18:34','2012-03-25 01:18:34',232),(430,215,'9606 meadowbriar','','houston','tx','77063','mailing','2012-03-25 01:18:34','2012-03-25 01:18:34',232),(431,216,'lipova','','arad','romania','315400','billing','2012-03-27 13:20:42','2012-03-27 13:20:42',188),(432,216,'lipova','','arad','romania','315400','mailing','2012-03-27 13:20:42','2012-03-27 13:20:42',188),(433,217,'17801 glenburn','','torrance','CA','90504','billing','2012-03-27 20:04:56','2012-03-27 20:04:56',232),(434,217,'17801 glenburn','','torrance','CA','90504','mailing','2012-03-27 20:04:56','2012-03-27 20:04:56',232),(435,218,'144','23','Moline','IL','60443','billing','2012-03-28 17:25:39','2012-03-28 17:25:39',232),(436,218,'144','23','Moline','IL','60443','mailing','2012-03-28 17:25:39','2012-03-28 17:25:39',232),(437,219,'9495 Kelch Rd','','Versailles','Ohio','45380','billing','2012-03-29 01:34:16','2012-03-29 01:34:16',232),(438,219,'9495 Kelch Rd','','Versailles','Ohio','45380','mailing','2012-03-29 01:34:16','2012-03-29 01:34:16',232),(439,220,'1675 351st Ave.','','Boyd','Minnesota','56218','billing','2012-03-29 15:55:07','2012-03-29 15:55:07',232),(440,220,'1675 351st Ave.','','Boyd','Minnesota','56218','mailing','2012-03-29 15:55:07','2012-03-29 15:55:07',232),(441,221,'10190 orenda drive','','greencastle','pa','17225','billing','2012-03-30 02:05:16','2012-03-30 02:05:16',232),(442,221,'10190 orenda drive','','greencastle','pa','17225','mailing','2012-03-30 02:05:16','2012-03-30 02:05:16',232),(443,222,'1312 132A Street','','Surrey','BC','V4A 7E7','billing','2012-03-30 07:44:52','2012-03-30 07:44:52',37),(444,222,'1312 132A Street','','Surrey','BC','V4A 7E7','mailing','2012-03-30 07:44:52','2012-03-30 07:44:52',37),(445,223,'831 2B Road','','Nappanee','Indiana','46550','mailing','2012-03-30 18:50:00','2012-03-30 18:50:00',232),(446,223,'831 2B Road','','Nappanee','Indiana','46550','mailing','2012-03-30 18:50:18','2012-03-30 18:50:18',232),(447,224,'Box 54','','Elma','Manitoba','R0E0Z0','billing','2012-03-30 20:05:32','2012-03-30 20:05:32',37),(448,224,'Box 54','','Elma','Manitoba','R0E0Z0','mailing','2012-03-30 20:05:32','2012-03-30 20:05:32',37),(449,225,'16455 Dover Road','','Mt. Eaton','Ohio','44659','billing','2012-03-31 02:03:08','2012-03-31 02:03:08',232),(450,225,'16455 Dover Road','','Mt. Eaton','Ohio','44659','mailing','2012-03-31 02:03:08','2012-03-31 02:03:08',232),(451,226,'1333 Lawyer Rd','','Penn Laird','VA','22846','billing','2012-04-04 20:33:41','2012-04-04 20:33:41',232),(452,226,'1333 Lawyer Rd','','Penn Laird','VA','22846','mailing','2012-04-04 20:33:41','2012-04-04 20:33:41',232),(453,227,'3710 Dorman Ave.','','Caldwell','ID','83605','billing','2012-04-05 14:06:38','2012-04-05 14:06:38',232),(454,227,'3710 Dorman Ave.','','Caldwell','ID','83605','mailing','2012-04-05 14:06:38','2012-04-05 14:06:38',232),(455,228,'Spitak','Spitak','Spitak','Spitak',NULL,'billing','2012-04-07 08:30:17','2012-04-07 08:30:17',232),(456,228,'Spitak','Spitak','Spitak','Spitak',NULL,'mailing','2012-04-07 08:30:17','2012-04-07 08:30:17',232),(457,229,'Pirassununga','Pirassununga','Pirassununga','Pirassununga',NULL,'billing','2012-04-08 11:04:36','2012-04-08 11:04:36',232),(458,229,'Pirassununga','Pirassununga','Pirassununga','Pirassununga',NULL,'mailing','2012-04-08 11:04:36','2012-04-08 11:04:36',232),(459,230,'7807 Deerhurst Pl.','','Maineville','OH','45039','billing','2012-04-09 14:11:15','2012-04-09 14:11:15',232),(460,230,'7807 Deerhurst Pl.','','Maineville','OH','45039','mailing','2012-04-09 14:11:15','2012-04-09 14:11:15',232),(461,231,'1011 Cherry Ave','','Charlottesville','VA','22903','billing','2012-04-09 15:01:14','2012-04-09 15:01:14',232),(462,231,'1011 Cherry Ave','','Charlottesville','VA','22903','mailing','2012-04-09 15:01:14','2012-04-09 15:01:14',232),(463,232,'6608 Washington Rd.','','Quinton','VA','23141','billing','2012-04-12 02:49:00','2012-04-12 02:49:00',232),(464,232,'6608 Washington Rd.','','Quinton','VA','23141','mailing','2012-04-12 02:49:00','2012-04-12 02:49:00',232),(465,233,'239 South 5th Street','','Lebanon','PA','17042','billing','2012-04-13 02:25:38','2012-04-13 02:25:38',232),(466,233,'239 South 5th Street','','Lebanon','PA','17042','mailing','2012-04-13 02:25:38','2012-04-13 02:25:38',232),(467,234,'Dallas','Washington','Oklahoma City','Charlotte',NULL,'billing','2012-04-16 04:07:12','2012-04-16 04:07:12',232),(468,234,'Dallas','Washington','Oklahoma City','Charlotte',NULL,'mailing','2012-04-16 04:07:12','2012-04-16 04:07:12',232),(469,235,'9908 King George Drive','','Manassas','VA','20109','billing','2012-04-16 20:54:55','2012-04-16 20:54:55',232),(470,235,'9908 King George Drive','','Manassas','VA','20109','mailing','2012-04-16 20:54:55','2012-04-16 20:54:55',232),(471,236,'12872 E. Pleasant Valley Dr.','','Aberdeen','SD','57401','billing','2012-04-17 15:15:55','2012-04-17 15:15:55',232),(472,236,'12872 E. Pleasant Valley Dr.','','Aberdeen','SD','57401','mailing','2012-04-17 15:15:55','2012-04-17 15:15:55',232),(473,237,'2804 State Hwy 12','','Oxford','NY','13830','billing','2012-04-18 17:37:14','2012-04-18 17:37:14',232),(474,237,'2804 State Hwy 12','','Oxford','NY','13830','mailing','2012-04-18 17:37:14','2012-04-18 17:37:14',232),(475,238,'1304 Holtwood Rd.','','Holtwood','PA','17532','billing','2012-04-18 23:27:52','2012-04-18 23:27:52',232),(476,238,'1304 Holtwood Rd.','','Holtwood','PA','17532','mailing','2012-04-18 23:27:52','2012-04-18 23:27:52',232),(477,239,'28 marsh rd','','hiddenite','North Carolina','28636','billing','2012-04-22 20:04:58','2012-04-29 01:30:19',232),(478,239,'5004 Hardin St.','','Archdale','North Carolina','27263','mailing','2012-04-22 20:04:58','2012-04-22 20:04:58',232),(479,240,'555 Con. 12 E','RR 2','Allenford','Ontario','N0H 1A0','billing','2012-04-23 22:54:10','2012-04-23 22:54:10',37),(480,240,'555 Con. 12 E','RR 2','Allenford','Ontario','N0H 1A0','mailing','2012-04-23 22:54:10','2012-04-23 22:54:10',37),(481,241,'1776 Elly Rd','','Aroda','VA','22709','billing','2012-04-24 13:16:59','2012-04-24 13:16:59',232),(482,241,'1776 Elly Rd','','Aroda','VA','22709','mailing','2012-04-24 13:16:59','2012-04-24 13:16:59',232),(483,242,'2605 Main St.','','Morgantown','Pa.','19543','billing','2012-04-25 21:37:30','2012-04-25 21:37:30',232),(484,242,'2605 Main St.','','Morgantown','Pa.','19543','mailing','2012-04-25 21:37:30','2012-04-25 21:37:30',232),(485,243,'5353 Cane Ridge Rd Apt 117 ','','Antioch','TN','37013','billing','2012-04-26 12:48:23','2012-04-26 12:48:23',232),(486,243,'5353 Cane Ridge Rd Apt 117 ','','Antioch','TN','37013','mailing','2012-04-26 12:48:23','2012-04-26 12:48:23',232),(487,244,'Sanaa','Sanaa','Sanaa','Sanaa',NULL,'billing','2012-04-26 23:04:21','2012-04-26 23:04:21',232),(488,244,'Sanaa','Sanaa','Sanaa','Sanaa',NULL,'mailing','2012-04-26 23:04:21','2012-04-26 23:04:21',232),(489,245,'4454 s zang st','','morrison','co','80465','billing','2012-04-27 05:07:46','2012-04-27 05:07:46',232),(490,245,'4454 s zang st','','morrison','co','80465','mailing','2012-04-27 05:07:46','2012-04-27 05:07:46',232),(491,246,'11761 Pen Mar Rd.','','Waynesboro','Pennsylvania','17268','billing','2012-04-27 11:14:44','2012-04-27 11:15:37',232),(492,246,'9854 Grindstone Hill Rd.','','Greencastle','Pennsylvania','17225','mailing','2012-04-27 11:14:44','2012-04-27 11:14:44',232),(493,247,'Paynesville ,Monrovia','8th Street Sinkor','Monrovia','West Africa','1000-10','billing','2012-04-27 16:34:56','2012-04-27 16:34:56',130),(494,247,'Paynesville ,Monrovia','8th Street Sinkor','Monrovia','West Africa','1000-10','mailing','2012-04-27 16:34:56','2012-04-27 16:34:56',130),(495,248,'Box 2049 Sardis Stn. Main','','Chilliwack','BC','V2R 1A5','billing','2012-04-27 21:11:18','2012-04-27 21:11:18',37),(496,248,'Box 2049 Sardis Stn. Main','','Chilliwack','BC','V2R 1A5','mailing','2012-04-27 21:11:18','2012-04-27 21:11:18',37),(497,249,'victoriei 8','','Brasov','Brasov','500214','billing','2012-04-29 12:41:18','2012-04-29 12:41:18',188),(498,249,'victoriei 8','','Brasov','Brasov','500214','mailing','2012-04-29 12:41:18','2012-04-29 12:41:18',188),(499,250,'40055 Crawfordsville drive','','Sweet Home','Oregon','97386','billing','2012-04-30 15:07:44','2012-04-30 15:07:44',232),(500,250,'40055 Crawfordsville drive','','Sweet Home','Oregon','97386','mailing','2012-04-30 15:07:44','2012-04-30 15:07:44',232),(501,251,'353 Billman Rd.','','New Paris','OH','45347','billing','2012-04-30 15:33:57','2012-04-30 15:33:57',232),(502,251,'353 Billman Rd.','','New Paris','OH','45347','mailing','2012-04-30 15:33:57','2012-04-30 15:33:57',232),(503,252,'Syktyvkar\r\n','Sylacauga\r\n','Sylmar\r\n','Sylva\r\n',NULL,'billing','2012-05-01 00:16:10','2012-05-01 00:16:10',232),(504,252,'Syktyvkar\r\n','Sylacauga\r\n','Sylmar\r\n','Sylva\r\n',NULL,'mailing','2012-05-01 00:16:10','2012-05-01 00:16:10',232),(505,253,'140 E Mohler Ch Rd','','Ephrata ','Pa','17522','billing','2012-05-01 12:51:30','2012-05-01 12:51:30',232),(506,253,'140 E Mohler Ch Rd','','Ephrata ','Pa','17522','mailing','2012-05-01 12:51:30','2012-05-01 12:51:30',232),(507,254,'200 field rd ','','lykens ','pa','17048','billing','2012-05-02 00:46:41','2012-05-02 00:46:41',232),(508,254,'200 field rd ','','lykens ','pa','17048','mailing','2012-05-02 00:46:41','2012-05-02 00:46:41',232),(509,255,'4600 Dunn Road','','Modesto','California','95358','billing','2012-05-02 02:28:42','2012-05-02 02:28:42',232),(510,255,'4600 Dunn Road','','Modesto','California','95358','mailing','2012-05-02 02:28:42','2012-05-02 02:28:42',232),(511,256,'Winshire\r\n','Grand Giard\r\n','Pleasanmark\r\n','Haymount\r\n',NULL,'billing','2012-05-03 03:26:48','2012-05-03 03:26:48',232),(512,256,'Winshire\r\n','Grand Giard\r\n','Pleasanmark\r\n','Haymount\r\n',NULL,'mailing','2012-05-03 03:26:48','2012-05-03 03:26:48',232),(513,257,'1880 N Lincoln St','','Orange','California','92865','billing','2012-05-04 07:08:29','2012-05-04 07:08:29',232),(514,257,'1880 N Lincoln St','','Orange','California','92865','mailing','2012-05-04 07:08:29','2012-05-04 07:08:29',232),(515,258,'36345 Despain Gulch Rd. ','','Stanfield ','Or. ','97875','billing','2012-05-05 05:43:31','2012-05-05 05:43:31',232),(516,258,'36345 Despain Gulch Rd. ','','Stanfield ','Or. ','97875','mailing','2012-05-05 05:43:31','2012-05-05 05:43:31',232),(517,259,'16118 Pine Creek Rd.','','Pelkie','Michigan','49958','billing','2012-05-07 17:06:26','2012-05-17 23:07:26',232),(518,259,'34961 Tapiola Rd.','','Chassell','Michigan','49916','mailing','2012-05-07 17:06:26','2012-05-07 17:06:26',232),(519,260,'4023 Sylvia St SE','','Salem','OR','97317','billing','2012-05-07 17:19:20','2012-05-07 17:19:20',232),(520,260,'4023 Sylvia St SE','','Salem','OR','97317','mailing','2012-05-07 17:19:20','2012-05-07 17:19:20',232),(521,261,'2194 N. Schoonover Rd.','','Odessa','WA','99159','billing','2012-05-08 00:33:20','2012-05-08 00:33:20',232),(522,261,'2194 N. Schoonover Rd.','','Odessa','WA','99159','mailing','2012-05-08 00:33:20','2012-05-08 00:33:20',232),(523,262,'5317 Fruitville Rd Ste 10','','Sarasota','FL','34232','billing','2012-05-08 02:51:47','2012-05-08 02:51:47',232),(524,262,'5317 Fruitville Rd Ste 10','','Sarasota','FL','34232','mailing','2012-05-08 02:51:47','2012-05-08 02:51:47',232),(525,263,'610 rutts road','','elizabethtown','pa','17022','billing','2012-05-08 20:25:49','2012-05-08 20:25:49',232),(526,263,'610 rutts road','','elizabethtown','pa','17022','mailing','2012-05-08 20:25:50','2012-05-08 20:25:50',232),(527,264,'171 Henderson Lane','','Evensville','TN','37332','billing','2012-05-08 22:57:40','2012-05-08 22:57:40',232),(528,264,'171 Henderson Lane','','Evensville','TN','37332','mailing','2012-05-08 22:57:40','2012-05-08 22:57:40',232),(529,265,'Gray Mountain','Gray Mountain','Gray Mountain','Gray Mountain',NULL,'billing','2012-05-11 18:49:59','2012-05-11 18:49:59',232),(530,265,'Gray Mountain','Gray Mountain','Gray Mountain','Gray Mountain',NULL,'mailing','2012-05-11 18:49:59','2012-05-11 18:49:59',232),(531,266,'1012 Pleasantview Rd.','','Ephrata','PA','17522','billing','2012-05-11 19:09:39','2012-05-11 19:09:39',232),(532,266,'1012 Pleasantview Rd.','','Ephrata','PA','17522','mailing','2012-05-11 19:09:39','2012-05-11 19:09:39',232),(533,267,'529 N Central','','Libby','MT ','59923','billing','2012-05-11 22:03:58','2012-05-11 22:03:58',232),(534,267,'529 N Central','','Libby','MT ','59923','mailing','2012-05-11 22:03:58','2012-05-11 22:03:58',232),(535,268,'Gnadenfeld','','Cuauhtemoc','Chihuahua','Apdo. 19 31500','billing','2012-05-12 04:19:13','2012-05-12 04:19:13',156),(536,268,'Gnadenfeld','','Cuauhtemoc','Chihuahua','Apdo. 19 31500','mailing','2012-05-12 04:19:13','2012-05-12 04:19:13',156),(537,269,'9608 state route 161','','mechanicsburg','oh','43044','billing','2012-05-13 20:26:06','2012-05-13 20:26:06',232),(538,269,'9608 state route 161','','mechanicsburg','oh','43044','mailing','2012-05-13 20:26:06','2012-05-13 20:26:06',232),(539,270,'57284 Fritter Road','','New Concord','Ohio','43762','billing','2012-05-14 23:18:46','2012-05-14 23:18:46',232),(540,270,'57284 Fritter Road','','New Concord','Ohio','43762','mailing','2012-05-14 23:18:46','2012-05-14 23:18:46',232),(541,271,'4216 NE 102nd Ave.','','Portland','oregon','97220','billing','2012-05-15 15:43:50','2012-05-15 15:43:50',232),(542,271,'4216 NE 102nd Ave.','','Portland','oregon','97220','mailing','2012-05-15 15:43:50','2012-05-15 15:43:50',232),(543,272,'Grandard\r\n','Madingmark Park\r\n','Belana\r\n','Screst\r\n',NULL,'billing','2012-05-17 03:45:05','2012-05-17 03:45:05',232),(544,272,'Grandard\r\n','Madingmark Park\r\n','Belana\r\n','Screst\r\n',NULL,'mailing','2012-05-17 03:45:05','2012-05-17 03:45:05',232),(545,273,'119 Valley View Dr.','','Ephrata ','PA','17522','billing','2012-05-18 17:04:34','2012-05-18 17:04:34',232),(546,273,'119 Valley View Dr.','','Ephrata ','PA','17522','mailing','2012-05-18 17:04:34','2012-05-18 17:04:34',232),(547,274,'768 Hardtimes rd','','Farmville','Virginia','23901','billing','2012-05-18 20:07:12','2012-05-18 20:07:12',232),(548,274,'768 Hardtimes rd','','Farmville','Virginia','23901','mailing','2012-05-18 20:07:12','2012-05-18 20:07:12',232),(549,275,'118 Elizabeth Way','','Airdrie','Alberta','T4B 2H6','billing','2012-05-20 01:25:26','2012-05-20 01:25:26',37),(550,275,'118 Elizabeth Way','','Airdrie','Alberta','T4B 2H6','mailing','2012-05-20 01:25:26','2012-05-20 01:25:26',37),(551,276,'3015 Erwin Rd','','Clarksville','TN','37043','billing','2012-05-20 03:12:05','2012-05-20 03:12:05',232),(552,276,'3015 Erwin Rd','','Clarksville','TN','37043','mailing','2012-05-20 03:12:05','2012-05-20 03:12:05',232),(553,277,'303 Alex Lane','','Augusta','GA','30909','billing','2012-05-20 16:42:32','2012-05-20 16:42:32',232),(554,277,'303 Alex Lane','','Augusta','GA','30909','mailing','2012-05-20 16:42:32','2012-05-20 16:42:32',232),(555,278,'Underhill Center\r\n','Underwood\r\n','Unecha\r\n','Uneeda\r\n',NULL,'billing','2012-05-21 01:12:13','2012-05-21 01:12:13',232),(556,278,'Underhill Center\r\n','Underwood\r\n','Unecha\r\n','Uneeda\r\n',NULL,'mailing','2012-05-21 01:12:13','2012-05-21 01:12:13',232),(557,279,'Bijeljina','Bijeljina','Bijeljina','Bijeljina',NULL,'billing','2012-05-21 16:48:31','2012-05-21 16:48:31',232),(558,279,'Bijeljina','Bijeljina','Bijeljina','Bijeljina',NULL,'mailing','2012-05-21 16:48:31','2012-05-21 16:48:31',232),(559,280,'340 S Lemon Ave','','Walnut ','CA','91789','billing','2012-05-21 16:59:11','2012-05-21 16:59:11',232),(560,280,'340 S Lemon Ave','','Walnut ','CA','91789','mailing','2012-05-21 16:59:11','2012-05-21 16:59:11',232),(561,281,'23370 Divan Road','','Utica','Ohio','43080','billing','2012-05-22 18:34:16','2012-05-22 18:34:16',232),(562,281,'23370 Divan Road','','Utica','Ohio','43080','mailing','2012-05-22 18:34:16','2012-05-22 18:34:16',232),(563,282,'Estepona','Estepona','Estepona','Estepona',NULL,'billing','2012-05-23 06:04:01','2012-05-23 06:04:01',232),(564,282,'Estepona','Estepona','Estepona','Estepona',NULL,'mailing','2012-05-23 06:04:01','2012-05-23 06:04:01',232),(565,283,'E90 chattarpur ','Aoyimkum, Dimapur','Delhi','Haryana','91','billing','2012-05-23 19:57:55','2012-05-23 19:57:55',104),(566,283,'E90 chattarpur ','Aoyimkum, Dimapur','Delhi','Haryana','91','mailing','2012-05-23 19:57:55','2012-05-23 19:57:55',104),(567,284,'67725 Highway 69','','Westcliffe','Colorado','81252','billing','2012-05-24 03:25:49','2012-05-24 03:25:49',232),(568,284,'67725 Highway 69','','Westcliffe','Colorado','81252','mailing','2012-05-24 03:25:49','2012-05-24 03:25:49',232),(569,285,'67725 Highway 69','','Westcliffe','Colorado','81252','billing','2012-05-24 03:26:37','2012-05-24 03:26:37',232),(570,285,'67725 Highway 69','','Westcliffe','Colorado','81252','mailing','2012-05-24 03:26:37','2012-05-24 03:26:37',232),(571,286,'910 1st St. West','','West Fargo','ND','58078','billing','2012-05-26 07:28:53','2012-05-26 07:28:53',232),(572,286,'910 1st St. West','','West Fargo','ND','58078','mailing','2012-05-26 07:28:53','2012-05-26 07:28:53',232),(573,287,'Skive','Skive','Skive','Skive',NULL,'billing','2012-05-27 00:17:16','2012-05-27 00:17:16',232),(574,287,'Skive','Skive','Skive','Skive',NULL,'mailing','2012-05-27 00:17:16','2012-05-27 00:17:16',232),(575,288,'Ba trung ,ha noi','United States','Raanana','Israel',NULL,'billing','2012-05-27 01:00:26','2012-05-27 01:00:26',232),(576,288,'Ba trung ,ha noi','United States','Raanana','Israel',NULL,'mailing','2012-05-27 01:00:26','2012-05-27 01:00:26',232),(577,289,'52917 county road','','Milton Free-water','OR','97862','billing','2012-05-27 03:40:14','2012-05-27 03:40:14',232),(578,289,'52917 county road','','Milton Free-water','OR','97862','mailing','2012-05-27 03:40:14','2012-05-27 03:40:14',232),(579,290,'162 Brookwood Lane E','','Bolingbrook','IL','60440','billing','2012-05-27 03:52:05','2012-05-27 03:52:05',232),(580,290,'162 Brookwood Lane E','','Bolingbrook','IL','60440','mailing','2012-05-27 03:52:05','2012-05-27 03:52:05',232),(581,291,'1511 Union Grove Rd','','East Earl','PA','17519','billing','2012-05-27 18:39:15','2012-05-27 18:39:15',232),(582,291,'1511 Union Grove Rd','','East Earl','PA','17519','mailing','2012-05-27 18:39:15','2012-05-27 18:39:15',232),(583,292,'Roberval\r\n','Stratford\r\n','Chibougamau\r\n','TuqueLa Tuque\r\n',NULL,'billing','2012-05-28 03:39:10','2012-05-28 03:39:10',232),(584,292,'Roberval\r\n','Stratford\r\n','Chibougamau\r\n','TuqueLa Tuque\r\n',NULL,'mailing','2012-05-28 03:39:10','2012-05-28 03:39:10',232),(585,293,'Ba trung ,ha noi','No','Carlisle\r\n','Washington Island\r\n',NULL,'billing','2012-05-28 12:37:48','2012-05-28 12:37:48',232),(586,293,'Ba trung ,ha noi','No','Carlisle\r\n','Washington Island\r\n',NULL,'mailing','2012-05-28 12:37:48','2012-05-28 12:37:48',232),(587,294,'11095 Pleasant Hill Rd. NW','','Dundee','Ohio','44624','billing','2012-05-28 14:34:25','2012-05-28 14:34:25',232),(588,294,'11095 Pleasant Hill Rd. NW','','Dundee','Ohio','44624','mailing','2012-05-28 14:34:25','2012-05-28 14:34:25',232),(589,295,'1633 SE Holly St','','Portland','OR','97214','billing','2012-05-29 05:52:51','2012-05-29 05:52:51',232),(590,295,'1633 SE Holly St','','Portland','OR','97214','mailing','2012-05-29 05:52:51','2012-05-29 05:52:51',232),(591,296,'1449 Dolphin Rd','','Cantonment','FL','32533','billing','2012-05-30 14:52:48','2012-05-30 14:52:48',232),(592,296,'1449 Dolphin Rd','','Cantonment','FL','32533','mailing','2012-05-30 14:52:48','2012-05-30 14:52:48',232),(593,297,'208 Cardinal Dr W','','Seymour','IN','47274','billing','2012-05-31 11:12:21','2012-05-31 11:12:21',232),(594,297,'208 Cardinal Dr W','','Seymour','IN','47274','mailing','2012-05-31 11:12:21','2012-05-31 11:12:21',232),(595,298,'P. O. Box 967','','Fishersville','va','22939','billing','2012-05-31 18:11:31','2012-05-31 18:11:31',232),(596,298,'P. O. Box 967','','Fishersville','va','22939','mailing','2012-05-31 18:11:31','2012-05-31 18:11:31',232),(597,299,'3424 St Rt 48','','Covington','Ohio','45318','billing','2012-06-02 18:42:41','2012-06-02 18:42:41',232),(598,299,'3424 St Rt 48','','Covington','Ohio','45318','mailing','2012-06-02 18:42:41','2012-06-02 18:42:41',232),(599,300,'2007 South 163rd Circle','','Omaha','NE','68130','billing','2012-06-05 05:07:46','2012-06-05 05:07:46',232),(600,300,'2007 South 163rd Circle','','Omaha','NE','68130','mailing','2012-06-05 05:07:46','2012-06-05 05:07:46',232),(601,301,'THAI NGUYEN','[email protected]','Kwekwe','Zimbabwe',NULL,'billing','2012-06-05 14:55:38','2012-06-05 14:55:38',232),(602,301,'THAI NGUYEN','[email protected]','Kwekwe','Zimbabwe',NULL,'mailing','2012-06-05 14:55:38','2012-06-05 14:55:38',232),(603,302,'PO BOX 241043','','Anchorage','AK','99524','billing','2012-06-05 16:20:49','2012-06-05 16:20:49',232),(604,302,'PO BOX 241043','','Anchorage','AK','99524','mailing','2012-06-05 16:20:49','2012-06-05 16:20:49',232),(605,303,'1560 ','Hickory Ave','New Hampton','Iowa','50659','billing','2012-06-06 02:36:11','2012-06-06 02:36:11',232),(606,303,'1560 ','Hickory Ave','New Hampton','Iowa','50659','mailing','2012-06-06 02:36:11','2012-06-06 02:36:11',232),(607,304,'Jalan Kom Laut Yos Sudarso No.63 Medan 20243 Inonesia','','Jalan Boxsix No.72 Medan 20243 Indonesia','Indonesia','20243','billing','2012-06-06 16:57:29','2012-06-06 16:57:29',100),(608,304,'Jalan Kom Laut Yos Sudarso No.63 Medan 20243 Inonesia','','Jalan Boxsix No.72 Medan 20243 Indonesia','Indonesia','20243','mailing','2012-06-06 16:57:29','2012-06-06 16:57:29',100),(609,305,'562 Camargo Rd.','','Quarryville','PA','17566','billing','2012-06-06 19:36:14','2012-06-06 19:38:07',232),(610,305,'562 Camargo Rd.','','Quarryville','PA','17566','mailing','2012-06-06 19:36:14','2012-06-06 19:36:53',232),(611,306,'Charlotte','Minneapolis','Miami','Newark',NULL,'billing','2012-06-07 02:44:44','2012-06-07 02:44:44',232),(612,306,'Charlotte','Minneapolis','Miami','Newark',NULL,'mailing','2012-06-07 02:44:44','2012-06-07 02:44:44',232),(613,307,'89 Norman Street','','Stratford','Ontario ','N5A5R8','billing','2012-06-07 13:48:13','2012-06-07 14:03:09',37),(614,307,'25 William Street','','Stratford','Ontario ','N5A5R8','mailing','2012-06-07 13:48:13','2012-06-07 13:48:13',37),(615,308,'29991 Lake Creek Dr.','','Halsey','Oregon','97348','billing','2012-06-08 03:47:49','2012-06-08 03:47:49',232),(616,308,'29991 Lake Creek Dr.','','Halsey','Oregon','97348','mailing','2012-06-08 03:47:49','2012-06-08 03:47:49',232),(617,309,'250 E 13 MILE RD','unit #9','Madison Heights','MI','48071','billing','2012-06-08 14:05:46','2012-06-08 14:05:46',232),(618,309,'250 E 13 MILE RD','unit #9','Madison Heights','MI','48071','mailing','2012-06-08 14:05:46','2012-06-08 14:05:46',232),(619,310,'Bidabaru, Urladani, Ps: M. Rampur','Dist: Kalahandi PIN-766102','Bhawanipatna','Orissa','766102','billing','2012-06-09 11:03:42','2012-06-09 11:03:42',104),(620,310,'Bidabaru, Urladani, Ps: M. Rampur','Dist: Kalahandi PIN-766102','Bhawanipatna','Orissa','766102','mailing','2012-06-09 11:03:42','2012-06-09 11:03:42',104),(621,311,'785 Genessee St','','Delta','CO','81416','billing','2012-06-10 04:00:50','2012-06-10 04:00:50',232),(622,311,'785 Genessee St','','Delta','CO','81416','mailing','2012-06-10 04:00:50','2012-06-10 04:00:50',232),(623,312,'5825 San Cristebal ln.','','Knoxville','Tennessee','37921','billing','2012-06-12 02:18:12','2012-06-12 02:18:12',232),(624,312,'5825 San Cristebal ln.','','Knoxville','Tennessee','37921','mailing','2012-06-12 02:18:12','2012-06-12 02:18:12',232),(625,313,'2181 Hwy 23','','Wrenshall','MN','55797','billing','2012-06-12 22:35:40','2012-06-12 22:35:40',232),(626,313,'2181 Hwy 23','','Wrenshall','MN','55797','mailing','2012-06-12 22:35:40','2012-06-12 22:35:40',232),(627,314,'375 Banner Loop','','Concord','AR','72523','billing','2012-06-12 23:29:29','2012-06-12 23:29:29',232),(628,314,'375 Banner Loop','','Concord','AR','72523','mailing','2012-06-12 23:29:29','2012-06-12 23:29:29',232),(629,315,'730 Woodmoor Dr.','','Monument','Colorado','80132','billing','2012-06-13 05:47:19','2012-06-13 05:47:19',232),(630,315,'730 Woodmoor Dr.','','Monument','Colorado','80132','mailing','2012-06-13 05:47:19','2012-06-13 05:47:19',232),(631,316,'55233 Light Line','R.R#1','Vienna','Ontario','N0J1Z0','billing','2012-06-13 10:14:01','2012-06-13 10:14:01',37),(632,316,'55233 Light Line','R.R#1','Vienna','Ontario','N0J1Z0','mailing','2012-06-13 10:14:01','2012-06-13 10:14:01',37),(633,317,'1200 Orchard Hill Rd','','Mt Pleasant Mills','Pennsylvannia','17853','billing','2012-06-13 21:35:39','2012-06-13 21:35:39',232),(634,317,'1200 Orchard Hill Rd','','Mt Pleasant Mills','Pennsylvannia','17853','mailing','2012-06-13 21:35:39','2012-06-13 21:35:39',232),(635,318,'1200 Orchard Hill Rd','','Mt Pleasant Mills','Pennsylvannia','17853','billing','2012-06-13 21:37:12','2012-06-13 21:37:12',232),(636,318,'1200 Orchard Hill Rd','','Mt Pleasant Mills','Pennsylvannia','17853','mailing','2012-06-13 21:37:12','2012-06-13 21:37:12',232),(637,319,'102 Alcock Road','','Essex','MD','21221-2108','billing','2012-06-15 15:45:15','2012-06-15 15:45:15',232),(638,319,'102 Alcock Road','','Essex','MD','21221-2108','mailing','2012-06-15 15:45:15','2012-06-15 15:45:15',232),(639,320,'Abiquiu','Fair Lawn','Grapeville','Frankewing',NULL,'billing','2012-06-16 13:09:13','2012-06-16 13:09:13',232),(640,320,'Abiquiu','Fair Lawn','Grapeville','Frankewing',NULL,'mailing','2012-06-16 13:09:13','2012-06-16 13:09:13',232),(641,321,'Cedar Vale\r\n','Cedar Valley\r\n','Cedarbluff\r\n','Cedarburg\r\n',NULL,'billing','2012-06-16 18:48:36','2012-06-16 18:48:36',232),(642,321,'Cedar Vale\r\n','Cedar Valley\r\n','Cedarbluff\r\n','Cedarburg\r\n',NULL,'mailing','2012-06-16 18:48:36','2012-06-16 18:48:36',232),(643,322,'1243 W Oak Rd','','vineland','nj','08360','billing','2012-06-16 21:16:53','2012-06-16 21:16:53',232),(644,322,'1243 W Oak Rd','','vineland','nj','08360','mailing','2012-06-16 21:16:53','2012-06-16 21:16:53',232),(645,323,'4261 Newark Rd','','Oxford','PA','19363','billing','2012-06-18 12:13:36','2012-06-18 12:13:36',232),(646,323,'4261 Newark Rd','','Oxford','PA','19363','mailing','2012-06-18 12:13:36','2012-06-18 12:13:36',232),(647,324,'7 Stafford Gardens','','Maidstone','Kent','','billing','2012-06-20 20:30:42','2012-06-20 20:30:42',76),(648,324,'7 Stafford Gardens','','Maidstone','Kent','','mailing','2012-06-20 20:30:42','2012-06-20 20:30:42',76),(649,325,'229 Grant Street','','Ephrata','pa','17522','billing','2012-06-20 20:49:50','2012-06-20 20:49:50',232),(650,325,'229 Grant Street','','Ephrata','pa','17522','mailing','2012-06-20 20:49:50','2012-06-20 20:49:50',232),(651,326,'4648 Clayburn Dr E','','Grove City','OH','43123','billing','2012-06-21 02:13:08','2012-06-21 02:13:08',232),(652,326,'4648 Clayburn Dr E','','Grove City','OH','43123','mailing','2012-06-21 02:13:08','2012-06-21 02:13:08',232),(653,327,'135 BROAD ST','','AKRON','PA','17501','billing','2012-06-21 19:16:18','2012-06-21 19:16:18',232),(654,327,'135 BROAD ST','','AKRON','PA','17501','mailing','2012-06-21 19:16:18','2012-06-21 19:16:18',232),(655,328,'Box 367','','Hines Creek','Alberta','T0H2A0','billing','2012-06-24 14:31:29','2012-06-24 14:31:29',37),(656,328,'Box 367','','Hines Creek','Alberta','T0H2A0','mailing','2012-06-24 14:31:29','2012-06-24 14:31:29',37),(657,329,'89 Ferry Rd.','','Lisbon','Maine','04250','billing','2012-06-25 22:18:45','2012-06-25 22:18:45',232),(658,329,'89 Ferry Rd.','','Lisbon','Maine','04250','mailing','2012-06-25 22:18:45','2012-06-25 22:18:45',232),(659,330,'78 Cary St.','','Grottoes','Virginia','24441','billing','2012-06-27 13:14:01','2012-06-27 13:14:01',232),(660,330,'78 Cary St.','','Grottoes','Virginia','24441','mailing','2012-06-27 13:14:01','2012-06-27 13:14:01',232),(661,331,'7901 Cambridge St #68','','Houston ','TX','77054','billing','2012-06-27 17:05:15','2012-06-27 17:11:01',232),(662,331,'2305 1/2 University Blvd #1A','','Houston ','TX','77005','mailing','2012-06-27 17:05:15','2012-06-27 17:05:15',232),(663,332,'7557 elizabethtown road','','elizabethtown','pa','17022','billing','2012-06-27 23:51:45','2012-06-27 23:51:45',232),(664,332,'7557 elizabethtown road','','elizabethtown','pa','17022','mailing','2012-06-27 23:51:45','2012-06-27 23:51:45',232),(665,333,'Old Matadi Est','','Monrovia','Liberia','1000-10','billing','2012-06-28 17:47:53','2012-06-28 17:47:53',130),(666,333,'Old Matadi Est','','Monrovia','Liberia','1000-10','mailing','2012-06-28 17:47:53','2012-06-28 17:47:53',130),(667,334,'3615 s 85th east ave','','tulsa','ok','74145','billing','2012-06-28 22:09:12','2012-06-28 22:09:12',232),(668,334,'3615 s 85th east ave','','tulsa','ok','74145','mailing','2012-06-28 22:09:12','2012-06-28 22:09:12',232),(669,335,'17 Lockhart Rd','','Gympie','QLD','4570','billing','2012-06-29 10:47:20','2012-06-29 10:47:20',12),(670,335,'17 Lockhart Rd','','Gympie','QLD','4570','mailing','2012-06-29 10:47:20','2012-06-29 10:47:20',12),(671,336,'P.O. Box 719','','Anasco','Puerto Rico ','00610','billing','2012-06-29 19:26:58','2012-06-29 19:26:58',181),(672,336,'P.O. Box 719','','Anasco','Puerto Rico ','00610','mailing','2012-06-29 19:26:59','2012-06-29 19:26:59',181),(673,337,'3316 fm rd 194','','detroit','Texas','75436','billing','2012-06-29 20:24:38','2012-06-29 20:24:38',232),(674,337,'3316 fm rd 194','','detroit','Texas','75436','mailing','2012-06-29 20:24:38','2012-06-29 20:24:38',232),(675,338,'11984 Old Dayton Rd.','','Brookville','Ohio','45309','billing','2012-06-30 19:08:34','2012-06-30 19:08:34',232),(676,338,'11984 Old Dayton Rd.','','Brookville','Ohio','45309','mailing','2012-06-30 19:08:34','2012-06-30 19:08:34',232),(677,339,'8860 Lefevre Rd','','New Carlisle','Ohio','45344','billing','2012-06-30 21:29:34','2012-06-30 21:29:34',232),(678,339,'8860 Lefevre Rd','','New Carlisle','Ohio','45344','mailing','2012-06-30 21:29:34','2012-06-30 21:29:34',232),(679,340,'441 Windsor Road','','Chelsea','ME','04330','billing','2012-07-01 01:04:37','2012-07-01 01:04:37',232),(680,340,'441 Windsor Road','','Chelsea','ME','04330','mailing','2012-07-01 01:04:37','2012-07-01 01:04:37',232),(681,341,'p.o box 1808','','north highlands','ca','95660','billing','2012-07-01 03:40:30','2012-07-01 03:40:30',232),(682,341,'p.o box 1808','','north highlands','ca','95660','mailing','2012-07-01 03:40:30','2012-07-01 03:40:30',232),(683,342,'5050 Colebrook Road','','Hershey','Pennsylvania','17033','billing','2012-07-02 20:36:09','2012-07-02 20:36:09',232),(684,342,'5050 Colebrook Road','','Hershey','Pennsylvania','17033','mailing','2012-07-02 20:36:09','2012-07-02 20:36:09',232),(685,343,'142 Black Swamp Rd','','Bainbridge','PA','17502','billing','2012-07-02 23:00:03','2012-07-02 23:00:03',232),(686,343,'142 Black Swamp Rd','','Bainbridge','PA','17502','mailing','2012-07-02 23:00:03','2012-07-02 23:00:03',232),(687,344,'MINH KHAI , HA NOI','Chennai','Taiping','Eritrea',NULL,'billing','2012-07-03 10:48:13','2012-07-03 10:48:13',232),(688,344,'MINH KHAI , HA NOI','Chennai','Taiping','Eritrea',NULL,'mailing','2012-07-03 10:48:13','2012-07-03 10:48:13',232),(689,345,'1700 Wade Hampton Blvd.','','Greenville','SC','29614','billing','2012-07-03 15:10:30','2012-07-03 15:10:30',232),(690,345,'1700 Wade Hampton Blvd.','','Greenville','SC','29614','mailing','2012-07-03 15:10:30','2012-07-03 15:10:30',232),(691,346,'149 Lanchester Road','','Narvon','PA','17555','billing','2012-07-04 15:41:25','2012-07-04 15:41:25',232),(692,346,'149 Lanchester Road','','Narvon','PA','17555','mailing','2012-07-04 15:41:25','2012-07-04 15:41:25',232),(693,347,'28/403 Innes Rd','','Christchurch','Canterbury','8052','billing','2012-07-05 09:41:33','2012-07-05 09:41:33',170),(694,347,'28/403 Innes Rd','','Christchurch','Canterbury','8052','mailing','2012-07-05 09:41:33','2012-07-05 09:41:33',170),(695,348,'7610 E Snyder Rd','','Fletcher','OH','45326','billing','2012-07-06 15:13:39','2012-07-06 15:13:39',232),(696,348,'7610 E Snyder Rd','','Fletcher','OH','45326','mailing','2012-07-06 15:13:39','2012-07-06 15:13:39',232),(697,349,'209 Mill rd','','Clarks Mills','Pennsylvania [PA]','16114','billing','2012-07-06 18:18:26','2012-07-06 18:18:26',232),(698,349,'209 Mill rd','','Clarks Mills','Pennsylvania [PA]','16114','mailing','2012-07-06 18:18:26','2012-07-06 18:18:26',232),(699,350,'????????\r\n','??????????\r\n','?????????-??????????\r\n','????????\r\n',NULL,'billing','2012-07-06 22:04:50','2012-07-06 22:04:50',232),(700,350,'????????\r\n','??????????\r\n','?????????-??????????\r\n','????????\r\n',NULL,'mailing','2012-07-06 22:04:50','2012-07-06 22:04:50',232),(701,351,'321 Cooper Schoolhouse Rd','','Bainbridge','NY','13733','billing','2012-07-07 21:34:12','2012-07-07 21:34:12',232),(702,351,'321 Cooper Schoolhouse Rd','','Bainbridge','NY','13733','mailing','2012-07-07 21:34:12','2012-07-07 21:34:12',232),(703,352,'11037 Route 66','','Clarion','PA','16214','billing','2012-07-08 02:18:52','2012-07-08 02:18:52',232),(704,352,'11037 Route 66','','Clarion','PA','16214','mailing','2012-07-08 02:18:52','2012-07-08 02:18:52',232),(705,353,'5230 Springdale Rd','','Cincinnati','Ohio','45251','billing','2012-07-09 03:04:49','2012-07-09 03:05:20',232),(706,353,'Apartado Postal # 5','','Choix','Sinaloa','81700','mailing','2012-07-09 03:04:49','2012-07-09 03:04:49',156),(707,354,'65 Carter Rd','','Auburn','KY','42206','billing','2012-07-10 22:46:36','2012-07-10 22:46:36',232),(708,354,'65 Carter Rd','','Auburn','KY','42206','mailing','2012-07-10 22:46:36','2012-07-10 22:46:36',232),(709,355,'42 De laine Ave','','Edwardstown','SA','5039','billing','2012-07-11 15:27:17','2012-07-11 15:27:17',12),(710,355,'42 De laine Ave','','Edwardstown','SA','5039','mailing','2012-07-11 15:27:17','2012-07-11 15:27:17',12),(711,356,'121 bai bureh road kissy','','freetown','freetown','+232','billing','2012-07-11 17:26:58','2012-07-11 17:26:58',202),(712,356,'121 bai bureh road kissy','','freetown','freetown','+232','mailing','2012-07-11 17:26:58','2012-07-11 17:26:58',202),(713,357,'13194 Warwick Rd.','','Marshallville','OH','44645','billing','2012-07-12 14:59:44','2012-07-12 14:59:44',232),(714,357,'13194 Warwick Rd.','','Marshallville','OH','44645','mailing','2012-07-12 14:59:44','2012-07-12 14:59:44',232),(715,358,'','','','','','billing','2012-07-13 19:15:29','2012-07-13 19:39:52',232),(716,358,'','','','','','mailing','2012-07-13 19:15:29','2012-07-13 19:40:07',232),(717,359,'3815 Horseshoe Pike','','Honey Brook','PA','19344','billing','2012-07-14 16:17:25','2012-07-14 16:17:25',232),(718,359,'3815 Horseshoe Pike','','Honey Brook','PA','19344','mailing','2012-07-14 16:17:25','2012-07-14 16:17:25',232),(719,360,'95 Saw Mill Rd.','','Ephrata','PA','17522','billing','2012-07-16 17:03:07','2012-07-16 17:03:07',232),(720,360,'95 Saw Mill Rd.','','Ephrata','PA','17522','mailing','2012-07-16 17:03:07','2012-07-16 17:03:07',232),(721,361,'8927 TR 657','','Fredericksburg','Ohio','44627','billing','2012-07-17 15:40:11','2012-07-17 15:40:11',232),(722,361,'8927 TR 657','','Fredericksburg','Ohio','44627','mailing','2012-07-17 15:40:11','2012-07-17 15:40:11',232),(723,362,'135 Grace Terrace','','Pasadena','CA','91105','billing','2012-07-17 22:28:11','2012-07-17 22:28:11',232),(724,362,'135 Grace Terrace','','Pasadena','CA','91105','mailing','2012-07-17 22:28:11','2012-07-17 22:28:11',232),(725,363,'1944 GARFIELD AVE.','','READING','PA.','19609','billing','2012-07-19 13:42:40','2012-07-19 13:42:40',232),(726,363,'1944 GARFIELD AVE.','','READING','PA.','19609','mailing','2012-07-19 13:42:40','2012-07-19 13:42:40',232),(727,364,'5079 Teagues Rd.','','Bradford','Ohio','45308','billing','2012-07-21 13:43:39','2012-07-21 13:45:02',232),(728,364,'5079 Teagues Rd.','','Bradford','Ohio','45308','mailing','2012-07-21 13:43:39','2012-07-21 13:45:14',232),(729,365,'1450 Reading Rd','','Mohnton','PA','19540','billing','2012-07-24 21:29:56','2012-07-24 21:29:56',232),(730,365,'1450 Reading Rd','','Mohnton','PA','19540','mailing','2012-07-24 21:29:56','2012-07-24 21:29:56',232),(731,366,'O lop minh chu dau','Haiduong','Spitak','Armenia',NULL,'billing','2012-07-25 02:47:27','2012-07-25 02:47:27',232),(732,366,'O lop minh chu dau','Haiduong','Spitak','Armenia',NULL,'mailing','2012-07-25 02:47:27','2012-07-25 02:47:27',232),(733,367,'Box 143','','Rosiesle','MB','R0G 1V0','billing','2012-07-25 23:21:37','2012-07-25 23:22:07',232),(734,367,'Box 143','','Rosiesle','MB','R0G 1V0','mailing','2012-07-25 23:21:37','2012-07-25 23:21:37',37),(735,368,'3483-40200 kisii','-','nairobi','nyanza','254','billing','2012-07-27 16:46:35','2012-07-27 16:46:35',114),(736,368,'3483-40200 kisii','-','nairobi','nyanza','40200','mailing','2012-07-27 16:46:35','2012-07-27 16:48:31',232),(737,369,'719 Featherwood Dr.','','Diamond Bar','Ca','91765','billing','2012-07-27 18:25:30','2012-07-27 18:25:30',232),(738,369,'719 Featherwood Dr.','','Diamond Bar','Ca','91765','mailing','2012-07-27 18:25:30','2012-07-27 18:25:30',232),(739,370,'2625 Finley Guy Rd','','London','Ohio','43140','billing','2012-07-28 13:18:08','2012-07-28 13:18:08',232),(740,370,'2625 Finley Guy Rd','','London','Ohio','43140','mailing','2012-07-28 13:18:08','2012-07-28 13:18:08',232),(741,371,'107 Keystone Court','','Dingmans Ferry','Pennsylvania','18328-4016','billing','2012-07-28 21:25:53','2012-07-28 21:25:53',232),(742,371,'107 Keystone Court','','Dingmans Ferry','Pennsylvania','18328-4016','mailing','2012-07-28 21:25:53','2012-07-28 21:25:53',232),(743,372,'560 W 165th St Apt.916','','New York','NY','10032','billing','2012-07-29 08:46:11','2012-07-29 08:46:11',232),(744,372,'560 W 165th St Apt.916','','New York','NY','10032','mailing','2012-07-29 08:46:11','2012-07-29 08:46:11',232),(745,373,'358 Arlington Ave','','Brooklyn','Ny','11208','billing','2012-07-29 23:56:09','2012-07-29 23:56:09',232),(746,373,'358 Arlington Ave','','Brooklyn','Ny','11208','mailing','2012-07-29 23:56:09','2012-07-29 23:56:09',232);
/*!40000 ALTER TABLE `addresses` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `businesses`
--
DROP TABLE IF EXISTS `businesses`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `businesses` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`phone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`address_1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`address_2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`city` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`province` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`zipcode` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`lat` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`lng` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`description` text COLLATE utf8_unicode_ci,
`image_id` int(11) DEFAULT NULL,
`position` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_businesses_on_id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `businesses`
--
LOCK TABLES `businesses` WRITE;
/*!40000 ALTER TABLE `businesses` DISABLE KEYS */;
INSERT INTO `businesses` VALUES (1,'Integrity Audio Systems','5409084445','[email protected]','373 Neff Ave','','Harrisonburg','VA','22801','','','<p>This is timothy Johnson</p>',NULL,1,'2012-08-20 02:24:50','2012-08-20 02:33:48'),(2,'Dayton Farmers Market','','','','','','','','','','',NULL,0,'2012-08-20 02:33:38','2012-08-20 02:33:48');
/*!40000 ALTER TABLE `businesses` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cat_prog_juncs`
--
DROP TABLE IF EXISTS `cat_prog_juncs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cat_prog_juncs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`category_id` int(11) DEFAULT NULL,
`program_id` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=168 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cat_prog_juncs`
--
LOCK TABLES `cat_prog_juncs` WRITE;
/*!40000 ALTER TABLE `cat_prog_juncs` DISABLE KEYS */;
INSERT INTO `cat_prog_juncs` VALUES (2,6,5,'2011-08-16 19:50:27','2011-08-16 19:50:27'),(4,9,5,'2011-08-16 19:50:27','2011-08-16 19:50:27'),(7,1,13,'2011-08-16 19:51:55','2011-08-16 19:51:55'),(8,1,20,'2011-08-16 19:52:09','2011-08-16 19:52:09'),(11,9,6,'2011-08-17 21:17:14','2011-08-17 21:17:14'),(21,5,25,'2011-08-18 18:03:11','2011-08-18 18:03:11'),(22,7,25,'2011-08-18 18:03:11','2011-08-18 18:03:11'),(25,3,32,'2011-08-18 19:41:23','2011-08-18 19:41:23'),(28,9,34,'2011-08-22 14:52:17','2011-08-22 14:52:17'),(29,6,35,'2011-08-22 14:58:39','2011-08-22 14:58:39'),(30,1,36,'2011-08-22 15:01:15','2011-08-22 15:01:15'),(31,9,36,'2011-08-22 15:01:15','2011-08-22 15:01:15'),(32,2,37,'2011-08-22 15:06:30','2011-08-22 15:06:30'),(33,6,38,'2011-08-22 15:12:22','2011-08-22 15:12:22'),(34,1,39,'2011-08-22 15:19:52','2011-08-22 15:19:52'),(35,1,40,'2011-08-22 15:25:43','2011-08-22 15:25:43'),(36,2,27,'2011-08-22 18:11:53','2011-08-22 18:11:53'),(37,9,8,'2011-08-22 18:18:26','2011-08-22 18:18:26'),(39,21,33,'2011-08-23 14:19:02','2011-08-23 14:19:02'),(40,9,38,'2011-08-23 14:23:08','2011-08-23 14:23:08'),(41,6,3,'2011-08-23 14:23:57','2011-08-23 14:23:57'),(42,8,7,'2011-08-23 14:24:44','2011-08-23 14:24:44'),(43,12,7,'2011-08-23 14:24:44','2011-08-23 14:24:44'),(47,5,9,'2011-08-23 14:25:30','2011-08-23 14:25:30'),(49,11,10,'2011-08-23 14:26:13','2011-08-23 14:26:13'),(50,13,10,'2011-08-23 14:26:13','2011-08-23 14:26:13'),(51,4,11,'2011-08-23 14:26:37','2011-08-23 14:26:37'),(52,13,11,'2011-08-23 14:26:37','2011-08-23 14:26:37'),(55,7,12,'2011-08-23 14:27:16','2011-08-23 14:27:16'),(59,4,15,'2011-08-23 14:28:26','2011-08-23 14:28:26'),(61,1,2,'2011-08-23 14:29:02','2011-08-23 14:29:02'),(65,3,17,'2011-08-23 14:29:31','2011-08-23 14:29:31'),(68,9,18,'2011-08-23 14:32:55','2011-08-23 14:32:55'),(72,8,19,'2011-08-23 14:35:19','2011-08-23 14:35:19'),(78,7,22,'2011-08-23 15:16:54','2011-08-23 15:16:54'),(79,10,22,'2011-08-23 15:16:54','2011-08-23 15:16:54'),(82,8,23,'2011-08-23 15:17:22','2011-08-23 15:17:22'),(86,7,24,'2011-08-23 15:17:42','2011-08-23 15:17:42'),(91,2,1,'2011-08-23 15:18:51','2011-08-23 15:18:51'),(95,11,29,'2011-08-23 15:24:50','2011-08-23 15:24:50'),(99,11,30,'2011-08-23 15:27:15','2011-08-23 15:27:15'),(105,4,42,'2011-08-26 19:43:50','2011-08-26 19:43:50'),(106,9,3,'2011-09-07 20:34:24','2011-09-07 20:34:24'),(107,4,41,'2011-09-08 15:24:04','2011-09-08 15:24:04'),(108,13,41,'2011-09-08 15:24:04','2011-09-08 15:24:04'),(110,1,14,'2011-09-09 15:58:43','2011-09-09 15:58:43'),(111,8,13,'2011-09-29 15:48:53','2011-09-29 15:48:53'),(112,11,13,'2011-09-29 15:48:53','2011-09-29 15:48:53'),(113,6,18,'2011-09-29 15:52:27','2011-09-29 15:52:27'),(114,7,18,'2011-09-29 15:52:27','2011-09-29 15:52:27'),(115,4,26,'2011-09-29 15:55:23','2011-09-29 15:55:23'),(116,9,35,'2011-09-29 15:55:41','2011-09-29 15:55:41'),(117,1,28,'2011-09-29 15:56:34','2011-09-29 15:56:34'),(118,22,39,'2011-09-29 15:59:56','2011-09-29 15:59:56'),(119,23,39,'2011-09-29 16:00:58','2011-09-29 16:00:58'),(120,23,14,'2011-09-29 16:01:12','2011-09-29 16:01:12'),(121,23,2,'2011-09-29 16:01:28','2011-09-29 16:01:28'),(122,23,40,'2011-09-29 16:01:56','2011-09-29 16:01:56'),(123,23,28,'2011-09-29 16:02:12','2011-09-29 16:02:12'),(124,15,26,'2011-10-11 17:26:35','2011-10-11 17:26:35'),(125,15,11,'2011-10-11 17:26:53','2011-10-11 17:26:53'),(126,15,15,'2011-10-11 17:27:14','2011-10-11 17:27:14'),(127,15,41,'2011-10-11 17:36:07','2011-10-11 17:36:07'),(128,34,41,'2011-10-11 17:36:54','2011-10-11 17:36:54'),(129,29,38,'2011-10-11 17:37:50','2011-10-11 17:37:50'),(130,24,39,'2011-10-11 17:39:53','2011-10-11 17:39:53'),(131,24,40,'2011-10-11 17:40:39','2011-10-11 17:40:39'),(132,27,32,'2011-10-11 17:41:48','2011-10-11 17:41:48'),(133,29,35,'2011-10-11 17:45:10','2011-10-11 17:45:10'),(134,29,5,'2011-10-11 17:47:25','2011-10-11 17:47:25'),(135,31,6,'2011-10-11 17:48:58','2011-10-11 17:48:58'),(136,29,3,'2011-10-11 17:49:36','2011-10-11 17:49:36'),(137,33,7,'2011-10-11 17:50:32','2011-10-11 17:50:32'),(138,15,7,'2011-10-11 17:50:32','2011-10-11 17:50:32'),(139,34,10,'2011-10-11 18:20:23','2011-10-11 18:20:23'),(140,34,11,'2011-10-11 18:39:29','2011-10-11 18:39:29'),(141,32,12,'2011-10-11 18:50:23','2011-10-11 18:50:23'),(142,28,13,'2011-10-11 18:52:17','2011-10-11 18:52:17'),(143,24,13,'2011-10-11 18:52:17','2011-10-11 18:52:17'),(144,26,13,'2011-10-11 18:52:17','2011-10-11 18:52:17'),(162,24,14,'2011-10-19 18:44:12','2011-10-19 18:44:12'),(146,24,2,'2011-10-11 19:14:10','2011-10-11 19:14:10'),(147,27,17,'2011-10-11 19:15:20','2011-10-11 19:15:20'),(148,32,18,'2011-10-11 19:16:52','2011-10-11 19:16:52'),(149,29,18,'2011-10-11 19:16:52','2011-10-11 19:16:52'),(150,24,20,'2011-10-11 19:20:21','2011-10-11 19:20:21'),(151,32,22,'2011-10-11 19:21:38','2011-10-11 19:21:38'),(152,30,22,'2011-10-11 19:21:38','2011-10-11 19:21:38'),(153,24,28,'2011-10-11 19:23:46','2011-10-11 19:23:46'),(154,26,23,'2011-10-11 19:58:24','2011-10-11 19:58:24'),(155,28,29,'2011-10-11 19:59:11','2011-10-11 19:59:11'),(156,32,24,'2011-10-11 20:00:15','2011-10-11 20:00:15'),(157,28,30,'2011-10-11 20:03:47','2011-10-11 20:03:47'),(158,32,25,'2011-10-11 20:04:36','2011-10-11 20:04:36'),(159,25,27,'2011-10-11 20:05:30','2011-10-11 20:05:30'),(160,26,19,'2011-10-13 12:30:09','2011-10-13 12:30:09'),(161,25,1,'2011-10-19 18:17:25','2011-10-19 18:17:25'),(163,26,42,'2011-12-06 21:29:11','2011-12-06 21:29:11'),(164,28,42,'2011-12-06 21:29:12','2011-12-06 21:29:12'),(165,24,42,'2011-12-06 21:29:12','2011-12-06 21:29:12'),(166,15,43,'2012-02-16 18:20:51','2012-02-16 18:20:51'),(167,15,44,'2012-02-16 18:24:47','2012-02-16 18:24:47');
/*!40000 ALTER TABLE `cat_prog_juncs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `categories`
--
DROP TABLE IF EXISTS `categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`category_name` varchar(255) DEFAULT NULL,
`category_short_description` text,
`category_description` text,
`category_image_id` int(11) DEFAULT NULL,
`position` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`ancestry` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_categories_on_id` (`id`),
KEY `index_categories_on_category_name` (`category_name`),
KEY `index_categories_on_ancestry` (`ancestry`)
) ENGINE=MyISAM AUTO_INCREMENT=35 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `categories`
--
LOCK TABLES `categories` WRITE;
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
INSERT INTO `categories` VALUES (5,'Clothing','<p>short</p>','<p>long</p>',NULL,9,'2011-05-23 15:57:09','2011-10-19 17:58:04',NULL),(32,'Self-Help','','',NULL,11,'2011-10-11 17:33:47','2011-10-19 17:58:05',NULL),(33,'Martyrs','','',NULL,12,'2011-10-11 17:34:38','2011-10-19 17:58:05',NULL),(9,'Spiritual Needs','<p>Short</p>','<p>Long</p>',NULL,2,'2011-05-23 15:58:06','2011-10-12 13:01:46',NULL),(34,'Service Programs','','',NULL,7,'2011-10-11 17:36:23','2011-10-19 17:58:04',NULL),(27,'School','','',NULL,13,'2011-10-11 17:32:08','2011-10-19 17:58:05',NULL),(28,'Misc Needs','','',NULL,10,'2011-10-11 17:32:34','2011-10-19 17:58:05',NULL),(29,'Literature','','',NULL,1,'2011-10-11 17:32:52','2011-10-12 13:01:45',NULL),(30,'Microfinance','','',NULL,5,'2011-10-11 17:33:13','2011-10-12 13:01:46',NULL),(15,'Emergency Aid','','',NULL,4,'2011-05-24 15:04:30','2011-10-19 17:58:04',NULL),(24,'Hunger Relief','','',NULL,14,'2011-10-11 17:31:24','2011-10-19 17:58:05',NULL),(25,'Orphans','','',NULL,15,'2011-10-11 17:31:41','2011-10-19 17:58:05',NULL),(26,'Medical','','',NULL,6,'2011-10-11 17:31:54','2011-10-19 17:58:04',NULL),(21,'Where Needed Most','<p>General funds used for whichever programs need the most help at the time, as well as administration and fund-raising expenses.</p>','<p>Where Needed Most (or non-specified) funds are used for aid programs that did not receive enough specified funds, and for general administration and fund-raising expenses. We want to be good stewards of all gifts from supporters and need your prayers for wisdom and direction from God. May He be glorified as we labor together to further His kingdom on earth!</p>',NULL,0,'2011-08-22 14:46:53','2011-10-12 13:01:45',NULL),(23,'Food Parcel','<p>Short</p>\r\n<br />','<p>Long</p>\r\n<br />',NULL,8,'2011-09-29 16:00:43','2011-10-19 17:58:04',NULL),(31,'Billboard Evangelism','','',NULL,3,'2011-10-11 17:33:27','2011-10-12 13:01:46',NULL);
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contact_instances`
--
DROP TABLE IF EXISTS `contact_instances`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `contact_instances` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`contact_id` int(11) DEFAULT NULL,
`message` text,
`request_follow_up` tinyint(1) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `contact_instances`
--
LOCK TABLES `contact_instances` WRITE;
/*!40000 ALTER TABLE `contact_instances` DISABLE KEYS */;
/*!40000 ALTER TABLE `contact_instances` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contacts`
--
DROP TABLE IF EXISTS `contacts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `contacts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`email` varchar(255) DEFAULT NULL,
`first_name` varchar(255) DEFAULT NULL,
`last_name` varchar(255) DEFAULT NULL,
`address_1` varchar(255) DEFAULT NULL,
`address_2` varchar(255) DEFAULT NULL,
`city` varchar(255) DEFAULT NULL,
`state` varchar(255) DEFAULT NULL,
`postal_code` varchar(255) DEFAULT NULL,
`member_id` int(11) DEFAULT NULL,
`newsletter_recipient` tinyint(1) DEFAULT NULL,
`position` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`country` varchar(255) DEFAULT 'UNITED STATES',
PRIMARY KEY (`id`),
KEY `index_contacts_on_id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `contacts`
--
LOCK TABLES `contacts` WRITE;
/*!40000 ALTER TABLE `contacts` DISABLE KEYS */;
/*!40000 ALTER TABLE `contacts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `content_holders`
--
DROP TABLE IF EXISTS `content_holders`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `content_holders` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT NULL,
`body` text,
`position` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_content_holders_on_id` (`id`),
KEY `index_content_holders_on_title` (`title`)
) ENGINE=MyISAM AUTO_INCREMENT=119 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `content_holders`
--
LOCK TABLES `content_holders` WRITE;
/*!40000 ALTER TABLE `content_holders` DISABLE KEYS */;
INSERT INTO `content_holders` VALUES (1,'Header (do not remove)','<div id=\"placesocial\">\r\n <a href=\"/contacts/newsletter_signup\"><img src=\"/images/btn_newsletter.gif\" /></a> \r\n <a href=\"/donate\"><img src=\"/images/btn_make_a_donation.gif\" /></a>\r\n</div>\r\n\r\n<div id=\"placemainmenu\">\r\n <div id=\"placemainmenu\">\r\n <ul id=\"mainmenu\">\r\n <li>\r\n <a href=\"/\">Home</a>\r\n </li>\r\n <li>\r\n <a href=\"/programs\">Our Programs</a>\r\n </li>\r\n <li>\r\n <a href=\"/news\">News</a>\r\n <ul>\r\n <li>\r\n <a href=\"/news/releases\">Recent posts</a>\r\n </li>\r\n <li>\r\n <a href=\"/news/newsletters\">CAM Newsletters</a>\r\n </li>\r\n </ul>\r\n </li>\r\n <li>\r\n <a href=\"/donate\">Donate</a>\r\n </li>\r\n <li>\r\n <a href=\"/about-cam/who-we-are\">About Us</a>\r\n <ul>\r\n <li>\r\n <a href=\"/about-cam/who-we-are\">Who we are</a>\r\n </li>\r\n <li>\r\n <a href=\"/about-cam/locations\">Locations</a>\r\n </li>\r\n <li> <a href=\"/about-cam/financial-accountability\">Financial Accountability</a>\r\n <ul>\r\n <li>\r\n <a href=\"/about-cam/financial-accountability/financial-statements\">Financial Statements</a>\r\n </li>\r\n </ul>\r\n </li>\r\n <li>\r\n <a href=\"/about-cam/statement-of-faith\">Statement of Faith</a>\r\n </li>\r\n <li>\r\n <a href=\"/about-cam/biblical-stewardship-services\">Biblical Stewardship Services</a>\r\n </li>\r\n <li>\r\n <a href=\"/about-cam/tgs-international\">TGS International</a>\r\n </li>\r\n </ul>\r\n </li>\r\n <li>\r\n <a href=\"/contacts/new\">Contact Us</a>\r\n </li>\r\n <div>\r\n <form id=\"frmsearch\" accept-charset=\"UTF-8\" action=\"/search\" method=\"post\">\r\n <input name=\"utf8\" value=\"?\" type=\"hidden\" />\r\n <input name=\"authenticity_token\" value=\"Vz1EFjKUWJbBQx7qXoLHmhK6jfetnglnhcvOVhCunQw=\" type=\"hidden\" />\r\n <input id=\"query\" name=\"query\" class=\"textboxsearch\" type=\"search\" />\r\n <input class=\"submitsearch\" name=\"commit\" value=\"Search!\" type=\"submit\" />\r\n </form>\r\n </div>\r\n </ul>\r\n </div>\r\n</div>\r\n',0,'2011-08-11 20:26:55','2012-01-03 16:08:13'),(2,'Footer (do not remove)',' <p><p>The Municipal Building is located at 125 Eastview Street, Dayton, VA 22821  |  (540) 879-2241<br />Office and drive-thru hours are 8 a.m. – 4:30 p.m. Monday – Friday</p>\r\n</p>',0,'2011-08-11 19:30:57','2012-08-19 17:45:59'),(116,'Left Sidebar (Community)','<h4>Community</h4>\r\n <ul>\r\n<li>\r\n<ul>\r\n <li> <a href=\"/about/community#dayton-discovery\" title=\"Dayton Discovery Newsletter\">Dayton Discovery Newsletter »</a> </li>\r\n <li> <a href=\"/about/community#dog-ordinance\" title=\"Dog Ordinance\">Dog Ordinance »</a> </li>\r\n<li> <a href=\"/about/community#emergency\" title=\"Emergency\">Emergency »</a> </li>\r\n <li> <a href=\"/about/community#employment\" title=\"Employment Applications\">Employment Applications »</a> </li>\r\n <li> <a href=\"/about/community#open-fires\" title=\"Open Fires\">Open Fires »</a> </li>\r\n <li> <a href=\"/about/community#snow-removal\" title=\"Snow Removal\">Snow Removal »</a> </li>\r\n <li> <a href=\"/about/community#miss-utility\" title=\"Miss Utility of Virginia\">Miss Utility of Virginia »</a> </li>\r\n <li> <a href=\"/about/community#dayton-map\" title=\"Map of Dayton\">Map of Dayton »</a> </li>\r\n</ul>\r\n </li>\r\n<li><a href=\"/news\" title=\"News\">News »</a>\r\n</li>\r\n<li><a href=\"/events\" title=\"Town of Dayton Event Calendar\">Events »</a>\r\n</li>\r\n<li><a href=\"/foia-requests\" title=\"FOIA Requests\">FOIA Requests »</a>\r\n</li>\r\n<li><a href=\"/businesses\" title=\"Dayton Local Directory\">Local Directory »</a>\r\n</li>\r\n \r\n\r\n </ul>\r\n\r\n\r\n\r\n',7,'2012-08-20 02:49:41','2012-08-23 21:24:14'),(115,'Left Sidebar (Town Departments)',' <h4>Town Departments</h4>\r\n <ul>\r\n <li> <a href=\"/administrative\">Administrative »</a> </li>\r\n <li>\r\n <ul>\r\n <li><a href=\"/town-police-dept\">Dayton Police Department »</a>\r\n</li>\r\n <li><a href=\"/town-police-dept#dept-contact\">Contact Info »</a>\r\n</li>\r\n <li><a href=\"/town-police-dept#police-chief\">Chief of Police »</a>\r\n</li>\r\n </ul>\r\n <ul>\r\n <li><a href=\"/town-police-dept#dayton-codes\">Homeland Security Check »</a>\r\n</li>\r\n <li><a href=\"/town-police-dept#dayton-codes\">Dayton Criminal Code »</a>\r\n</li>\r\n <li><a href=\"/town-police-dept#dayton-codes\">Dayton Traffic Code »</a>\r\n</li>\r\n </ul>\r\n </li>\r\n <li><a href=\"about/town-departments/public-works\">Public Works »</a>\r\n</li>\r\n <li><a href=\"about/town-departments/treasurer\">Treasurer »</a>\r\n</li>\r\n <li><a href=\"about/town-departments/zoning-admin\">Zoning Administrator »</a>\r\n</li>\r\n <li><a href=\"about/town-departments/parks\">Parks »</a>\r\n</li>\r\n <li><a href=\"about/town-departments/newsletter\">Newsletter »</a>\r\n</li>\r\n </ul>',6,'2012-08-19 19:42:29','2012-08-27 13:54:23'),(10,'Donation Complete Thank You Page ( DO NOT REMOVE )','<h1>Thank you for sharing!</h1>\r\n\r\n\r\n<h2><img src=\"/system/images/BAhbBlsHOgZmSSIqMjAxMi8wNi8wNy8xNl8yMV8yM182NTFfVFlfTGV0dGVyLnBuZwY6BkVU/TY_Letter.png\" height=\"450\" width=\"252\" /></h2>\r\n\r\n<p>Thank you for bringing joy to needy people through CAM’s <a style=\"font-weight: bold;\" title=\"/programs/30\" href=\"/programs/30\">Water-for-the-World</a> program, literature projects, and other aid programs! Thousands of families in various parts of the world find hope through the love and care of supporters like you.</p>\r\n<h3>--Christian Aid Ministries</h3>\r\n<h2>Please check your email for your transaction information.</h2>\r\n',NULL,'2011-09-07 21:28:59','2012-06-07 12:23:16'),(11,'Programs Listing','<div class=\"boxnav\">\r\n<h1>Other Programs</h1>\r\n <ul id=\"donations\">\r\n <li>\r\n <a href=\"/donations/5\">Bibles-for-the-World</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/6\">Billboard Evangelism</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/3\">Christian Family Magazines</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/7\">Christian Martyrs Fund</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/8\">Church Planning Projects</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/9\">Clothing Bundle Project</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/10\">Conservative Anabaptist Service Program (CASP)</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/11\">Disaster Response Services / Rapid Response Team</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/12\">Family Self-Support</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/13\">Gifts That Grow</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/4\">Haiti Sponsor-A-Child School Program</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/14\">Help for the Elderly</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/15\">International Crisis</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/2\">International Feed A Family</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/17\">International Sponsor-A-Student</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/18\">Jericho Road Ministries</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/19\">Medicines for Multitudes</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/20\">Milk for Many Mouths</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/21\">Nicaragua-Adopt-A-Family</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/22\">SALT Microfinance Program</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/23\">Save-A-Life!</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/24\">Seed Project</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/25\">Sewing Center</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/1\">Support An Orphan</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/26\">Special Needs Fund</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/27\">Strong Tower Children's Home</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/28\">Support A Widow</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/29\">Warm a Family</a>\r\n </li>\r\n <li>\r\n <a href=\"/donations/30\">Water for the World</a>\r\n </li>\r\n </ul>\r\n</div>',5,'2011-08-11 21:30:27','2011-08-18 15:00:05'),(12,'Newsletter Signup Header ( do not remove )','<h1>Signup for our Newsletter!</h1>\r\n<p>Please note this newsletter is a printed newsletter, and will be mailed to your mailbox.</p>\r\n',NULL,'2011-08-30 16:13:49','2011-09-30 13:27:07'),(13,'Contact Us Complete ( do not remove )','<h1>Thank you for contacting us.</h1>\r\n<p>We\'ll look into your matter shortly.</p>',NULL,'2011-08-30 16:37:24','2011-11-22 21:21:29'),(14,'Newsletter Signup Complete ( do not remove )','<h1>Thanks!</h1>\r\n<p>Please check your mailbox over the next few weeks for your first Christian Aid Ministries Newsletter!</p>',NULL,'2011-08-30 17:07:36','2011-09-30 13:24:39'),(15,'Donate Page Right Box ( do not remove )','<p>{{ donate_form_33 <img src=\"/system/images/BAhbBlsHOgZmSSIwMjAxMi8wNy8xMi8yMF8zMF8yMV81MTBfd2hlcmVuZWVkZWRtb3N0LmpwZwY6BkVU/whereneededmost.jpg\" height=\"315\" width=\"300\" /> }}</p>',NULL,'2011-09-12 15:33:34','2012-07-12 16:32:42'),(3,'Quick Links',' <ul>\r\n <li><a href=\"/about/town-departments/public-works#water-quality\">Looking for the latest Water Quality Report? »</a>\r\n</li>\r\n <li><a href=\"/about/town-departments/public-works#trash-collection\">Need to know the trash collection schedule? »</a>\r\n</li>\r\n <li><a href=\"/about/town-departments/treasurer#business-application\">Starting a business and need a license? »</a>\r\n</li>\r\n <li><a href=\"/about/community#dayton-discovery\">Go green. Get the Town newsletter via email. »</a>\r\n</li>\r\n <li><a href=\"/town-government#mayor-council\">Attend our next Town Council meeting. »</a>\r\n</li>\r\n <li><a href=\"/town-departments/parks#shelter-reservations\">Reserve a shelter at one of our Town parks. »</a>\r\n</li>\r\n </ul>\r\n',3,'2012-06-13 20:23:20','2012-08-22 20:28:25'),(117,'Left Sidebar (Town Government)',' <h4>Town Government</h4>\r\n <ul>\r\n<li>\r\n<ul>\r\n <li><a href=\"/town-government#mayor-council\">Mayor and Council »</a>\r\n</li>\r\n <li><a href=\"/town-government#council-committees\">Council Committees »</a>\r\n</li>\r\n <li><a href=\"/town-government#council-minutes\">Council Minutes »</a>\r\n</li>\r\n</ul>\r\n</li>\r\n<li>\r\n<ul> \r\n <li><a href=\"/town-government#code-of-ordinances\">Charter | Budget »</a>\r\n</li>\r\n <li><a href=\"/town-government#dayton-planning-commision\">Planning Commission »</a>\r\n</li>\r\n <li><a href=\"/town-government#zoning-boa\">Zoning Board of Appeals »</a>\r\n</li>\r\n <li><a href=\"/town-government#foia-requests\">FOIA Requests »</a>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n',8,'2012-08-22 17:31:00','2012-08-22 18:22:08'),(118,'Left Sidebar (top nav)','<h4>The Town of Dayton</h4>\r\n <ul>\r\n<li> <a href=\"/\" title=\"Faqs\">Home »</a> </li>\r\n<li> <a href=\"/faq\" title=\"Faq\">FAQS »</a> </li>\r\n<li><a href=\"/links\" title=\"Links\">Links »</a>\r\n</li>\r\n<li><a href=\"/downloads\" title=\"Downloads\">Downloads »</a>\r\n</li>\r\n </ul>',9,'2012-08-22 19:09:13','2012-08-22 19:11:28');
/*!40000 ALTER TABLE `content_holders` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `countries`
--
DROP TABLE IF EXISTS `countries`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `countries` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`country_code` varchar(255) NOT NULL,
`country_name` varchar(255) NOT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`position` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `index_countries_on_country_code` (`country_code`),
KEY `index_countries_on_country_name` (`country_name`),
KEY `index_countries_on_id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=251 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `countries`
--
LOCK TABLES `countries` WRITE;
/*!40000 ALTER TABLE `countries` DISABLE KEYS */;
INSERT INTO `countries` VALUES (1,'AE','United Arab Emirates',NULL,NULL,0),(3,'AG','Antigua and Barbuda',NULL,NULL,0),(4,'AI','Anguilla',NULL,NULL,0),(5,'AL','Albania',NULL,NULL,0),(6,'AM','Armenia',NULL,NULL,0),(7,'AO','Angola',NULL,NULL,0),(8,'AQ','Antarctica',NULL,NULL,0),(9,'AR','Argentina',NULL,NULL,0),(10,'AS','American Samoa',NULL,NULL,0),(11,'AT','Austria',NULL,NULL,0),(12,'AU','Australia',NULL,NULL,0),(13,'AW','Aruba',NULL,NULL,0),(14,'AX','Aland Islands',NULL,NULL,0),(15,'AZ','Azerbaijan',NULL,NULL,0),(16,'BA','Bosnia and Herzegovina',NULL,NULL,0),(17,'BB','Barbados',NULL,NULL,0),(18,'BD','Bangladesh',NULL,NULL,0),(19,'BE','Belgium',NULL,NULL,0),(20,'BF','Burkina Faso',NULL,NULL,0),(21,'BG','Bulgaria',NULL,NULL,0),(22,'BH','Bahrain',NULL,NULL,0),(23,'BI','Burundi',NULL,NULL,0),(24,'BJ','Benin',NULL,NULL,0),(25,'BL','Saint Barth?emy',NULL,NULL,0),(26,'BM','Bermuda',NULL,NULL,0),(27,'BN','Brunei Darussalam',NULL,NULL,0),(28,'BO','Bolivia, Plurinational State of',NULL,NULL,0),(29,'BQ','Bonaire, Sint Eustatius and Saba',NULL,NULL,0),(30,'BR','Brazil',NULL,NULL,0),(31,'BS','Bahamas',NULL,NULL,0),(32,'BT','Bhutan',NULL,NULL,0),(33,'BV','Bouvet Island',NULL,NULL,0),(34,'BW','Botswana',NULL,NULL,0),(35,'BY','Belarus',NULL,NULL,0),(36,'BZ','Belize',NULL,NULL,0),(37,'CA','Canada',NULL,NULL,0),(38,'CC','Cocos (Keeling) Islands',NULL,NULL,0),(39,'CD','Congo, the Democratic Republic of the',NULL,NULL,0),(40,'CF','Central African Republic',NULL,NULL,0),(41,'CG','Congo',NULL,NULL,0),(42,'CH','Switzerland',NULL,NULL,0),(43,'CI','C?e d'Ivoire',NULL,NULL,0),(44,'CK','Cook Islands',NULL,NULL,0),(45,'CL','Chile',NULL,NULL,0),(46,'CM','Cameroon',NULL,NULL,0),(47,'CN','China',NULL,NULL,0),(48,'CO','Colombia',NULL,NULL,0),(49,'CR','Costa Rica',NULL,NULL,0),(50,'CU','Cuba',NULL,NULL,0),(51,'CV','Cape Verde',NULL,NULL,0),(52,'CW','Cura?o',NULL,NULL,0),(53,'CX','Christmas Island',NULL,NULL,0),(54,'CY','Cyprus',NULL,NULL,0),(55,'CZ','Czech Republic',NULL,NULL,0),(56,'DE','Germany',NULL,NULL,0),(57,'DJ','Djibouti',NULL,NULL,0),(58,'DK','Denmark',NULL,NULL,0),(59,'DM','Dominica',NULL,NULL,0),(60,'DO','Dominican Republic',NULL,NULL,0),(62,'EC','Ecuador',NULL,NULL,0),(63,'EE','Estonia',NULL,NULL,0),(64,'EG','Egypt',NULL,NULL,0),(65,'EH','Western Sahara',NULL,NULL,0),(66,'ER','Eritrea',NULL,NULL,0),(67,'ES','Spain',NULL,NULL,0),(68,'ET','Ethiopia',NULL,NULL,0),(69,'FI','Finland',NULL,NULL,0),(70,'FJ','Fiji',NULL,NULL,0),(71,'FK','Falkland Islands (Malvinas)',NULL,NULL,0),(72,'FM','Micronesia, Federated States of',NULL,NULL,0),(73,'FO','Faroe Islands',NULL,NULL,0),(74,'FR','France',NULL,NULL,0),(75,'GA','Gabon',NULL,NULL,0),(76,'GB','United Kingdom',NULL,NULL,0),(77,'GD','Grenada',NULL,NULL,0),(78,'GE','Georgia',NULL,NULL,0),(79,'GF','French Guiana',NULL,NULL,0),(80,'GG','Guernsey',NULL,NULL,0),(81,'GH','Ghana',NULL,NULL,0),(82,'GI','Gibraltar',NULL,NULL,0),(83,'GL','Greenland',NULL,NULL,0),(84,'GM','Gambia',NULL,NULL,0),(85,'GN','Guinea',NULL,NULL,0),(86,'GP','Guadeloupe',NULL,NULL,0),(87,'GQ','Equatorial Guinea',NULL,NULL,0),(88,'GR','Greece',NULL,NULL,0),(89,'GS','South Georgia and the South Sandwich Islands',NULL,NULL,0),(90,'GT','Guatemala',NULL,NULL,0),(91,'GU','Guam',NULL,NULL,0),(92,'GW','Guinea-Bissau',NULL,NULL,0),(93,'GY','Guyana',NULL,NULL,0),(94,'HK','Hong Kong',NULL,NULL,0),(95,'HM','Heard Island and McDonald Islands',NULL,NULL,0),(96,'HN','Honduras',NULL,NULL,0),(97,'HR','Croatia',NULL,NULL,0),(98,'HT','Haiti',NULL,NULL,0),(99,'HU','Hungary',NULL,NULL,0),(100,'ID','Indonesia',NULL,NULL,0),(101,'IE','Ireland',NULL,NULL,0),(102,'IL','Israel',NULL,NULL,0),(103,'IM','Isle of Man',NULL,NULL,0),(104,'IN','India',NULL,NULL,0),(105,'IO','British Indian Ocean Territory',NULL,NULL,0),(106,'IQ','Iraq',NULL,NULL,0),(107,'IR','Iran, Islamic Republic of',NULL,NULL,0),(108,'IS','Iceland',NULL,NULL,0),(109,'IT','Italy',NULL,NULL,0),(110,'JE','Jersey',NULL,NULL,0),(111,'JM','Jamaica',NULL,NULL,0),(112,'JO','Jordan',NULL,NULL,0),(113,'JP','Japan',NULL,NULL,0),(114,'KE','Kenya',NULL,NULL,0),(115,'KG','Kyrgyzstan',NULL,NULL,0),(116,'KH','Cambodia',NULL,NULL,0),(117,'KI','Kiribati',NULL,NULL,0),(118,'KM','Comoros',NULL,NULL,0),(119,'KN','Saint Kitts and Nevis',NULL,NULL,0),(120,'KP','Korea, Democratic People's Republic of',NULL,NULL,0),(121,'KR','Korea, Republic of',NULL,NULL,0),(122,'KW','Kuwait',NULL,NULL,0),(123,'KY','Cayman Islands',NULL,NULL,0),(124,'KZ','Kazakhstan',NULL,NULL,0),(125,'LA','Lao People's Democratic Republic',NULL,NULL,0),(126,'LB','Lebanon',NULL,NULL,0),(127,'LC','Saint Lucia',NULL,NULL,0),(128,'LI','Liechtenstein',NULL,NULL,0),(129,'LK','Sri Lanka',NULL,NULL,0),(130,'LR','Liberia',NULL,NULL,0),(131,'LS','Lesotho',NULL,NULL,0),(132,'LT','Lithuania',NULL,NULL,0),(133,'LU','Luxembourg',NULL,NULL,0),(134,'LV','Latvia',NULL,NULL,0),(135,'LY','Libyan Arab Jamahiriya',NULL,NULL,0),(136,'MA','Morocco',NULL,NULL,0),(137,'MC','Monaco',NULL,NULL,0),(138,'MD','Moldova, Republic of',NULL,NULL,0),(139,'ME','Montenegro',NULL,NULL,0),(140,'MF','Saint Martin (French part)',NULL,NULL,0),(141,'MG','Madagascar',NULL,NULL,0),(142,'MH','Marshall Islands',NULL,NULL,0),(143,'MK','Macedonia, the former Yugoslav Republic of',NULL,NULL,0),(144,'ML','Mali',NULL,NULL,0),(145,'MM','Myanmar',NULL,NULL,0),(146,'MN','Mongolia',NULL,NULL,0),(147,'MO','Macao',NULL,NULL,0),(148,'MP','Northern Mariana Islands',NULL,NULL,0),(149,'MQ','Martinique',NULL,NULL,0),(150,'MR','Mauritania',NULL,NULL,0),(151,'MS','Montserrat',NULL,NULL,0),(152,'MT','Malta',NULL,NULL,0),(153,'MU','Mauritius',NULL,NULL,0),(154,'MV','Maldives',NULL,NULL,0),(155,'MW','Malawi',NULL,NULL,0),(156,'MX','Mexico',NULL,NULL,0),(157,'MY','Malaysia',NULL,NULL,0),(158,'MZ','Mozambique',NULL,NULL,0),(159,'NA','Namibia',NULL,NULL,0),(160,'NC','New Caledonia',NULL,NULL,0),(161,'NE','Niger',NULL,NULL,0),(162,'NF','Norfolk Island',NULL,NULL,0),(163,'NG','Nigeria',NULL,NULL,0),(164,'NI','Nicaragua',NULL,NULL,0),(165,'NL','Netherlands',NULL,NULL,0),(166,'NO','Norway',NULL,NULL,0),(167,'NP','Nepal',NULL,NULL,0),(168,'NR','Nauru',NULL,NULL,0),(169,'NU','Niue',NULL,NULL,0),(170,'NZ','New Zealand',NULL,NULL,0),(171,'OM','Oman',NULL,NULL,0),(172,'PA','Panama',NULL,NULL,0),(173,'PE','Peru',NULL,NULL,0),(174,'PF','French Polynesia',NULL,NULL,0),(175,'PG','Papua New Guinea',NULL,NULL,0),(176,'PH','Philippines',NULL,NULL,0),(177,'PK','Pakistan',NULL,NULL,0),(178,'PL','Poland',NULL,NULL,0),(179,'PM','Saint Pierre and Miquelon',NULL,NULL,0),(180,'PN','Pitcairn',NULL,NULL,0),(181,'PR','Puerto Rico',NULL,NULL,0),(182,'PS','Palestinian Territory, Occupied',NULL,NULL,0),(183,'PT','Portugal',NULL,NULL,0),(184,'PW','Palau',NULL,NULL,0),(185,'PY','Paraguay',NULL,NULL,0),(186,'QA','Qatar',NULL,NULL,0),(187,'RE','R?nion',NULL,NULL,0),(188,'RO','Romania',NULL,NULL,0),(189,'RS','Serbia',NULL,NULL,0),(190,'RU','Russian Federation',NULL,NULL,0),(191,'RW','Rwanda',NULL,NULL,0),(192,'SA','Saudi Arabia',NULL,NULL,0),(193,'SB','Solomon Islands',NULL,NULL,0),(194,'SC','Seychelles',NULL,NULL,0),(195,'SD','Sudan',NULL,NULL,0),(196,'SE','Sweden',NULL,NULL,0),(197,'SG','Singapore',NULL,NULL,0),(198,'SH','Saint Helena, Ascension and Tristan da Cunha',NULL,NULL,0),(199,'SI','Slovenia',NULL,NULL,0),(200,'SJ','Svalbard and Jan Mayen',NULL,NULL,0),(201,'SK','Slovakia',NULL,NULL,0),(202,'SL','Sierra Leone',NULL,NULL,0),(203,'SM','San Marino',NULL,NULL,0),(204,'SN','Senegal',NULL,NULL,0),(205,'SO','Somalia',NULL,NULL,0),(206,'SR','Suriname',NULL,NULL,0),(207,'SS','South Sudan',NULL,NULL,0),(208,'ST','Sao Tome and Principe',NULL,NULL,0),(209,'SV','El Salvador',NULL,NULL,0),(210,'SX','Sint Maarten (Dutch part)',NULL,NULL,0),(211,'SY','Syrian Arab Republic',NULL,NULL,0),(212,'SZ','Swaziland',NULL,NULL,0),(213,'TC','Turks and Caicos Islands',NULL,NULL,0),(214,'TD','Chad',NULL,NULL,0),(215,'TF','French Southern Territories',NULL,NULL,0),(216,'TG','Togo',NULL,NULL,0),(217,'TH','Thailand',NULL,NULL,0),(218,'TJ','Tajikistan',NULL,NULL,0),(219,'TK','Tokelau',NULL,NULL,0),(220,'TL','Timor-Leste',NULL,NULL,0),(221,'TM','Turkmenistan',NULL,NULL,0),(222,'TN','Tunisia',NULL,NULL,0),(223,'TO','Tonga',NULL,NULL,0),(224,'TR','Turkey',NULL,NULL,0),(225,'TT','Trinidad and Tobago',NULL,NULL,0),(226,'TV','Tuvalu',NULL,NULL,0),(227,'TW','Taiwan, Province of China',NULL,NULL,0),(228,'TZ','Tanzania, United Republic of',NULL,NULL,0),(229,'UA','Ukraine',NULL,NULL,0),(230,'UG','Uganda',NULL,NULL,0),(231,'UM','United States Minor Outlying Islands',NULL,NULL,1),(232,'US','United States',NULL,'2011-09-30 20:22:32',2),(233,'UY','Uruguay',NULL,NULL,0),(234,'UZ','Uzbekistan',NULL,NULL,0),(235,'VA','Holy See (Vatican City State)',NULL,NULL,0),(236,'VC','Saint Vincent and the Grenadines',NULL,NULL,0),(237,'VE','Venezuela, Bolivarian Republic of',NULL,NULL,0),(238,'VG','Virgin Islands, British',NULL,NULL,0),(239,'VI','Virgin Islands, U.S.',NULL,NULL,0),(240,'VN','Viet Nam',NULL,NULL,0),(241,'VU','Vanuatu',NULL,NULL,0),(242,'WF','Wallis and Futuna',NULL,NULL,0),(243,'WS','Samoa',NULL,NULL,0),(244,'YE','Yemen',NULL,NULL,0),(245,'YT','Mayotte',NULL,NULL,0),(246,'ZA','South Africa',NULL,NULL,0),(247,'ZM','Zambia',NULL,NULL,0),(248,'ZW','Zimbabwe',NULL,NULL,0),(250,'AF','Afghanistan','2011-09-30 20:29:32','2011-09-30 20:29:32',0);
/*!40000 ALTER TABLE `countries` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `donation_adjustments`
--
DROP TABLE IF EXISTS `donation_adjustments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `donation_adjustments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`program_id` int(11) DEFAULT NULL,
`percentage_change` int(11) DEFAULT NULL,
`effective_date` datetime DEFAULT NULL,
`reasoning` text,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `donation_adjustments`
--
LOCK TABLES `donation_adjustments` WRITE;
/*!40000 ALTER TABLE `donation_adjustments` DISABLE KEYS */;
INSERT INTO `donation_adjustments` VALUES (1,45,15,NULL,'Hope this work!','2012-04-10 17:29:40','2012-04-10 17:29:40'),(2,45,7,NULL,'Hello! Wonderful. Very good.','2012-04-10 17:39:49','2012-04-10 17:39:49'),(3,28,7,NULL,'Your gifts help brighten days for those who often feel lonely and dismal.','2012-04-11 16:28:01','2012-04-11 16:28:01'),(4,1,15,NULL,'Your gifts brighten the lives of abandoned, destitute, or orphaned children in Liberia, Kenya, India, and Haiti. ','2012-04-11 16:31:51','2012-04-11 16:31:51');
/*!40000 ALTER TABLE `donation_adjustments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `email_contents`
--
DROP TABLE IF EXISTS `email_contents`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_contents` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`subject` varchar(255) DEFAULT NULL,
`from` varchar(255) DEFAULT NULL,
`bcc` varchar(255) DEFAULT NULL,
`body` text,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `email_contents`
--
LOCK TABLES `email_contents` WRITE;
/*!40000 ALTER TABLE `email_contents` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_contents` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `emails`
--
DROP TABLE IF EXISTS `emails`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `emails` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`subject` varchar(255) DEFAULT NULL,
`from` varchar(255) DEFAULT NULL,
`bcc` varchar(255) DEFAULT NULL,
`body` text,
`template_model` varchar(255) DEFAULT NULL,
`position` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_emails_on_id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `emails`
--
LOCK TABLES `emails` WRITE;
/*!40000 ALTER TABLE `emails` DISABLE KEYS */;
/*!40000 ALTER TABLE `emails` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `event_categories`
--
DROP TABLE IF EXISTS `event_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `event_categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`cached_slug` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `event_categories`
--
LOCK TABLES `event_categories` WRITE;
/*!40000 ALTER TABLE `event_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `event_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `event_categorizations`
--
DROP TABLE IF EXISTS `event_categorizations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `event_categorizations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`event_id` int(11) DEFAULT NULL,
`event_category_id` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_event_categorizations_on_event_id` (`event_id`),
KEY `index_event_categorizations_on_event_category_id` (`event_category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `event_categorizations`
--
LOCK TABLES `event_categorizations` WRITE;
/*!40000 ALTER TABLE `event_categorizations` DISABLE KEYS */;
/*!40000 ALTER TABLE `event_categorizations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `events`
--
DROP TABLE IF EXISTS `events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `events` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`start_at` datetime DEFAULT NULL,
`end_at` datetime DEFAULT NULL,
`venue_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`venue_address` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`ticket_price` decimal(8,2) DEFAULT NULL,
`ticket_link` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`description` text COLLATE utf8_unicode_ci,
`featured` tinyint(1) DEFAULT NULL,
`image_id` int(11) DEFAULT NULL,
`position` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`cached_slug` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_events_on_id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `events`
--
LOCK TABLES `events` WRITE;
/*!40000 ALTER TABLE `events` DISABLE KEYS */;
INSERT INTO `events` VALUES (1,'Dayton Autumn Celebration | 33rd Anniversary','2012-10-06 12:30:00','2012-10-06 20:00:00','Downtown Dayton, VA','',NULL,'','<p>The Dayton Autumn Celebration, also known as “Dayton Days,” is a very popular arts and crafts festival held annually on the first Saturday in October (8:30 a.m. – 4:00 p.m.) in historic downtown Dayton. The festival attracts an estimated 20,000 attendees annually to indulge in the culture, arts and handmade crafts of over 300 vendors from numerous states. Attendees also enjoy a wide variety of delicious foods, Dayton Farmers Market and other local unique shops, The Heritage Museum, Fort Harrison (c. 1749), Silver Lake Mill and activities for children. In addition to free festival admission, the Town of Dayton offers free shuttle bus transportation from parking lots at local schools: Turner Ashby High School, Wilbur Pence Middle School, and John Wayland Elementary School continuously throughout the day. </p>\r\n<p>The festival is handicap accessible, with handicap parking and restroom facilities. No bicycles, skates or skateboards permitted. No pets allowed except for service dogs. </p>\r\n<div class=\"pdf\">\r\n<p><a href=\"/system/resources/2012/08/22/01_13_07_157_Autumn_Celebration_Vendor_Application_and_Info.pdf?iframe=true&width=1000&height=1200\" title=\"Autumn Celebration Vendor Application And Info\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n</p>\r\n<p><a href=\"/system/resources/2012/08/22/01_13_07_157_Autumn_Celebration_Vendor_Application_and_Info.pdf?iframe=true&width=1000&height=1200\" title=\"Autumn Celebration Vendor Application And Info\" target=\"_blank\">(open PDF) Vendor Application and Set-up Procedures</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" />\r\n<p>(open PDF) Vendor Listing (available mid September)</p>\r\n<div style=\"clear:both\"></div>\r\n<img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" />\r\n<p>(open PDF) Festival Map (available mid September)</p>\r\n</div>\r\n<div style=\"clear:both\"></div>',1,NULL,0,'2012-08-20 01:01:53','2012-08-22 17:00:53','dayton-autumn-celebration-33rd-anniversary'),(2,'Dayton’s Course with a Cause','2012-08-04 14:00:00','2012-08-04 17:00:00','','',NULL,'','<h1>3-Mile Endurance & Adventure Course </h1>\r\n<p>Saturday, August 4, 2012 @ 10:00 AM</p>\r\n<p><strong>Challenges Include:</strong>\r\n</p><ul><li>Water Run/Block Haul</li>\r\n<li>Water Slide</li>\r\n<li>Push Up Challenge</li>\r\n<li>Mud Crawl </li>\r\n<li>Log Walk</li>\r\n<li>Wall Climb</li>\r\n</ul><p>Individual or 6-Person Team Registrations Men and Women ages 15 and older</p>\r\n<p>Proceeds benefit the Wounded Warrior Program and Local Fire and Rescue. </p>\r\n<p>Donations are welcomed for this worthy cause!</p>\r\n<h3>For More Information, call 540-879-2241 or 540-879-2161</h3>',1,NULL,1,'2012-08-20 01:05:05','2012-08-20 01:05:05','dayton’s-course-with-a-cause');
/*!40000 ALTER TABLE `events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `images`
--
DROP TABLE IF EXISTS `images`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `images` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`image_mime_type` varchar(255) DEFAULT NULL,
`image_name` varchar(255) DEFAULT NULL,
`image_size` int(11) DEFAULT NULL,
`image_width` int(11) DEFAULT NULL,
`image_height` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`image_uid` varchar(255) DEFAULT NULL,
`image_ext` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `images`
--
LOCK TABLES `images` WRITE;
/*!40000 ALTER TABLE `images` DISABLE KEYS */;
INSERT INTO `images` VALUES (1,'image/jpeg','Puma_Yellow.jpg',44196,1023,818,'2012-08-21 19:58:59','2012-08-21 19:58:59','2012/08/21/23_58_59_810_Puma_Yellow.jpg','jpg'),(2,'image/png','Screen shot 2012-08-20 at 1.00.36 PM.png',15686,330,52,'2012-08-21 20:05:48','2012-08-21 20:05:48','2012/08/22/00_05_48_17_Screen_shot_2012_08_20_at_1.00.36_PM.png','png'),(3,'image/png','adobe_logo.png',2363,30,30,'2012-08-21 20:44:45','2012-08-21 20:44:45','2012/08/22/00_44_45_364_adobe_logo.png','png'),(4,'image/jpeg','history_infantry_band.jpg',16662,189,146,'2012-08-22 15:56:05','2012-08-22 15:56:05','2012/08/22/19_56_05_600_history_infantry_band.jpg','jpg'),(5,'image/jpeg','walking_tour.jpg',8448,152,117,'2012-08-22 16:01:07','2012-08-22 16:01:07','2012/08/22/20_01_07_455_walking_tour.jpg','jpg'),(6,'image/jpeg','college_street.jpg',15725,206,154,'2012-08-22 16:04:34','2012-08-22 16:04:34','2012/08/22/20_04_34_932_college_street.jpg','jpg'),(8,'image/jpeg','dinky_conley.jpg',26721,309,202,'2012-08-22 16:16:51','2012-08-22 16:16:51','2012/08/22/20_16_51_717_dinky_conley.jpg','jpg'),(9,'image/jpeg','aaron_will.jpg',40304,324,217,'2012-08-22 16:17:31','2012-08-22 16:17:31','2012/08/22/20_17_31_878_aaron_will.jpg','jpg'),(10,'image/jpeg','david_moran.jpg',30569,306,205,'2012-08-22 16:17:52','2012-08-22 16:17:52','2012/08/22/20_17_52_965_david_moran.jpg','jpg'),(11,'image/jpeg','reggie_dollar.jpg',25217,305,204,'2012-08-22 16:18:20','2012-08-22 16:18:20','2012/08/22/20_18_20_387_reggie_dollar.jpg','jpg'),(12,'image/jpeg','mandy_robles.jpg',35350,310,206,'2012-08-22 16:18:37','2012-08-22 16:18:37','2012/08/22/20_18_37_641_mandy_robles.jpg','jpg'),(13,'image/jpeg','lorie_curry.jpg',28603,310,207,'2012-08-22 16:18:53','2012-08-22 16:18:53','2012/08/22/20_18_53_676_lorie_curry.jpg','jpg'),(14,'image/jpeg','Phil02.jpg',26342,400,268,'2012-08-23 21:33:47','2012-08-23 21:33:47','2012/08/24/01_33_47_782_Phil02.jpg','jpg'),(15,'image/jpeg','Sunset-Park-web-site.jpg',18712,400,160,'2012-08-27 14:07:50','2012-08-27 14:07:50','2012/08/27/18_07_50_250_Sunset_Park_web_site.jpg','jpg');
/*!40000 ALTER TABLE `images` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `invoices`
--
DROP TABLE IF EXISTS `invoices`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `invoices` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) DEFAULT NULL,
`subscription_id` int(11) DEFAULT NULL,
`transaction_id` int(11) DEFAULT NULL,
`amount` decimal(10,2) DEFAULT NULL,
`number` int(11) DEFAULT NULL,
`settled` tinyint(1) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`order_id` int(11) DEFAULT NULL,
`payment_profile_id` int(11) DEFAULT NULL,
`payment_method` varchar(255) DEFAULT NULL,
`payment_number` varchar(255) DEFAULT NULL,
`exported` tinyint(1) DEFAULT '0',
`notes` text,
`cancelled` tinyint(1) DEFAULT '0',
`cancelled_on` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `invoices`
--
LOCK TABLES `invoices` WRITE;
/*!40000 ALTER TABLE `invoices` DISABLE KEYS */;
/*!40000 ALTER TABLE `invoices` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `line_items`
--
DROP TABLE IF EXISTS `line_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `line_items` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) DEFAULT NULL,
`program_id` int(11) DEFAULT NULL,
`quantity` int(11) DEFAULT NULL,
`price` decimal(10,2) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`recurring` tinyint(1) DEFAULT '0',
`invoice_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_line_items_on_id` (`id`),
KEY `index_line_items_on_order_id` (`order_id`),
KEY `index_line_items_on_donation_id` (`program_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1079 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `line_items`
--
LOCK TABLES `line_items` WRITE;
/*!40000 ALTER TABLE `line_items` DISABLE KEYS */;
INSERT INTO `line_items` VALUES (144,4747,28,1,'30.00','2011-12-09 15:53:20','2011-12-09 15:53:44',0,87),(143,4747,1,1,'100.00','2011-12-09 15:52:42','2011-12-09 15:53:44',0,87),(142,4719,33,1,'400.00','2011-12-09 13:52:29','2011-12-09 13:53:32',0,86),(140,4250,38,1,'50.40','2011-12-07 03:17:19','2011-12-07 03:18:46',0,85),(139,4250,27,1,'50.00','2011-12-07 03:15:40','2011-12-07 03:18:46',0,85),(138,4250,18,1,'50.00','2011-12-07 03:14:51','2011-12-07 03:18:46',0,85),(137,4247,12,1,'50.00','2011-12-07 02:50:37','2011-12-07 02:59:04',1,84),(136,4239,33,1,'500.00','2011-12-07 01:39:57','2011-12-07 01:47:14',0,81),(133,3993,7,1,'50.00','2011-12-05 19:46:06','2011-12-05 19:46:06',0,NULL),(132,3984,33,1,'166.00','2011-12-05 19:07:44','2011-12-05 19:09:50',0,79),(131,3972,28,1,'0.00','2011-12-05 18:30:24','2011-12-05 18:30:24',0,NULL),(130,3972,28,1,'55.00','2011-12-05 18:28:11','2011-12-05 18:28:11',0,NULL),(170,3555,28,1,'55.00','2011-12-19 02:39:33','2011-12-19 02:48:05',1,99),(169,3555,2,1,'78.00','2011-12-19 02:39:19','2011-12-19 02:48:07',1,100),(179,6764,20,1,'500.00','2011-12-19 21:05:17','2011-12-19 21:07:25',0,106),(126,3500,33,1,'250.00','2011-12-03 20:05:46','2011-12-03 20:05:46',0,NULL),(125,3485,33,1,'20.00','2011-12-03 18:12:08','2011-12-03 18:12:59',0,78),(122,3285,1,1,'50.00','2011-12-02 13:19:04','2011-12-02 13:22:35',0,75),(121,3285,12,1,'50.00','2011-12-02 13:18:32','2011-12-02 13:22:35',0,75),(119,3261,33,1,'50.00','2011-12-02 10:19:30','2011-12-02 10:19:30',1,NULL),(118,3117,33,1,'250.00','2011-12-01 14:05:54','2011-12-01 14:09:15',0,74),(117,3117,22,1,'250.00','2011-12-01 14:04:20','2011-12-01 14:09:15',0,74),(116,3117,6,1,'100.00','2011-12-01 14:03:33','2011-12-01 14:09:15',0,74),(115,3117,11,1,'100.00','2011-12-01 14:01:18','2011-12-01 14:09:15',0,74),(114,2787,33,1,'10.00','2011-11-29 18:13:15','2011-11-29 18:13:15',1,NULL),(113,2787,33,1,'10.00','2011-11-29 18:12:55','2011-11-29 18:12:55',0,NULL),(112,2787,33,1,'10.00','2011-11-29 17:11:49','2011-11-29 17:11:49',0,NULL),(111,2605,23,1,'60.00','2011-11-29 04:49:30','2011-11-29 04:53:44',0,73),(110,2605,38,1,'2.50','2011-11-29 04:47:36','2011-11-29 04:53:44',0,73),(109,2494,33,1,'145.00','2011-11-28 18:04:54','2011-11-28 18:06:38',0,72),(108,2019,33,1,'400.00','2011-11-26 21:26:42','2011-11-26 21:46:41',0,71),(106,2014,1,1,'39.00','2011-11-26 21:06:54','2011-11-26 21:06:54',1,NULL),(105,1942,22,1,'300.00','2011-11-26 12:52:23','2011-11-26 13:04:59',0,69),(104,1812,2,1,'100.00','2011-11-25 22:53:56','2011-11-25 22:53:56',0,NULL),(103,1812,18,1,'50.00','2011-11-25 22:52:47','2011-11-25 22:52:47',0,NULL),(102,1628,13,1,'120.00','2011-11-25 05:09:32','2011-11-25 05:15:08',0,68),(100,1507,1,1,'39.00','2011-11-24 18:33:56','2011-11-24 18:33:56',1,NULL),(99,1463,2,1,'39.00','2011-11-24 15:06:44','2011-11-24 15:07:55',0,66),(98,1463,2,1,'39.00','2011-11-24 15:06:43','2011-11-24 15:07:55',0,66),(96,1448,1,1,'39.00','2011-11-24 13:36:55','2011-11-24 13:36:55',1,NULL),(95,1331,40,1,'500.00','2011-11-23 23:54:35','2011-11-23 23:54:35',0,NULL),(94,1331,11,1,'500.00','2011-11-23 23:54:08','2011-11-23 23:54:08',0,NULL),(92,1303,1,1,'78.00','2011-11-23 20:57:44','2011-11-23 20:57:44',1,NULL),(90,1279,1,1,'60.00','2011-11-23 17:56:49','2011-11-23 17:56:49',1,NULL),(87,1161,33,1,'50.00','2011-11-22 21:14:54','2011-11-22 21:14:54',0,NULL),(86,1027,33,1,'25.00','2011-11-21 21:45:33','2011-11-21 21:45:33',0,NULL),(85,1020,5,1,'60.00','2011-11-21 20:25:43','2011-11-21 20:39:28',1,65),(84,1013,33,1,'25.00','2011-11-21 18:30:11','2011-11-21 18:33:41',1,63),(83,945,1,1,'1000.00','2011-11-21 18:10:15','2011-11-21 18:15:04',0,62),(82,470,33,1,'25.00','2011-11-20 02:25:14','2011-11-20 02:25:14',0,NULL),(81,334,38,1,'0.00','2011-11-18 20:48:33','2011-11-18 20:48:33',0,NULL),(80,326,33,1,'600.00','2011-11-18 18:40:07','2011-11-18 18:41:25',0,61),(145,4868,33,1,'100.00','2011-12-09 22:29:12','2011-12-09 22:29:12',0,NULL),(146,4999,33,1,'500.00','2011-12-10 03:57:57','2011-12-10 03:57:57',0,NULL),(147,5208,24,1,'25.00','2011-12-10 15:45:21','2011-12-10 15:45:21',0,NULL),(148,5263,2,1,'70.00','2011-12-10 19:03:09','2011-12-10 19:03:09',0,NULL),(149,5492,1,1,'39.00','2011-12-11 18:51:01','2011-12-11 19:12:42',1,92),(150,5493,1,1,'50.00','2011-12-11 18:59:49','2011-12-11 18:59:49',0,NULL),(151,5588,12,1,'20.00','2011-12-12 04:09:30','2011-12-12 04:11:45',0,93),(152,5588,5,1,'30.00','2011-12-12 04:10:44','2011-12-12 04:11:45',0,93),(155,5873,27,1,'50.00','2011-12-12 20:12:00','2011-12-12 20:17:11',0,95),(156,5991,1,1,'234.00','2011-12-13 01:02:39','2011-12-13 01:08:29',0,96),(157,5991,28,1,'330.00','2011-12-13 01:03:33','2011-12-13 01:08:29',0,96),(159,4015,33,1,'450.00',NULL,NULL,0,80),(160,6262,2,1,'70.00','2011-12-13 20:31:52','2011-12-13 20:31:52',0,NULL),(356,6432,33,1,'13.00','2012-01-17 21:08:44','2012-01-17 21:09:07',1,191),(162,6444,33,1,'1000.00','2011-12-15 16:57:41','2011-12-15 16:57:41',0,NULL),(163,6532,23,1,'25.00','2011-12-16 18:54:10','2011-12-16 18:54:10',0,NULL),(165,6636,33,1,'100.00','2011-12-18 04:15:53','2011-12-18 04:15:53',0,NULL),(166,6699,33,1,'1000.00','2011-12-19 01:31:28','2011-12-19 01:32:28',0,97),(167,6704,22,1,'337.00','2011-12-19 02:32:03','2011-12-19 02:36:08',0,98),(181,6788,33,1,'300.00','2011-12-20 02:34:02','2011-12-20 02:34:42',0,107),(171,3555,40,1,'50.00','2011-12-19 02:39:48','2011-12-19 02:48:07',1,101),(173,3555,32,1,'55.00','2011-12-19 02:40:33','2011-12-19 02:48:08',1,102),(178,3555,1,1,'195.00','2011-12-19 02:47:18','2011-12-19 02:48:09',1,103),(180,6764,13,1,'500.00','2011-12-19 21:05:36','2011-12-19 21:07:25',0,106),(176,3555,39,1,'345.00','2011-12-19 02:44:35','2011-12-19 02:48:09',1,104),(182,6791,27,1,'250.00','2011-12-20 05:10:28','2011-12-20 05:13:21',0,108),(183,6791,32,1,'250.00','2011-12-20 05:11:31','2011-12-20 05:13:21',0,108),(184,6791,5,1,'100.00','2011-12-20 05:12:04','2011-12-20 05:13:21',0,108),(185,6791,6,1,'100.00','2011-12-20 05:12:51','2011-12-20 05:13:21',0,108),(186,6795,33,1,'7000.00','2011-12-20 08:47:30','2011-12-20 08:50:55',0,109),(189,6798,33,1,'1000.00','2011-12-20 11:11:15','2011-12-20 11:12:31',0,110),(190,6809,28,1,'50.00','2011-12-20 13:27:04','2011-12-20 13:27:04',0,NULL),(194,6869,12,1,'50.00','2011-12-21 01:10:08','2011-12-21 01:16:58',0,112),(193,6869,20,1,'25.00','2011-12-21 01:09:27','2011-12-21 01:16:59',0,112),(195,6873,40,1,'500.00','2011-12-21 03:10:51','2011-12-21 03:16:18',0,113),(196,6873,13,1,'1000.00','2011-12-21 03:11:54','2011-12-21 03:16:18',0,113),(197,6873,25,1,'1000.00','2011-12-21 03:12:22','2011-12-21 03:16:18',0,113),(198,6873,41,1,'500.00','2011-12-21 03:12:57','2011-12-21 03:16:18',0,113),(199,6875,22,1,'50.00','2011-12-21 04:38:58','2011-12-21 04:38:58',0,NULL),(200,6876,13,1,'100.00','2011-12-21 05:49:18','2011-12-21 05:58:45',0,116),(201,6876,23,1,'100.00','2011-12-21 05:53:33','2011-12-21 05:58:45',0,116),(203,6894,2,1,'350.00','2011-12-21 11:14:52','2011-12-21 11:16:51',0,117),(204,6894,23,1,'100.00','2011-12-21 11:15:33','2011-12-21 11:16:51',0,117),(205,6894,15,1,'50.00','2011-12-21 11:16:30','2011-12-21 11:16:51',0,117),(206,6938,33,1,'1000.00','2011-12-21 19:57:57','2011-12-26 22:43:12',0,131),(208,6978,33,1,'50.00','2011-12-22 15:08:00','2011-12-22 15:08:00',1,NULL),(209,6981,22,1,'50.00','2011-12-22 16:30:12','2011-12-22 16:30:12',0,NULL),(210,6982,7,1,'5500.00','2011-12-22 18:53:59','2011-12-22 18:53:59',0,NULL),(211,6996,33,1,'100.00','2011-12-23 00:34:07','2011-12-23 00:44:52',0,121),(212,7003,6,1,'50.00','2011-12-23 00:54:35','2011-12-23 01:03:26',0,122),(214,7003,33,1,'50.00','2011-12-23 00:58:36','2011-12-23 01:03:26',0,122),(215,7052,33,1,'25.00','2011-12-23 13:46:47','2011-12-23 13:46:47',0,NULL),(217,1306,33,1,'25.00','2011-12-23 14:04:43','2011-12-23 14:04:43',0,NULL),(219,7061,9,1,'69.00','2011-12-23 15:24:41','2011-12-23 15:24:41',0,NULL),(221,7064,33,1,'25.00','2011-12-23 16:04:40','2011-12-23 16:04:40',0,NULL),(227,7085,33,1,'500.00','2011-12-23 22:58:48','2011-12-23 23:03:28',0,123),(228,7086,28,1,'110.00','2011-12-24 00:42:02','2011-12-24 00:49:01',0,124),(229,7112,33,1,'20.00','2011-12-24 16:25:18','2011-12-24 16:29:45',0,125),(230,7115,2,1,'1000.00','2011-12-24 17:08:46','2011-12-24 17:12:12',0,126),(231,7144,2,1,'39.00','2011-12-25 17:45:25','2011-12-25 17:48:13',0,127),(232,7154,26,1,'220.00','2011-12-26 01:48:55','2011-12-26 02:01:42',0,128),(233,7163,33,1,'25.00','2011-12-26 06:37:35','2011-12-26 06:37:35',0,NULL),(234,7175,33,1,'2000.00','2011-12-26 13:34:12','2011-12-26 14:00:16',0,129),(235,7178,33,1,'15000.00','2011-12-26 15:18:28','2011-12-26 15:18:28',0,NULL),(236,7178,29,1,'1000.00','2011-12-26 15:18:57','2011-12-26 15:18:57',0,NULL),(237,7205,22,1,'500.00','2011-12-26 23:01:48','2011-12-26 23:02:56',0,132),(238,7205,33,1,'500.00','2011-12-26 23:02:35','2011-12-26 23:02:56',0,132),(239,7214,13,1,'100.00','2011-12-27 06:39:34','2011-12-27 06:40:50',0,133),(240,7261,33,1,'1000.00','2011-12-28 02:35:19','2011-12-28 02:37:19',0,134),(242,7297,33,1,'50.00','2011-12-28 19:39:01','2011-12-28 19:40:00',0,135),(243,7319,33,1,'500.00','2011-12-29 03:55:23','2011-12-29 03:55:23',0,NULL),(254,7338,14,1,'500.00','2011-12-29 14:48:06','2011-12-29 14:52:32',0,136),(255,7338,1,1,'500.00','2011-12-29 14:49:01','2011-12-29 14:52:32',0,136),(256,7350,33,1,'15000.00','2011-12-29 17:24:39','2011-12-29 17:24:39',0,NULL),(257,7365,39,1,'69.00','2011-12-29 21:47:50','2011-12-29 21:47:50',1,NULL),(258,7369,33,1,'40.00','2011-12-29 23:21:02','2011-12-29 23:26:58',0,137),(259,7378,2,1,'250.00','2011-12-30 02:13:37','2011-12-30 02:22:59',0,138),(260,7378,14,1,'250.00','2011-12-30 02:21:13','2011-12-30 02:22:59',0,138),(261,7378,12,1,'250.00','2011-12-30 02:21:40','2011-12-30 02:22:59',0,138),(262,7378,28,1,'250.00','2011-12-30 02:22:09','2011-12-30 02:22:59',0,138),(263,7383,33,1,'500.00','2011-12-30 02:33:58','2011-12-30 02:36:52',0,139),(264,7386,3,1,'250.00','2011-12-30 03:47:16','2011-12-30 03:49:24',0,140),(265,7391,33,1,'500.00','2011-12-30 04:55:53','2011-12-30 04:58:28',0,141),(266,7392,33,1,'1000.00','2011-12-30 04:58:52','2011-12-30 04:59:39',0,142),(267,7415,33,1,'250.00','2011-12-30 14:38:27','2011-12-30 14:40:11',0,143),(268,7416,33,1,'300.00','2011-12-30 15:07:10','2011-12-30 15:08:48',0,144),(269,7417,33,1,'150.00','2011-12-30 15:29:57','2011-12-30 15:30:55',0,145),(270,7420,27,1,'50.00','2011-12-30 17:32:07','2011-12-30 17:32:07',0,NULL),(278,7429,33,1,'5000.00','2011-12-30 21:48:44','2011-12-30 21:50:36',0,146),(279,7431,11,1,'1000.00','2011-12-30 21:59:59','2011-12-30 21:59:59',0,NULL),(355,7433,33,1,'12.00','2012-01-17 21:05:37','2012-01-17 21:05:59',1,190),(281,7460,33,1,'1000.00','2011-12-31 05:15:04','2011-12-31 05:18:45',0,148),(282,7482,33,1,'350.00','2011-12-31 17:44:09','2011-12-31 17:49:45',0,149),(283,7483,33,1,'350.00','2011-12-31 17:52:33','2011-12-31 17:53:35',0,150),(284,7389,29,1,'700.00','2011-12-31 18:18:15','2011-12-31 18:18:15',0,NULL),(286,7490,19,1,'500.00','2011-12-31 19:20:43','2011-12-31 19:25:18',0,153),(287,7495,33,1,'100.00','2011-12-31 20:27:33','2011-12-31 20:30:48',0,154),(288,7500,33,1,'300.00','2011-12-31 22:03:20','2011-12-31 22:06:29',0,155),(289,7502,28,1,'110.00','2011-12-31 22:38:42','2011-12-31 22:40:47',0,156),(290,7502,1,1,'39.00','2011-12-31 22:39:06','2011-12-31 22:40:47',0,156),(291,7501,33,1,'778.00','2011-12-31 23:46:39','2011-12-31 23:57:14',0,157),(292,7504,33,1,'500.00','2012-01-01 00:43:24','2012-01-01 00:50:00',0,158),(293,7509,32,1,'400.00','2012-01-01 02:27:53','2012-01-01 02:34:32',0,159),(294,7512,18,1,'200.00','2012-01-01 04:21:24','2012-01-01 04:25:11',0,160),(295,7512,5,1,'500.00','2012-01-01 04:21:38','2012-01-01 04:25:11',0,160),(296,7512,28,1,'400.00','2012-01-01 04:23:40','2012-01-01 04:25:11',0,160),(297,7512,42,1,'400.00','2012-01-01 04:24:16','2012-01-01 04:25:11',0,160),(298,7513,33,1,'500.00','2012-01-01 04:36:22','2012-01-01 04:40:35',0,161),(299,7514,6,1,'1000.00','2012-01-01 04:51:25','2012-01-01 04:51:25',0,NULL),(300,7604,32,1,'55.00','2012-01-02 14:52:23','2012-01-02 14:59:58',1,164),(301,7604,1,1,'78.00','2012-01-02 14:53:05','2012-01-02 15:00:00',1,165),(302,7634,42,1,'100.00','2012-01-02 22:46:32','2012-01-02 22:46:32',0,NULL),(307,7720,1,1,'39.00','2012-01-04 18:29:55','2012-01-04 18:34:14',1,166),(354,7676,33,1,'10.00','2012-01-17 21:03:46','2012-01-17 21:04:14',1,189),(308,7721,40,1,'135.00','2012-01-04 18:40:08','2012-01-04 18:40:08',0,NULL),(309,7779,33,1,'100.00','2012-01-05 17:35:25','2012-01-05 17:35:25',1,NULL),(312,7798,33,1,'100.00','2012-01-06 00:00:35','2012-01-06 00:00:35',0,NULL),(313,7801,36,1,'100.00','2012-01-06 01:55:18','2012-01-06 01:57:45',0,167),(314,7812,39,1,'69.00','2012-01-06 08:24:02','2012-01-06 08:37:38',1,171),(315,7840,5,1,'440.00','2012-01-06 21:15:54','2012-01-06 21:19:33',0,172),(316,7851,33,1,'21.00','2012-01-07 03:56:46','2012-01-07 03:58:48',0,173),(317,7890,33,1,'50.00','2012-01-07 22:31:42','2012-01-07 22:36:06',0,174),(318,7923,11,1,'100.00','2012-01-08 16:01:50','2012-01-08 16:01:50',0,NULL),(319,7945,33,1,'100.00','2012-01-09 00:45:09','2012-01-09 00:46:17',0,175),(323,7973,6,1,'50.00','2012-01-09 16:06:41','2012-01-09 16:08:39',1,176),(322,7973,33,1,'150.00','2012-01-09 16:06:27','2012-01-09 16:08:41',1,177),(324,7975,33,1,'100.00','2012-01-09 16:36:45','2012-01-09 16:36:45',0,NULL),(325,8021,33,1,'500.00','2012-01-10 15:59:11','2012-01-10 16:02:41',0,178),(326,8073,7,1,'100.00','2012-01-11 14:54:17','2012-01-11 14:54:17',1,NULL),(328,8089,28,1,'55.00','2012-01-11 20:12:38','2012-01-11 20:19:03',0,179),(330,8095,33,1,'50.00','2012-01-11 21:54:55','2012-01-11 21:54:55',1,NULL),(333,8146,33,1,'3.00','2012-01-12 18:20:18','2012-01-12 18:20:18',1,NULL),(332,8108,9,1,'75.00','2012-01-12 01:52:45','2012-01-12 01:54:30',0,182),(336,8188,33,1,'500.00','2012-01-13 00:50:23','2012-01-13 00:50:23',0,NULL),(337,8381,1,1,'39.00','2012-01-14 20:27:42','2012-01-14 20:27:42',1,NULL),(338,8492,34,1,'100.00','2012-01-15 18:47:30','2012-01-15 18:47:30',0,NULL),(339,8500,40,1,'45.00','2012-01-16 01:52:41','2012-01-16 01:52:41',0,NULL),(342,8503,1,1,'50.00','2012-01-16 02:59:42','2012-01-16 03:05:30',0,183),(343,8519,5,1,'200.00','2012-01-16 11:42:04','2012-01-16 11:42:42',0,184),(344,8543,7,1,'100.00','2012-01-16 21:05:36','2012-01-16 21:05:36',0,NULL),(345,8536,5,1,'20.00','2012-01-16 21:45:25','2012-01-16 21:46:54',1,185),(346,8544,5,1,'25.00','2012-01-16 21:54:28','2012-01-16 22:03:07',0,186),(347,8545,33,1,'100.00','2012-01-16 21:59:41','2012-01-16 21:59:41',0,NULL),(352,8578,12,1,'122.00','2012-01-17 11:27:05','2012-01-17 11:33:29',1,187),(353,8578,1,1,'78.00','2012-01-17 11:29:22','2012-01-17 11:33:30',1,188),(357,8590,11,1,'50.00','2012-01-17 22:58:51','2012-01-17 23:03:53',0,192),(358,8592,33,1,'200.00','2012-01-18 00:38:01','2012-01-18 00:38:01',0,NULL),(359,8598,28,1,'130.00','2012-01-18 03:08:33','2012-01-18 03:08:33',0,NULL),(360,8606,33,1,'1000.00','2012-01-18 13:13:10','2012-01-18 13:13:10',0,NULL),(361,8609,39,1,'345.00','2012-01-18 17:16:17','2012-01-18 17:16:17',0,NULL),(362,8618,5,1,'100.00','2012-01-18 23:43:11','2012-01-18 23:52:11',0,198),(363,8659,5,1,'1200.00','2012-01-19 16:45:03','2012-01-19 16:50:00',0,199),(364,8685,1,1,'30.00','2012-01-20 04:54:33','2012-01-20 05:00:17',0,200),(693,13797,12,1,'110.00','2012-04-09 18:50:26','2012-04-09 18:52:00',1,361),(366,8720,33,1,'100.00','2012-01-20 18:32:46','2012-01-20 18:39:46',0,202),(367,8753,36,1,'25.00','2012-01-21 21:10:31','2012-01-21 21:33:20',0,203),(378,8850,14,1,'45.00','2012-01-23 22:18:38','2012-01-23 22:27:06',1,205),(369,8753,33,1,'25.00','2012-01-21 21:19:41','2012-01-21 21:33:20',0,203),(371,8842,1,1,'200.00','2012-01-23 19:32:51','2012-01-23 19:38:58',0,204),(380,8850,2,1,'39.00','2012-01-23 22:19:35','2012-01-23 22:27:08',1,206),(382,8850,1,1,'78.00','2012-01-23 22:23:47','2012-01-23 22:27:08',1,207),(383,8850,7,1,'50.00','2012-01-23 22:24:36','2012-01-23 22:27:09',1,208),(387,8914,23,1,'500.00','2012-01-25 01:24:35','2012-01-25 01:29:17',0,210),(386,8897,28,1,'110.00','2012-01-24 17:27:38','2012-01-24 17:29:27',1,209),(395,8966,1,1,'39.00','2012-01-26 12:58:11','2012-01-27 18:25:17',1,214),(392,8944,40,1,'50.00','2012-01-25 21:13:07','2012-01-25 21:15:24',1,211),(396,8999,33,1,'500.00','2012-01-27 04:01:46','2012-01-27 04:09:37',0,212),(397,9020,26,1,'50.00','2012-01-27 16:56:21','2012-01-27 16:58:21',1,213),(955,18359,22,1,'200.00','2012-06-19 18:56:35','2012-06-19 18:59:01',0,512),(401,9062,15,1,'250.00','2012-01-28 20:28:23','2012-01-28 20:28:23',0,NULL),(402,9065,15,1,'66.00','2012-01-28 21:26:21','2012-01-28 21:26:21',0,NULL),(404,9111,33,1,'60.00','2012-01-30 00:59:00','2012-01-30 01:00:45',0,215),(405,9101,33,1,'600.00','2012-01-30 01:33:47','2012-01-30 01:33:47',0,NULL),(407,9123,33,1,'50.00','2012-01-30 13:53:47','2012-01-30 13:53:47',1,NULL),(409,9146,33,1,'100.00','2012-01-30 18:16:08','2012-02-29 01:16:26',0,275),(706,13854,14,1,'45.00','2012-04-10 20:37:45','2012-04-10 20:37:45',0,NULL),(707,13955,33,1,'25.00','2012-04-12 02:50:30','2012-04-12 02:51:38',0,375),(412,9153,33,1,'50.00','2012-01-30 21:02:33','2012-01-30 21:02:33',1,NULL),(413,9153,1,1,'25.00','2012-01-30 21:13:41','2012-01-30 21:13:41',0,NULL),(414,9184,33,1,'150.00','2012-01-31 14:32:05','2012-01-31 14:42:03',0,216),(415,9184,33,1,'150.00','2012-01-31 14:41:06','2012-01-31 14:42:03',0,216),(418,9192,22,1,'100.00','2012-01-31 17:19:50','2012-01-31 17:21:35',1,217),(419,9193,1,1,'39.00','2012-01-31 20:51:46','2012-01-31 20:51:46',1,NULL),(422,9270,9,1,'0.00','2012-02-02 16:23:38','2012-02-02 16:23:38',0,NULL),(421,9230,36,1,'160.00','2012-02-01 17:35:19','2012-02-01 17:39:24',0,218),(423,9301,6,1,'50.00','2012-02-03 13:22:26','2012-02-03 13:22:26',0,NULL),(426,9326,15,1,'66.00','2012-02-04 02:09:31','2012-02-04 02:12:06',0,219),(427,9400,28,1,'10.00','2012-02-06 04:44:50','2012-02-06 04:46:17',0,220),(428,9401,7,1,'50.00','2012-02-06 04:54:10','2012-02-06 04:54:10',0,NULL),(429,9404,7,1,'500.00','2012-02-06 05:39:50','2012-02-06 05:39:50',0,NULL),(430,9404,42,1,'1000.00','2012-02-06 05:50:27','2012-02-06 05:50:27',0,NULL),(431,9426,33,1,'10.00','2012-02-06 15:48:18','2012-02-06 15:48:18',0,NULL),(432,9437,5,1,'360.00','2012-02-06 20:16:54','2012-02-06 20:20:45',0,221),(433,9443,29,1,'100.00','2012-02-06 21:05:49','2012-02-06 21:07:27',0,222),(446,9453,34,1,'10.00','2012-02-07 01:08:06','2012-02-07 01:22:12',0,223),(447,9453,8,1,'10.00','2012-02-07 01:08:22','2012-02-07 01:22:12',0,223),(448,9453,35,1,'10.00','2012-02-07 01:08:40','2012-02-07 01:22:12',0,223),(453,9453,18,1,'10.00','2012-02-07 01:11:20','2012-02-07 01:22:12',0,223),(441,9453,5,1,'10.00','2012-02-07 01:03:39','2012-02-07 01:22:12',0,223),(454,9453,39,1,'10.00','2012-02-07 01:11:38','2012-02-07 01:22:12',0,223),(450,9453,28,1,'10.00','2012-02-07 01:10:18','2012-02-07 01:22:12',0,223),(451,9453,2,1,'10.00','2012-02-07 01:10:43','2012-02-07 01:22:12',0,223),(452,9453,14,1,'10.00','2012-02-07 01:10:56','2012-02-07 01:22:12',0,223),(455,9453,29,1,'10.00','2012-02-07 01:12:21','2012-02-07 01:22:12',0,223),(456,9453,30,1,'9.00','2012-02-07 01:12:39','2012-02-07 01:22:12',0,223),(457,9458,22,1,'1000.00','2012-02-07 02:37:23','2012-02-07 02:46:25',0,224),(458,9465,1,1,'39.00','2012-02-07 05:52:26','2012-02-07 05:57:38',1,225),(459,9549,19,1,'25.00','2012-02-08 20:31:53','2012-02-08 20:38:03',0,226),(460,9549,5,1,'25.00','2012-02-08 20:33:22','2012-02-08 20:38:03',0,226),(461,9555,1,1,'39.00','2012-02-09 04:44:25','2012-02-09 04:55:03',1,227),(463,9671,33,1,'75.00','2012-02-11 04:15:11','2012-02-11 04:18:42',0,228),(466,9679,1,1,'100.00','2012-02-11 13:45:20','2012-02-11 13:45:57',0,231),(465,9675,1,1,'1000.00','2012-02-11 06:41:08','2012-02-11 06:47:08',0,229),(468,9691,33,1,'250.00','2012-02-11 20:16:26','2012-02-11 20:16:26',0,NULL),(470,9709,33,1,'250.00','2012-02-12 15:43:36','2012-02-12 15:45:55',0,235),(471,9753,5,1,'30.00','2012-02-13 15:28:33','2012-02-13 15:28:33',0,NULL),(472,9753,20,1,'25.00','2012-02-13 15:30:08','2012-02-13 15:30:08',0,NULL),(473,9780,2,1,'70.00','2012-02-14 11:53:48','2012-02-14 11:56:55',0,236),(475,9780,33,1,'25.00','2012-02-14 11:55:25','2012-02-14 11:56:55',0,236),(476,9789,28,1,'550.00','2012-02-14 18:29:37','2012-02-14 18:29:37',0,NULL),(486,9797,33,1,'500.00','2012-02-14 22:33:55','2012-02-14 22:35:19',0,246),(482,9797,6,1,'500.00','2012-02-14 22:31:19','2012-02-14 22:35:19',0,246),(483,9797,12,1,'200.00','2012-02-14 22:31:48','2012-02-14 22:35:19',0,246),(484,9797,27,1,'500.00','2012-02-14 22:32:13','2012-02-14 22:35:19',0,246),(485,9797,28,1,'550.00','2012-02-14 22:33:17','2012-02-14 22:35:19',0,246),(493,9879,5,1,'60.00','2012-02-16 06:02:39','2012-02-16 06:02:39',1,NULL),(492,9879,33,1,'50.00','2012-02-16 06:01:55','2012-02-16 06:01:55',1,NULL),(494,9879,35,1,'50.00','2012-02-16 06:03:38','2012-02-16 06:03:38',1,NULL),(495,9879,3,1,'50.00','2012-02-16 06:04:12','2012-02-16 06:04:12',0,NULL),(496,9879,26,1,'50.00','2012-02-16 06:04:59','2012-02-16 06:04:59',1,NULL),(500,9879,39,1,'69.00','2012-02-16 06:09:58','2012-02-16 06:09:58',0,NULL),(498,9879,23,1,'50.00','2012-02-16 06:06:16','2012-02-16 06:06:16',1,NULL),(499,9879,42,1,'100.00','2012-02-16 06:07:39','2012-02-16 06:07:39',0,NULL),(501,9879,14,1,'45.00','2012-02-16 06:11:31','2012-02-16 06:11:31',0,NULL),(502,9879,13,1,'50.00','2012-02-16 06:12:11','2012-02-16 06:12:11',0,NULL),(503,9900,33,1,'200.00','2012-02-16 16:06:14','2012-02-16 16:14:26',0,247),(504,9902,18,1,'17.60','2012-02-16 16:36:52','2012-02-16 16:42:51',0,248),(508,9963,44,1,'40.00','2012-02-18 02:53:05','2012-02-18 02:54:14',0,249),(509,10073,30,1,'0.00','2012-02-20 02:39:30','2012-02-20 02:39:30',0,NULL),(511,10105,33,1,'500.00','2012-02-20 21:28:47','2012-02-20 21:34:06',0,250),(514,10181,6,1,'50.00','2012-02-21 16:44:33','2012-02-22 20:30:37',1,262),(516,10183,33,1,'50.00','2012-02-21 16:53:57','2012-02-21 16:57:07',1,256),(517,10187,6,1,'100.00','2012-02-21 17:03:00','2012-02-21 17:09:04',0,259),(518,10186,33,1,'50.00','2012-02-21 19:07:23','2012-02-21 19:09:00',1,260),(519,10330,33,1,'100.00','2012-02-22 18:19:12','2012-02-22 18:19:12',0,NULL),(520,10472,33,1,'100.00','2012-02-24 13:37:17','2012-02-24 13:40:37',0,263),(521,10474,22,1,'100.00','2012-02-24 13:45:54','2012-02-24 13:46:36',0,264),(524,10494,33,1,'50.00','2012-02-24 18:09:48','2012-02-24 18:28:06',0,265),(527,10515,6,1,'55.00','2012-02-25 03:33:01','2012-02-25 03:51:42',1,267),(528,10601,33,1,'50.00','2012-02-25 20:09:56','2012-02-25 20:09:56',0,NULL),(529,10774,7,1,'50.00','2012-02-27 22:07:14','2012-02-27 22:19:27',0,271),(530,10774,2,1,'50.00','2012-02-27 22:07:56','2012-02-27 22:19:27',0,271),(531,10862,6,1,'50.00','2012-02-28 13:09:16','2012-02-28 13:18:17',1,273),(532,10862,13,1,'25.00','2012-02-28 13:09:51','2012-02-28 13:18:19',1,274),(533,10920,26,1,'50.00','2012-02-29 03:15:33','2012-02-29 03:18:36',0,276),(569,10935,33,1,'50.00','2012-03-07 21:11:14','2012-03-07 21:11:33',1,290),(535,10942,33,1,'500.00','2012-02-29 15:46:15','2012-02-29 15:46:47',0,277),(536,11018,33,1,'10000.00','2012-03-01 15:29:29','2012-03-01 15:31:25',0,278),(537,11039,2,1,'39.00','2012-03-01 19:30:25','2012-03-01 19:30:45',0,279),(568,11045,33,1,'50.00','2012-03-07 21:04:21','2012-03-07 21:08:09',1,289),(539,11051,33,1,'50.00','2012-03-02 00:06:12','2012-03-02 00:06:12',0,NULL),(540,11122,43,1,'5.00','2012-03-02 20:12:15','2012-03-02 20:18:22',0,281),(541,11157,33,1,'25.00','2012-03-03 04:14:27','2012-03-03 04:29:11',0,282),(546,11267,41,1,'25.00','2012-03-04 00:11:22','2012-03-04 00:14:16',0,283),(545,11265,44,1,'50.00','2012-03-03 22:38:01','2012-03-03 22:38:01',0,NULL),(547,11348,5,1,'50.00','2012-03-04 18:23:21','2012-03-04 18:23:21',0,NULL),(548,11368,5,1,'15.00','2012-03-04 23:18:05','2012-03-04 23:21:08',0,284),(549,11396,11,1,'30.00','2012-03-05 13:49:42','2012-03-05 13:49:42',0,NULL),(551,11401,33,1,'100.00','2012-03-05 14:28:38','2012-03-05 14:28:38',1,NULL),(553,11420,33,1,'54.00','2012-03-05 19:43:03','2012-03-05 19:48:35',0,285),(554,11426,33,1,'50.00','2012-03-05 20:54:40','2012-03-05 20:54:40',1,NULL),(555,11452,23,1,'50.00','2012-03-06 03:38:06','2012-03-06 03:43:41',1,286),(701,11476,45,1,'39.00','2012-04-10 17:26:11','2012-04-10 17:26:47',1,370),(557,11503,14,1,'20.00','2012-03-06 21:26:24','2012-03-06 21:34:10',0,287),(561,11503,27,1,'30.00','2012-03-06 21:27:59','2012-03-06 21:34:10',0,287),(559,11503,28,1,'20.00','2012-03-06 21:26:58','2012-03-06 21:34:10',0,287),(560,11503,42,1,'40.00','2012-03-06 21:27:24','2012-03-06 21:34:10',0,287),(562,11503,18,1,'20.00','2012-03-06 21:29:22','2012-03-06 21:34:10',0,287),(563,11503,5,1,'20.00','2012-03-06 21:29:53','2012-03-06 21:34:10',0,287),(564,11503,44,1,'50.00','2012-03-06 21:30:50','2012-03-06 21:34:10',0,287),(565,11503,30,1,'18.00','2012-03-06 21:31:53','2012-03-06 21:34:10',0,287),(566,11594,41,1,'25.00','2012-03-07 16:55:43','2012-03-07 16:55:43',0,NULL),(567,11619,33,1,'10.00','2012-03-07 20:33:15','2012-03-07 20:33:15',0,NULL),(570,11623,33,1,'50.00','2012-03-07 22:04:02','2012-03-07 22:06:05',0,291),(571,11630,33,1,'46.51','2012-03-08 03:40:24','2012-03-08 03:45:19',0,292),(572,11632,44,1,'100.00','2012-03-08 05:15:06','2012-03-08 05:23:05',0,293),(574,11709,33,1,'217.00','2012-03-09 05:12:13','2012-03-09 05:32:09',0,294),(575,11709,5,1,'100.00','2012-03-09 05:13:46','2012-03-09 05:32:09',0,294),(576,11709,39,1,'100.00','2012-03-09 05:16:43','2012-03-09 05:32:09',0,294),(577,11768,44,1,'100.00','2012-03-10 00:05:33','2012-03-10 00:13:23',0,295),(578,11795,41,1,'142.31','2012-03-10 15:06:45','2012-03-10 15:14:52',0,296),(686,11802,12,1,'100.00','2012-04-09 15:21:13','2012-04-09 18:48:08',0,360),(580,11826,5,1,'500.00','2012-03-10 23:59:46','2012-03-10 23:59:46',0,NULL),(582,11849,28,1,'80.00','2012-03-11 04:10:53','2012-03-11 04:22:24',0,298),(583,11874,23,1,'200.00','2012-03-11 16:51:03','2012-03-11 16:59:32',0,299),(584,11874,28,1,'96.00','2012-03-11 16:51:49','2012-03-11 16:59:32',0,299),(585,11876,33,1,'150.00','2012-03-11 17:06:40','2012-03-11 17:19:20',0,300),(586,11933,33,1,'50.00','2012-03-12 14:02:48','2012-03-12 14:04:22',0,301),(587,11958,22,1,'250.00','2012-03-12 18:40:37','2012-03-12 18:46:42',0,302),(588,11986,6,1,'55.00','2012-03-13 02:44:04','2012-03-13 02:48:32',1,303),(589,11988,6,1,'55.00','2012-03-13 02:54:37','2012-03-13 02:54:37',1,NULL),(590,12015,43,1,'500.00','2012-03-13 06:36:20','2012-03-13 06:47:00',0,305),(591,12034,28,1,'59.00','2012-03-13 13:33:00','2012-03-13 13:42:42',0,306),(592,12090,11,1,'25.00','2012-03-14 14:11:25','2012-03-14 14:11:25',0,NULL),(595,12121,33,1,'50.00','2012-03-14 19:52:26','2012-03-14 19:54:37',1,307),(594,12117,33,1,'2000.00','2012-03-14 19:24:55','2012-03-14 19:24:55',0,NULL),(598,12133,33,1,'100.00','2012-03-14 23:40:39','2012-03-14 23:40:39',1,NULL),(597,12126,27,1,'1.00','2012-03-14 20:50:09','2012-03-14 20:50:09',0,NULL),(599,12164,3,1,'25.00','2012-03-15 11:23:45','2012-03-15 11:23:45',0,NULL),(868,17023,7,1,'50.00','2012-05-28 01:52:58','2012-05-28 01:52:58',0,NULL),(867,13601,7,1,'166.00','2012-05-27 20:32:27','2012-05-27 20:32:45',0,462),(602,12188,29,1,'0.00','2012-03-15 15:18:31','2012-03-15 15:18:31',0,NULL),(603,12211,44,1,'100.00','2012-03-15 22:55:33','2012-03-15 23:05:15',0,309),(604,12294,33,1,'10.00','2012-03-16 16:21:58','2012-03-16 16:21:58',1,NULL),(605,12299,6,1,'500.00','2012-03-16 18:12:35','2012-03-16 18:27:35',0,310),(606,12300,33,1,'25.00','2012-03-16 18:32:59','2012-03-16 18:32:59',0,NULL),(608,12356,14,1,'45.00','2012-03-17 11:31:51','2012-03-17 11:31:51',0,NULL),(609,12362,33,1,'200.00','2012-03-17 14:41:28','2012-03-17 14:56:10',0,311),(612,12371,24,1,'25.00','2012-03-17 21:30:08','2012-03-17 21:35:59',0,312),(613,12371,6,1,'25.00','2012-03-17 21:30:29','2012-03-17 21:35:59',0,312),(614,12371,12,1,'25.00','2012-03-17 21:31:25','2012-03-17 21:35:59',0,312),(615,12371,14,1,'25.00','2012-03-17 21:32:22','2012-03-17 21:35:59',0,312),(616,12417,23,1,'25.00','2012-03-18 02:40:44','2012-03-18 02:50:02',0,313),(617,12417,25,1,'25.00','2012-03-18 02:41:00','2012-03-18 02:50:02',0,313),(618,12417,24,1,'25.00','2012-03-18 02:46:29','2012-03-18 02:50:02',0,313),(619,12437,5,1,'1172.00','2012-03-18 13:30:53','2012-03-18 13:30:53',0,NULL),(620,12500,44,1,'100.00','2012-03-19 05:14:55','2012-03-19 05:14:55',0,NULL),(621,12592,41,1,'200.00','2012-03-20 15:40:08','2012-03-20 15:40:08',0,NULL),(625,12626,6,1,'500.00','2012-03-21 02:30:59','2012-03-21 02:30:59',0,NULL),(623,12622,33,1,'100.00','2012-03-21 00:55:39','2012-03-21 00:57:26',0,314),(624,12594,12,1,'300.00','2012-03-21 02:24:18','2012-03-21 02:28:25',1,315),(626,12646,9,1,'0.00','2012-03-21 14:26:23','2012-03-21 14:26:23',0,NULL),(627,12654,33,1,'250.00','2012-03-21 16:41:51','2012-03-21 16:47:43',0,316),(628,12755,33,1,'2000.00','2012-03-22 18:17:33','2012-03-22 18:22:40',0,317),(631,12768,7,1,'50.00','2012-03-23 00:21:57','2012-03-23 00:31:26',0,318),(630,12768,14,1,'65.00','2012-03-23 00:19:12','2012-03-23 00:31:26',0,318),(632,12794,41,1,'500.00','2012-03-23 09:45:25','2012-03-23 09:51:51',0,319),(633,12875,17,1,'500.00','2012-03-24 04:15:32','2012-03-24 04:17:07',0,320),(634,12930,6,1,'500.00','2012-03-24 16:49:19','2012-03-24 16:49:19',0,NULL),(637,13020,6,1,'0.00','2012-03-26 14:55:52','2012-03-26 14:55:52',0,NULL),(636,12933,12,1,'550.00','2012-03-24 17:38:52','2012-03-24 17:42:47',0,323),(638,13024,7,1,'1000.00','2012-03-26 15:28:32','2012-03-26 15:28:32',0,NULL),(639,13024,43,1,'1500.00','2012-03-26 15:28:42','2012-03-26 15:28:42',0,NULL),(642,13097,33,1,'500.00','2012-03-27 20:12:57','2012-03-27 20:15:09',1,324),(644,13104,33,1,'100.00','2012-03-27 23:35:45','2012-03-27 23:35:45',0,NULL),(645,13162,33,1,'50.00','2012-03-28 17:24:07','2012-03-28 17:24:07',0,NULL),(646,13162,42,1,'50.00','2012-03-28 17:24:30','2012-03-28 17:24:30',0,NULL),(647,13183,33,1,'150.00','2012-03-29 01:32:42','2012-03-29 01:50:41',1,327),(648,13190,43,1,'100.00','2012-03-29 05:06:02','2012-03-29 05:10:29',0,328),(649,13191,44,1,'100.00','2012-03-29 05:11:36','2012-03-29 05:13:02',0,331),(650,13201,33,1,'100.00','2012-03-29 13:51:50','2012-03-29 13:54:49',0,332),(651,13205,40,1,'250.00','2012-03-29 15:23:13','2012-03-29 16:03:32',0,333),(653,13205,10,1,'250.00','2012-03-29 15:52:01','2012-03-29 16:03:32',0,333),(654,13241,33,1,'300.00','2012-03-30 02:04:14','2012-03-30 02:06:30',0,334),(655,13250,33,1,'1000.00','2012-03-30 07:42:10','2012-03-30 07:48:23',0,335),(656,13276,33,1,'150.00','2012-03-30 18:27:00','2012-03-30 18:27:00',0,NULL),(657,13278,5,1,'50.00','2012-03-30 20:03:04','2012-03-30 20:03:04',0,NULL),(658,13281,33,1,'25.00','2012-03-30 20:50:18','2012-03-30 20:50:18',0,NULL),(659,13327,33,1,'250.00','2012-03-31 02:05:28','2012-03-31 02:05:28',0,NULL),(660,13354,41,1,'0.00','2012-03-31 16:34:00','2012-03-31 16:34:00',0,NULL),(661,13363,33,1,'350.00','2012-03-31 20:54:56','2012-03-31 20:55:44',0,338),(662,13370,6,1,'500.00','2012-04-01 00:20:25','2012-04-01 00:20:25',0,NULL),(663,13383,33,1,'115.00','2012-04-01 13:29:06','2012-04-01 13:31:32',0,341),(664,13405,33,1,'25.00','2012-04-02 00:46:24','2012-04-02 00:46:24',0,NULL),(665,13475,5,1,'10.00','2012-04-03 15:10:21','2012-04-03 15:10:21',0,NULL),(666,13477,33,1,'54.00','2012-04-03 16:15:33','2012-04-03 16:18:09',0,342),(913,17611,22,1,'50.00','2012-06-06 02:32:38','2012-06-06 02:43:09',1,491),(915,17630,19,1,'50.00','2012-06-06 14:35:14','2012-06-06 14:35:14',0,NULL),(674,13579,22,1,'25.00','2012-04-05 14:09:46','2012-04-05 14:09:46',0,NULL),(675,13581,7,1,'100.00','2012-04-05 14:33:37','2012-04-05 14:33:37',0,NULL),(673,13578,22,1,'25.00','2012-04-05 14:03:59','2012-04-05 14:03:59',0,NULL),(682,13778,32,1,'150.00','2012-04-09 14:58:34','2012-04-09 14:58:34',0,NULL),(681,13745,18,1,'1000.00','2012-04-08 19:03:51','2012-04-08 19:08:26',0,355),(685,11802,1,1,'100.00','2012-04-09 15:20:45','2012-04-09 18:48:08',0,360),(684,13781,33,1,'5550.00','2012-04-09 15:20:23','2012-04-09 15:20:23',0,NULL),(687,13782,33,1,'10.00','2012-04-09 15:38:52','2012-04-09 15:38:52',0,NULL),(689,13794,28,1,'50.00','2012-04-09 18:30:09','2012-04-09 18:30:38',0,359),(690,13794,22,1,'50.00','2012-04-09 18:30:22','2012-04-09 18:30:38',0,359),(692,13797,1,1,'90.00','2012-04-09 18:49:36','2012-04-09 18:52:01',1,362),(696,13783,45,1,'117.00','2012-04-09 19:53:12','2012-04-09 19:53:48',1,365),(695,13793,45,1,'78.00','2012-04-09 19:10:58','2012-04-09 19:11:23',1,364),(697,13796,45,1,'39.00','2012-04-09 20:19:25','2012-04-09 20:19:54',1,366),(698,13822,5,1,'500.00','2012-04-10 07:16:57','2012-04-10 07:19:02',0,367),(699,13830,45,1,'39.00','2012-04-10 13:01:43','2012-04-10 13:02:43',1,368),(700,12301,45,1,'90.00','2012-04-10 13:03:48','2012-04-10 13:04:27',1,369),(702,9949,45,1,'195.00','2012-04-10 17:28:10','2012-04-10 17:28:45',1,371),(703,9225,45,1,'55.00','2012-04-10 17:35:03','2012-04-10 17:36:27',1,372),(704,9225,45,1,'165.00','2012-04-10 17:35:22','2012-04-10 17:36:29',1,373),(705,9225,45,1,'220.00','2012-04-10 17:35:38','2012-04-10 17:36:30',1,374),(708,13993,7,1,'50.00','2012-04-12 15:13:45','2012-04-12 15:13:45',1,NULL),(709,14014,42,1,'100.00','2012-04-12 21:47:35','2012-04-12 21:48:57',0,376),(710,14018,1,1,'45.00','2012-04-12 22:34:36','2012-04-12 22:34:36',1,NULL),(711,14018,26,1,'50.00','2012-04-12 22:35:26','2012-04-12 22:35:26',1,NULL),(712,14018,14,1,'90.00','2012-04-12 22:35:51','2012-04-12 22:35:51',1,NULL),(713,14018,22,1,'50.00','2012-04-12 22:36:18','2012-04-12 22:36:18',1,NULL),(714,14018,40,1,'100.00','2012-04-12 22:36:36','2012-04-12 22:36:36',1,NULL),(715,14018,28,1,'118.00','2012-04-12 22:37:01','2012-04-12 22:37:01',1,NULL),(716,14018,42,1,'75.00','2012-04-12 22:37:27','2012-04-12 22:37:27',1,NULL),(717,14018,30,1,'50.00','2012-04-12 22:37:45','2012-04-12 22:37:45',1,NULL),(718,14018,20,1,'50.00','2012-04-12 22:38:02','2012-04-12 22:38:02',1,NULL),(719,14018,1,1,'90.00','2012-04-12 22:38:22','2012-04-12 22:38:22',1,NULL),(720,14035,23,1,'50.00','2012-04-13 02:24:15','2012-04-13 02:28:50',0,377),(721,14099,44,1,'100.00','2012-04-14 05:29:40','2012-04-14 05:33:41',0,378),(722,14100,7,1,'50.00','2012-04-14 05:35:47','2012-04-14 05:37:31',1,379),(723,14200,28,1,'118.00','2012-04-15 22:54:45','2012-04-15 22:57:26',0,380),(724,14200,1,1,'50.00','2012-04-15 22:55:03','2012-04-15 22:57:26',0,380),(725,14200,42,1,'32.00','2012-04-15 22:56:09','2012-04-15 22:57:26',0,380),(726,14347,11,1,'250.00','2012-04-17 15:12:07','2012-04-17 15:20:47',0,381),(727,14387,41,1,'50.00','2012-04-17 22:39:29','2012-04-17 22:42:33',0,382),(728,14387,11,1,'50.00','2012-04-17 22:40:07','2012-04-17 22:42:33',0,382),(729,14432,28,1,'59.00','2012-04-18 17:35:49','2012-04-18 17:39:53',0,383),(730,14434,33,1,'50.00','2012-04-18 18:04:45','2012-04-18 18:37:11',1,384),(731,14434,42,1,'75.00','2012-04-18 18:05:08','2012-04-18 18:37:12',1,385),(732,14434,14,1,'45.00','2012-04-18 18:05:22','2012-04-18 18:37:12',1,386),(733,14434,28,1,'118.00','2012-04-18 18:10:08','2012-04-18 18:37:13',1,387),(734,14434,5,1,'20.00','2012-04-18 18:16:09','2012-04-18 18:37:14',1,388),(735,14434,1,1,'45.00','2012-04-18 18:20:44','2012-04-18 18:37:14',1,389),(736,14434,22,1,'100.00','2012-04-18 18:21:50','2012-04-18 18:37:15',1,390),(737,14434,38,1,'50.00','2012-04-18 18:23:17','2012-04-18 18:37:16',1,391),(738,14446,33,1,'500.00','2012-04-18 22:14:30','2012-04-18 22:15:21',0,392),(741,14552,33,1,'0.00','2012-04-20 13:41:25','2012-04-20 13:41:25',0,NULL),(740,14453,27,1,'42.00','2012-04-18 23:25:36','2012-04-18 23:39:19',0,393),(742,14614,5,1,'0.00','2012-04-21 13:10:27','2012-04-21 13:10:27',0,NULL),(743,14641,2,1,'175.00','2012-04-22 03:41:41','2012-04-22 03:44:41',0,394),(744,14672,27,1,'20.00','2012-04-22 20:06:24','2012-04-22 20:06:24',0,NULL),(745,14672,1,1,'10.00','2012-04-22 20:06:55','2012-04-22 20:06:55',0,NULL),(746,14672,2,1,'20.00','2012-04-22 20:07:25','2012-04-22 20:07:25',0,NULL),(747,14672,28,1,'15.00','2012-04-22 20:07:59','2012-04-22 20:07:59',0,NULL),(748,14672,30,1,'15.00','2012-04-22 20:08:37','2012-04-22 20:08:37',0,NULL),(749,14757,5,1,'30.00','2012-04-23 22:58:32','2012-04-23 23:00:09',0,397),(750,14757,6,1,'25.00','2012-04-23 22:59:13','2012-04-23 23:00:09',0,397),(751,14779,43,1,'80.00','2012-04-24 13:14:33','2012-04-24 13:21:12',0,398),(752,14815,7,1,'100.00','2012-04-25 01:33:38','2012-04-25 01:39:18',0,399),(753,14815,5,1,'50.00','2012-04-25 01:35:25','2012-04-25 01:39:18',0,399),(754,14815,23,1,'50.00','2012-04-25 01:36:04','2012-04-25 01:39:18',0,399),(757,14918,33,1,'250.00','2012-04-26 12:46:10','2012-04-26 12:46:10',0,NULL),(756,14888,33,1,'65.00','2012-04-25 21:42:45','2012-04-25 21:42:45',0,NULL),(758,14919,33,1,'250.00','2012-04-26 12:52:07','2012-04-26 12:52:58',0,400),(761,14957,6,1,'100.00','2012-04-27 11:13:17','2012-04-27 11:17:49',1,403),(762,14957,22,1,'100.00','2012-04-27 11:13:56','2012-04-27 11:17:50',1,404),(763,14995,33,1,'500.00','2012-04-27 21:09:33','2012-04-27 21:09:33',0,NULL),(764,15003,1,1,'125.00','2012-04-28 00:10:46','2012-04-28 00:10:46',0,NULL),(765,15045,2,1,'15.00','2012-04-29 01:27:50','2012-04-29 01:31:28',0,407),(766,15045,28,1,'15.00','2012-04-29 01:28:20','2012-04-29 01:31:28',0,407),(767,15045,1,1,'15.00','2012-04-29 01:28:40','2012-04-29 01:31:28',0,407),(768,15045,30,1,'15.00','2012-04-29 01:28:57','2012-04-29 01:31:28',0,407),(769,15128,6,1,'50.00','2012-04-30 15:05:04','2012-04-30 15:12:43',1,408),(770,15211,33,1,'500.00','2012-05-01 12:49:51','2012-05-01 12:55:01',0,409),(771,15217,8,1,'250.00','2012-05-01 14:26:59','2012-05-01 14:26:59',1,NULL),(772,15217,8,1,'250.00','2012-05-01 14:27:14','2012-05-01 14:27:14',0,NULL),(773,15218,30,1,'150.00','2012-05-01 14:53:52','2012-05-01 14:55:14',0,410),(774,15230,6,1,'0.00','2012-05-01 15:56:02','2012-05-01 15:56:02',0,NULL),(775,15239,33,1,'5.00','2012-05-01 20:13:30','2012-05-01 20:13:30',0,NULL),(776,14927,33,1,'5.00','2012-05-01 20:14:12','2012-05-01 20:14:12',0,NULL),(777,15261,22,1,'100.00','2012-05-02 00:25:31','2012-05-02 00:30:09',0,412),(778,15261,2,1,'100.00','2012-05-02 00:26:04','2012-05-02 00:30:09',0,412),(779,15261,23,1,'100.00','2012-05-02 00:27:54','2012-05-02 00:30:09',0,412),(780,15261,20,1,'55.00','2012-05-02 00:28:41','2012-05-02 00:30:09',0,412),(781,15262,2,1,'39.00','2012-05-02 00:42:28','2012-05-02 00:42:28',1,NULL),(782,15264,30,1,'250.00','2012-05-02 02:26:40','2012-05-02 02:26:40',0,NULL),(783,15265,33,1,'1000.00','2012-05-02 02:50:44','2012-05-02 02:50:44',0,NULL),(786,15427,32,1,'55.00','2012-05-04 07:14:07','2012-05-04 07:15:04',1,413),(787,15468,5,1,'500.00','2012-05-04 20:58:17','2012-05-04 20:58:17',0,NULL),(788,15479,43,1,'500.00','2012-05-05 02:57:43','2012-05-05 03:00:46',0,414),(789,15481,35,1,'200.00','2012-05-05 03:50:32','2012-05-05 04:26:23',0,416),(790,15483,33,1,'100.00','2012-05-05 05:38:28','2012-05-05 05:38:28',0,NULL),(791,15597,30,1,'164.00','2012-05-06 16:54:57','2012-05-06 16:57:15',0,417),(794,15627,33,1,'100.00','2012-05-07 03:24:56','2012-05-07 03:24:56',0,NULL),(793,15614,22,1,'0.00','2012-05-06 23:06:29','2012-05-06 23:06:29',0,NULL),(795,15662,30,1,'100.00','2012-05-07 17:17:18','2012-05-07 17:21:06',0,418),(796,15662,33,1,'100.00','2012-05-07 17:17:46','2012-05-07 17:21:06',0,418),(797,15673,33,1,'0.00','2012-05-07 19:23:13','2012-05-07 19:23:13',0,NULL),(798,15684,39,1,'59.00','2012-05-08 01:23:23','2012-05-08 15:42:53',0,422),(799,15688,5,1,'30.00','2012-05-08 02:48:46','2012-05-08 02:57:16',0,421),(800,15714,5,1,'30.00','2012-05-08 14:56:34','2012-05-08 14:56:34',0,NULL),(801,15746,19,1,'50.00','2012-05-08 22:54:35','2012-05-08 23:03:00',0,423),(802,15746,29,1,'50.00','2012-05-08 22:55:03','2012-05-08 23:03:00',0,423),(803,15794,33,1,'25.00','2012-05-09 16:38:00','2012-05-09 16:38:00',0,NULL),(804,15885,13,1,'500.00','2012-05-11 03:07:39','2012-05-11 03:09:52',0,424),(805,15901,6,1,'50.00','2012-05-11 07:39:00','2012-05-11 07:42:48',0,425),(806,15921,1,1,'30.00','2012-05-11 16:48:54','2012-05-11 16:54:57',1,427),(807,15921,33,1,'25.00','2012-05-11 16:49:45','2012-05-11 16:54:58',1,428),(808,15938,14,1,'250.00','2012-05-11 19:07:32','2012-05-11 19:14:30',0,429),(809,15938,33,1,'250.00','2012-05-11 19:09:05','2012-05-11 19:14:30',0,429),(810,15940,33,1,'14.00','2012-05-11 20:35:51','2012-05-11 20:44:06',0,430),(811,15943,22,1,'250.00','2012-05-11 22:02:26','2012-05-11 22:10:13',0,431),(812,15943,12,1,'300.00','2012-05-11 22:06:08','2012-05-11 22:10:13',0,431),(813,15951,32,1,'55.00','2012-05-12 04:14:39','2012-05-12 04:14:39',1,NULL),(814,16065,43,1,'25.00','2012-05-13 20:25:23','2012-05-13 20:29:18',0,432),(815,16065,2,1,'39.00','2012-05-13 20:28:17','2012-05-13 20:29:18',0,432),(816,16129,41,1,'250.00','2012-05-14 23:12:36','2012-05-14 23:15:53',0,433),(817,16132,32,1,'55.00','2012-05-14 23:21:10','2012-05-14 23:23:44',1,434),(818,16130,33,1,'50.00','2012-05-14 23:27:47','2012-05-14 23:28:19',0,435),(821,16199,5,1,'100.00','2012-05-15 15:42:18','2012-05-15 15:49:11',0,438),(820,16196,10,1,'400.00','2012-05-15 13:59:37','2012-05-15 14:05:16',0,437),(822,16199,24,1,'177.00','2012-05-15 15:48:46','2012-05-15 15:49:11',0,438),(823,16209,33,1,'25.00','2012-05-15 18:16:51','2012-05-15 18:16:51',0,NULL),(824,16383,10,1,'0.00','2012-05-17 16:39:23','2012-05-17 16:39:23',0,NULL),(825,16421,33,1,'125.00','2012-05-17 21:22:44','2012-05-17 21:24:49',0,439),(827,16424,14,1,'45.00','2012-05-17 23:05:58','2012-05-17 23:09:19',1,440),(828,16424,1,1,'45.00','2012-05-17 23:06:21','2012-05-17 23:09:20',1,441),(829,16429,33,1,'50.00','2012-05-18 00:59:30','2012-05-18 01:01:10',0,443),(833,16461,6,1,'0.00','2012-05-18 15:18:54','2012-05-18 15:18:54',0,NULL),(832,16459,1,1,'45.00','2012-05-18 15:05:12','2012-05-18 17:07:24',1,444),(835,16467,1,1,'45.00','2012-05-18 20:05:18','2012-05-18 20:10:22',1,445),(836,16542,33,1,'50.00','2012-05-20 01:24:10','2012-05-20 01:24:10',0,NULL),(838,16561,33,1,'100.00','2012-05-20 16:47:52','2012-05-20 16:48:41',1,446),(839,16575,14,1,'100.00','2012-05-21 00:51:32','2012-05-21 00:56:06',0,447),(840,16575,39,1,'138.00','2012-05-21 00:53:32','2012-05-21 00:56:06',0,447),(841,16597,33,1,'550.00','2012-05-21 14:41:05','2012-05-21 15:59:42',0,448),(842,16608,33,1,'500.00','2012-05-21 16:57:56','2012-05-21 17:01:06',0,449),(843,16609,33,1,'50.00','2012-05-21 17:12:20','2012-05-21 17:14:52',1,450),(844,16629,33,1,'500.00','2012-05-22 00:44:47','2012-05-22 00:54:31',0,451),(845,16691,22,1,'100.00','2012-05-22 18:36:19','2012-05-22 18:38:14',0,452),(846,16691,6,1,'46.00','2012-05-22 18:37:29','2012-05-22 18:38:14',0,452),(847,16817,35,1,'50.00','2012-05-24 02:39:15','2012-05-24 02:42:11',0,453),(848,16817,28,1,'59.00','2012-05-24 02:40:15','2012-05-24 02:42:11',0,453),(849,16818,27,1,'25.00','2012-05-24 03:29:50','2012-05-24 03:31:14',0,454),(850,16818,5,1,'30.00','2012-05-24 03:30:39','2012-05-24 03:31:14',0,454),(851,16945,43,1,'25.00','2012-05-26 07:24:34','2012-05-26 07:24:34',0,NULL),(852,16945,7,1,'5.00','2012-05-26 07:33:38','2012-05-26 07:38:29',1,455),(853,16972,12,1,'0.00','2012-05-26 20:35:36','2012-05-26 20:35:36',0,NULL),(854,16973,33,1,'1500.00','2012-05-26 21:41:49','2012-05-26 21:41:49',0,NULL),(855,16974,33,1,'1500.00','2012-05-26 21:49:03','2012-05-26 21:52:16',0,457),(856,16984,5,1,'500.00','2012-05-27 03:05:03','2012-05-27 03:51:14',0,458),(858,16976,2,1,'39.00','2012-05-27 04:02:25','2012-05-27 04:10:35',0,460),(859,16976,30,1,'40.00','2012-05-27 04:02:44','2012-05-27 04:10:35',0,460),(860,16976,13,1,'1.00','2012-05-27 04:03:20','2012-05-27 04:10:35',0,460),(861,16985,23,1,'578.88','2012-05-27 04:06:26','2012-05-27 04:07:28',0,459),(862,17011,5,1,'50.00','2012-05-27 18:47:18','2012-05-27 18:52:22',0,461),(863,17011,15,1,'50.00','2012-05-27 18:48:24','2012-05-27 18:52:22',0,461),(864,17011,42,1,'50.00','2012-05-27 18:49:58','2012-05-27 18:52:22',0,461),(865,17011,30,1,'50.00','2012-05-27 18:51:06','2012-05-27 18:52:22',0,461),(866,13601,28,1,'100.00','2012-05-27 20:29:29','2012-05-27 20:32:45',0,462),(877,17076,19,1,'10.00','2012-05-29 05:47:52','2012-05-31 05:49:19',1,466),(891,17247,36,1,'300.00','2012-05-31 18:21:36','2012-05-31 18:21:58',0,472),(875,17076,25,1,'10.00','2012-05-29 05:46:28','2012-05-31 05:49:20',1,467),(878,17076,22,1,'40.00','2012-05-29 05:48:22','2012-05-31 05:49:21',1,468),(879,17076,23,1,'10.00','2012-05-29 05:49:46','2012-05-31 05:49:22',1,469),(890,17076,24,1,'40.00','2012-05-31 05:44:14','2012-05-31 05:49:24',0,471),(888,17127,33,1,'100.00','2012-05-30 03:51:20','2012-05-30 03:51:20',0,NULL),(884,17076,20,1,'10.00','2012-05-29 05:56:02','2012-05-31 05:49:22',1,470),(889,17147,1,1,'45.00','2012-05-30 14:55:29','2012-05-30 15:00:55',1,464),(892,17257,33,1,'25.00','2012-05-31 22:42:08','2012-05-31 22:42:08',0,NULL),(893,17316,1,1,'0.00','2012-06-02 04:09:24','2012-06-02 04:09:24',1,NULL),(895,17330,1,1,'45.00','2012-06-02 05:38:55','2012-06-02 05:40:43',1,474),(896,17333,29,1,'30.00','2012-06-02 05:43:07','2012-06-02 05:44:32',0,475),(897,17483,40,1,'170.00','2012-06-04 15:32:15','2012-06-04 15:54:56',0,481),(898,17474,40,1,'170.00','2012-06-04 15:51:53','2012-06-04 15:51:53',0,NULL),(914,17625,33,1,'5.00','2012-06-06 14:07:31','2012-06-06 14:08:10',1,492),(901,17506,33,1,'500.00','2012-06-04 21:24:41','2012-06-04 21:34:20',0,482),(902,17511,32,1,'55.00','2012-06-04 22:43:06','2012-06-04 22:47:10',1,483),(903,17511,1,1,'90.00','2012-06-04 22:43:28','2012-06-04 22:47:13',1,484),(906,17577,33,1,'25.00','2012-06-05 16:18:59','2012-06-05 16:21:50',0,485),(907,17577,6,1,'25.00','2012-06-05 16:19:11','2012-06-05 16:21:50',0,485),(908,17577,13,1,'25.00','2012-06-05 16:19:40','2012-06-05 16:21:50',0,485),(909,17577,27,1,'25.00','2012-06-05 16:19:55','2012-06-05 16:21:50',0,485),(910,17580,33,1,'9.00','2012-06-05 16:48:07','2012-06-05 16:52:30',0,486),(911,17586,33,1,'500.00','2012-06-05 20:06:37','2012-06-05 20:07:51',0,487),(912,13502,42,1,'152.00','2012-06-05 23:00:55','2012-06-05 23:01:36',0,488),(923,17635,33,1,'55.00','2012-06-06 17:30:08','2012-06-06 17:38:43',0,495),(924,17649,38,1,'100.00','2012-06-06 19:35:23','2012-06-06 19:40:52',0,496),(925,17648,33,1,'54.00','2012-06-06 20:05:44','2012-06-06 20:07:10',1,497),(926,17677,26,1,'25.00','2012-06-07 06:27:36','2012-06-07 06:27:36',0,NULL),(927,17700,25,1,'50.00','2012-06-07 13:48:50','2012-06-07 14:04:08',0,500),(928,17724,33,1,'800.00','2012-06-08 03:50:56','2012-06-08 03:51:30',0,501),(929,17742,3,1,'25.00','2012-06-08 14:08:47','2012-06-08 14:08:47',1,NULL),(931,17799,30,1,'546.00','2012-06-10 03:59:09','2012-06-10 03:59:09',0,NULL),(932,17897,39,1,'69.00','2012-06-12 02:20:00','2012-06-12 02:22:26',0,502),(933,17939,33,1,'313.13','2012-06-12 22:33:14','2012-06-12 22:38:10',0,503),(934,17940,23,1,'25.00','2012-06-12 22:59:46','2012-06-12 22:59:46',0,NULL),(935,17941,13,1,'100.00','2012-06-12 23:26:38','2012-06-12 23:33:26',0,504),(936,17941,33,1,'50.00','2012-06-12 23:27:24','2012-06-12 23:33:26',0,504),(937,17962,5,1,'185.00','2012-06-13 10:13:09','2012-06-13 10:13:09',0,NULL),(939,17987,32,1,'0.00','2012-06-13 17:30:18','2012-06-13 17:30:18',0,NULL),(940,18012,5,1,'200.00','2012-06-13 21:38:44','2012-06-13 21:43:21',1,507),(941,18157,39,1,'69.00','2012-06-15 15:41:21','2012-06-15 15:47:40',1,508),(942,18159,39,1,'69.00','2012-06-15 15:48:43','2012-06-15 15:48:43',0,NULL),(943,18160,39,1,'69.00','2012-06-15 15:49:51','2012-06-15 15:49:51',1,NULL),(949,18170,19,1,'50.00','2012-06-15 21:05:58','2012-06-15 21:14:34',0,509),(945,18170,14,1,'45.00','2012-06-15 21:02:08','2012-06-15 21:14:34',0,509),(946,18170,5,1,'50.00','2012-06-15 21:02:53','2012-06-15 21:14:34',0,509),(947,18170,42,1,'50.00','2012-06-15 21:04:11','2012-06-15 21:14:34',0,509),(948,18170,24,1,'82.00','2012-06-15 21:04:51','2012-06-15 21:14:34',0,509),(950,18209,42,1,'50.00','2012-06-16 21:09:43','2012-06-16 21:09:43',0,NULL),(951,18354,33,1,'50.00','2012-06-19 15:37:11','2012-06-19 15:39:06',0,510),(952,18357,23,1,'0.00','2012-06-19 17:49:45','2012-06-19 17:49:45',0,NULL),(953,9021,26,1,'50.00','2012-06-19 18:06:07','2012-06-19 18:08:13',0,511),(957,18371,7,1,'193.00','2012-06-19 22:42:31','2012-06-19 22:42:50',0,513),(958,18377,32,1,'1000.00','2012-06-19 23:53:33','2012-06-19 23:55:04',0,514),(960,18421,40,1,'40.00','2012-06-20 20:27:23','2012-06-20 20:27:23',1,NULL),(961,18424,33,1,'71.00','2012-06-20 20:50:41','2012-06-20 20:52:09',0,515),(962,18444,2,1,'75.00','2012-06-21 02:10:45','2012-06-21 02:16:36',0,516),(964,18462,33,1,'26.53','2012-06-21 13:49:00','2012-06-21 13:49:00',0,NULL),(965,18474,33,1,'100.00','2012-06-21 18:19:58','2012-06-21 18:19:58',0,NULL),(967,18476,33,1,'1230.00','2012-06-21 19:20:33','2012-06-21 19:21:22',0,517),(968,18556,22,1,'25.00','2012-06-22 21:33:57','2012-06-22 21:44:04',0,518),(969,18556,23,1,'25.00','2012-06-22 21:34:24','2012-06-22 21:44:04',0,518),(970,18556,6,1,'100.00','2012-06-22 21:34:35','2012-06-22 21:44:04',0,518),(971,18556,27,1,'25.00','2012-06-22 21:35:25','2012-06-22 21:44:04',0,518),(972,18556,30,1,'25.00','2012-06-22 21:35:41','2012-06-22 21:44:04',0,518),(973,18556,11,1,'25.00','2012-06-22 21:36:27','2012-06-22 21:44:04',0,518),(975,18556,26,1,'25.00','2012-06-22 21:41:06','2012-06-22 21:44:04',0,518),(976,18602,22,1,'40.00','2012-06-23 17:51:40','2012-06-23 17:52:31',0,519),(977,18650,34,1,'100.00','2012-06-24 14:32:24','2012-07-04 12:25:42',0,548),(978,18650,38,1,'100.00','2012-06-24 14:32:41','2012-07-04 12:25:42',0,548),(979,18650,5,1,'100.00','2012-06-24 14:33:20','2012-07-04 12:25:42',0,548),(983,18650,7,1,'100.00','2012-06-24 14:35:35','2012-07-04 12:25:42',0,548),(981,18650,2,1,'100.00','2012-06-24 14:33:54','2012-07-04 12:25:42',0,548),(982,18650,29,1,'100.00','2012-06-24 14:34:41','2012-07-04 12:25:42',0,548),(984,18741,41,1,'300.00','2012-06-25 22:16:22','2012-06-25 22:22:07',0,522),(985,18785,20,1,'100.00','2012-06-26 19:43:01','2012-06-26 19:43:01',0,NULL),(986,18802,43,1,'25.00','2012-06-27 00:59:57','2012-06-27 00:59:57',0,NULL),(987,18829,19,1,'200.00','2012-06-27 13:11:48','2012-06-27 13:11:48',0,NULL),(988,18825,19,1,'0.00','2012-06-27 14:34:50','2012-06-27 14:34:50',0,NULL),(990,18860,40,1,'100.00','2012-06-27 23:50:14','2012-06-27 23:53:55',0,527),(992,18899,33,1,'50.00','2012-06-28 16:10:33','2012-06-28 16:11:24',0,528),(993,18914,3,1,'40.00','2012-06-28 22:11:29','2012-06-28 22:18:13',0,529),(994,18923,22,1,'100.00','2012-06-29 02:24:55','2012-06-29 02:24:55',0,NULL),(995,18954,33,1,'60.00','2012-06-29 10:53:34','2012-06-29 10:57:38',0,530),(996,18998,33,1,'50.00','2012-06-29 19:21:47','2012-06-29 19:33:21',1,531),(997,19000,1,1,'540.00','2012-06-29 20:22:46','2012-06-29 20:36:27',0,532),(998,19000,20,1,'50.00','2012-06-29 20:35:28','2012-06-29 20:36:27',0,532),(999,19008,12,1,'1000.00','2012-06-29 22:15:11','2012-06-29 22:15:11',0,NULL),(1000,19069,33,1,'5000.00','2012-06-30 19:05:53','2012-06-30 19:05:53',0,NULL),(1001,19069,22,1,'5000.00','2012-06-30 19:06:22','2012-06-30 19:06:22',0,NULL),(1002,19076,1,1,'112.00','2012-06-30 21:31:40','2012-06-30 21:34:54',0,533),(1004,19076,7,1,'112.00','2012-06-30 21:34:35','2012-06-30 21:34:54',0,533),(1005,19092,6,1,'50.00','2012-07-01 03:39:10','2012-07-01 04:00:35',1,541),(1007,19127,20,1,'100.00','2012-07-01 20:20:54','2012-07-01 20:21:37',0,542),(1008,19127,14,1,'90.00','2012-07-01 20:21:20','2012-07-01 20:21:37',0,542),(1009,19206,33,1,'40.00','2012-07-02 20:35:02','2012-07-02 20:37:24',0,543),(1011,19208,11,1,'25.00','2012-07-02 21:51:23','2012-07-02 21:53:11',0,544),(1012,19215,38,1,'4.25','2012-07-02 22:58:39','2012-07-02 23:03:13',0,545),(1015,19319,33,1,'500.00','2012-07-04 03:25:38','2012-07-04 03:26:01',0,547),(1014,19281,8,1,'20.00','2012-07-03 15:11:23','2012-07-03 15:12:36',0,546),(1016,19340,33,1,'289.00','2012-07-04 15:40:46','2012-07-04 15:42:58',0,549),(1017,19381,33,1,'10.00','2012-07-05 09:42:42','2012-07-05 09:44:45',0,550),(1018,19421,33,1,'50.00','2012-07-05 23:02:14','2012-07-05 23:03:34',0,551),(1019,19457,33,1,'25.00','2012-07-06 14:38:42','2012-07-06 14:38:42',0,NULL),(1020,19460,33,1,'30.00','2012-07-06 15:12:22','2012-07-06 15:16:05',1,553),(1021,19467,33,1,'44.71','2012-07-06 18:16:07','2012-07-06 18:21:06',0,554),(1022,19546,6,1,'10.00','2012-07-07 21:32:28','2012-07-07 21:32:28',1,NULL),(1023,19597,33,1,'50.00','2012-07-08 11:46:15','2012-07-08 11:46:39',0,557),(1024,19672,5,1,'115.44','2012-07-08 21:25:23','2012-07-08 21:25:23',0,NULL),(1026,19714,33,1,'600.00','2012-07-09 10:51:02','2012-07-09 10:51:59',0,558),(1027,19738,33,1,'355.00','2012-07-09 19:03:52','2012-07-09 19:07:10',0,559),(1028,19845,33,1,'15.00','2012-07-11 12:28:58','2012-07-11 12:28:58',0,NULL),(1029,19845,5,1,'90.00','2012-07-11 12:29:32','2012-07-11 12:29:32',0,NULL),(1030,19845,43,1,'0.00','2012-07-11 12:31:58','2012-07-11 12:31:58',0,NULL),(1031,19905,23,1,'100.00','2012-07-12 09:10:51','2012-07-12 09:10:51',0,NULL),(1032,19905,23,1,'0.00','2012-07-12 09:11:00','2012-07-12 09:11:00',0,NULL),(1033,19943,33,1,'500.00','2012-07-12 14:39:22','2012-07-12 14:41:11',0,561),(1034,19942,33,1,'800.00','2012-07-12 15:01:03','2012-07-12 15:13:09',0,562),(1035,19845,43,1,'250.00','2012-07-12 15:35:23','2012-07-12 15:35:23',0,NULL),(1037,19959,5,1,'1000.00','2012-07-12 23:27:17','2012-07-12 23:28:28',0,563),(1038,19968,39,1,'69.00','2012-07-13 00:23:47','2012-07-13 00:26:11',1,564),(1039,20020,33,1,'100.00','2012-07-13 19:13:38','2012-07-13 19:13:38',0,NULL),(1042,20091,5,1,'100.00','2012-07-14 16:16:29','2012-07-14 16:20:06',0,569),(1043,20207,1,1,'45.00','2012-07-16 17:01:17','2012-07-16 17:01:17',1,NULL),(1044,20253,26,1,'50.00','2012-07-17 13:12:22','2012-07-17 13:13:13',0,570),(1045,20267,33,1,'35.00','2012-07-17 15:38:41','2012-07-17 15:44:05',0,574),(1051,20330,13,1,'500.00','2012-07-18 17:57:49','2012-07-18 17:58:52',0,576),(1050,20284,15,1,'25.00','2012-07-17 22:29:29','2012-07-17 22:30:40',0,575),(1049,20282,33,1,'10.00','2012-07-17 21:23:56','2012-07-17 21:23:56',0,NULL),(1052,20391,43,1,'500.00','2012-07-19 15:59:08','2012-07-19 15:59:08',0,NULL),(1054,20410,24,1,'500.00','2012-07-19 23:38:56','2012-07-19 23:41:28',0,580),(1055,20410,40,1,'500.00','2012-07-19 23:39:42','2012-07-19 23:41:28',0,580),(1056,20448,33,1,'150.00','2012-07-20 22:56:08','2012-07-20 22:56:34',0,581),(1058,20453,6,1,'25.00','2012-07-21 02:43:16','2012-07-21 02:52:14',0,582),(1059,20454,30,1,'25.00','2012-07-21 02:55:03','2012-07-21 03:01:21',0,583),(1060,20458,33,1,'100.00','2012-07-21 07:18:59','2012-07-21 07:19:50',0,584),(1061,20474,43,1,'50.00','2012-07-21 14:45:23','2012-07-21 14:45:23',0,NULL),(1063,20535,2,1,'70.00','2012-07-22 13:55:39','2012-07-22 13:55:39',0,NULL),(1064,20535,2,1,'78.00','2012-07-22 13:56:38','2012-07-22 13:56:38',1,NULL),(1065,20613,22,1,'100.00','2012-07-24 01:23:44','2012-07-24 01:25:17',0,585),(1066,20613,14,1,'110.00','2012-07-24 01:24:17','2012-07-24 01:25:17',0,585),(1067,20707,33,1,'140.00','2012-07-24 21:28:59','2012-07-24 22:14:07',0,586),(1068,21022,10,1,'20.00','2012-07-27 18:06:26','2012-07-27 18:35:50',0,587),(1069,21022,12,1,'20.00','2012-07-27 18:07:17','2012-07-27 18:35:50',0,587),(1070,21022,24,1,'20.00','2012-07-27 18:10:38','2012-07-27 18:35:50',0,587),(1071,21022,28,1,'20.00','2012-07-27 18:18:06','2012-07-27 18:35:50',0,587),(1072,21022,1,1,'20.00','2012-07-27 18:23:51','2012-07-27 18:35:50',0,587),(1073,21025,33,1,'25.00','2012-07-27 18:57:57','2012-07-27 18:58:46',0,588),(1074,21040,6,1,'0.00','2012-07-28 01:09:56','2012-07-28 01:09:56',0,NULL),(1075,21055,32,1,'50.00','2012-07-28 13:20:58','2012-07-28 13:21:45',0,589),(1076,21067,23,1,'50.00','2012-07-28 21:29:58','2012-07-28 21:29:58',0,NULL),(1077,21092,43,1,'40.00','2012-07-29 08:45:10','2012-07-29 08:47:46',0,593),(1078,21157,19,1,'50.00','2012-07-29 23:57:02','2012-07-29 23:57:02',0,NULL);
/*!40000 ALTER TABLE `line_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `meetings`
--
DROP TABLE IF EXISTS `meetings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `meetings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT NULL,
`date` datetime DEFAULT NULL,
`photo_id` int(11) DEFAULT NULL,
`blurb` text,
`position` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_meetings_on_id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `meetings`
--
LOCK TABLES `meetings` WRITE;
/*!40000 ALTER TABLE `meetings` DISABLE KEYS */;
INSERT INTO `meetings` VALUES (1,'Town Council Meetings','2012-08-23 23:00:00',NULL,'<p>Held on the second Monday of each month at 7:00 p.m. in the Council Chambers located in the Municipal Building, 125 Eastview Street.</p>',0,'2012-08-23 20:05:02','2012-08-23 20:06:14'),(2,'Planning Commission Meetings','2012-08-23 23:00:00',NULL,'<p>Held on the third Thursday of each month at 7:00 p.m. in the Council Chambers located in the Municipal Building, 125 Eastview Street.</p>',1,'2012-08-23 20:06:07','2012-08-23 20:06:07'),(3,'Dayton Neighborhood Watch','2012-08-23 20:06:00',NULL,'<p>Meets the third Tuesday of each month, 6:30- 7:30 p.m., in the Municipal Building Council Chambers.</p>',2,'2012-08-23 20:06:37','2012-08-23 20:06:37'),(4,'Go Green Dayton Citizens Advisory Committee','2012-08-23 20:06:00',NULL,'<p>Meets the second Wednesday of each month at 11:00 a.m. in the Municipal Building Assembly Room (Mason St. entrance at the flagpole).<br /></p>',3,'2012-08-23 20:07:05','2012-08-23 20:07:05'),(5,'Dayton Merchants Association','2012-08-23 20:07:00',NULL,'<p>Meets the fourth Thursday of each month, 6:30 p.m., at Braithwaite Studios, 415 Mason St., Dayton.</p>',4,'2012-08-23 20:07:25','2012-08-23 20:07:25');
/*!40000 ALTER TABLE `meetings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `members`
--
DROP TABLE IF EXISTS `members`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `members` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`email` varchar(255) NOT NULL,
`encrypted_password` varchar(255) NOT NULL,
`persistence_token` varchar(255) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`perishable_token` varchar(255) DEFAULT NULL,
`current_sign_in_at` datetime DEFAULT NULL,
`last_sign_in_at` datetime DEFAULT NULL,
`current_sign_in_ip` varchar(255) DEFAULT NULL,
`last_sign_in_ip` varchar(255) DEFAULT NULL,
`sign_in_count` int(11) DEFAULT NULL,
`remember_token` varchar(255) DEFAULT NULL,
`reset_password_token` varchar(255) DEFAULT NULL,
`remember_created_at` datetime DEFAULT NULL,
`first_name` varchar(255) DEFAULT NULL,
`last_name` varchar(255) DEFAULT NULL,
`title` varchar(255) DEFAULT NULL,
`phone` varchar(255) DEFAULT NULL,
`fax` varchar(255) DEFAULT NULL,
`website` varchar(255) DEFAULT NULL,
`organization` varchar(255) DEFAULT NULL,
`member_until` datetime DEFAULT NULL,
`username` varchar(255) NOT NULL,
`customer_cim_id` varchar(255) DEFAULT NULL,
`donor_number` varchar(255) DEFAULT NULL,
`verified` tinyint(1) DEFAULT '0',
`restrict_emails` tinyint(1) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `members`
--
LOCK TABLES `members` WRITE;
/*!40000 ALTER TABLE `members` DISABLE KEYS */;
/*!40000 ALTER TABLE `members` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `news_item_translations`
--
DROP TABLE IF EXISTS `news_item_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `news_item_translations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`news_item_id` int(11) DEFAULT NULL,
`locale` varchar(255) DEFAULT NULL,
`title` varchar(255) DEFAULT NULL,
`body` text,
`external_url` varchar(255) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_news_item_translations_on_news_item_id` (`news_item_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `news_item_translations`
--
LOCK TABLES `news_item_translations` WRITE;
/*!40000 ALTER TABLE `news_item_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `news_item_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `news_items`
--
DROP TABLE IF EXISTS `news_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `news_items` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT NULL,
`body` text,
`publish_date` datetime DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`external_url` varchar(255) DEFAULT NULL,
`image_id` int(11) DEFAULT NULL,
`news_type` varchar(255) DEFAULT 'CAM Newsletter',
`image_caption` text,
`program_id` int(11) DEFAULT NULL,
`subtitle` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_news_items_on_id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `news_items`
--
LOCK TABLES `news_items` WRITE;
/*!40000 ALTER TABLE `news_items` DISABLE KEYS */;
INSERT INTO `news_items` VALUES (1,'Scam Alert!','<p>A local resident reported that she received a call from a woman claiming that she needed to send her a new social security card. The person on the phone asked for checking account numbers for \"verification.\" When the resident refused to do so, the woman became very angry and kept insisting. Legitimate agencies do not ask for</p>','2012-08-19 13:34:00','2012-08-19 17:34:59','2012-08-19 17:34:59',NULL,NULL,'News Release','',NULL,'Phone calls phishing for social security numbers');
/*!40000 ALTER TABLE `news_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `order_states`
--
DROP TABLE IF EXISTS `order_states`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `order_states` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`state` varchar(255) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_order_states_on_state` (`state`),
KEY `index_order_states_on_id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `order_states`
--
LOCK TABLES `order_states` WRITE;
/*!40000 ALTER TABLE `order_states` DISABLE KEYS */;
INSERT INTO `order_states` VALUES (1,'cart',NULL,NULL),(2,'processing',NULL,NULL),(3,'complete',NULL,NULL),(4,'abandoned',NULL,NULL);
/*!40000 ALTER TABLE `order_states` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `orders`
--
DROP TABLE IF EXISTS `orders`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `orders` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) DEFAULT NULL,
`item_total` decimal(10,2) DEFAULT NULL,
`total` decimal(10,2) DEFAULT NULL,
`order_state_id` int(11) DEFAULT NULL,
`position` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_orders_on_id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=48 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `orders`
--
LOCK TABLES `orders` WRITE;
/*!40000 ALTER TABLE `orders` DISABLE KEYS */;
INSERT INTO `orders` VALUES (1,NULL,NULL,NULL,1,NULL,'2012-08-19 16:43:32','2012-08-19 16:43:32'),(2,NULL,NULL,NULL,1,NULL,'2012-08-21 14:46:16','2012-08-21 14:46:16'),(3,NULL,NULL,NULL,1,NULL,'2012-08-21 14:46:16','2012-08-21 14:46:16'),(4,NULL,NULL,NULL,1,NULL,'2012-08-21 16:09:05','2012-08-21 16:09:05'),(5,NULL,NULL,NULL,1,NULL,'2012-08-21 16:09:05','2012-08-21 16:09:05'),(6,NULL,NULL,NULL,1,NULL,'2012-08-21 17:31:33','2012-08-21 17:31:33'),(7,NULL,NULL,NULL,1,NULL,'2012-08-21 17:31:33','2012-08-21 17:31:33'),(8,NULL,NULL,NULL,1,NULL,'2012-08-21 17:54:18','2012-08-21 17:54:18'),(9,NULL,NULL,NULL,1,NULL,'2012-08-21 17:54:18','2012-08-21 17:54:18'),(10,NULL,NULL,NULL,1,NULL,'2012-08-21 19:17:28','2012-08-21 19:17:28'),(11,NULL,NULL,NULL,1,NULL,'2012-08-21 19:17:28','2012-08-21 19:17:28'),(12,NULL,NULL,NULL,1,NULL,'2012-08-22 13:34:15','2012-08-22 13:34:15'),(13,NULL,NULL,NULL,1,NULL,'2012-08-22 13:34:15','2012-08-22 13:34:15'),(14,NULL,NULL,NULL,1,NULL,'2012-08-22 13:43:35','2012-08-22 13:43:35'),(15,NULL,NULL,NULL,1,NULL,'2012-08-22 13:43:35','2012-08-22 13:43:35'),(16,NULL,NULL,NULL,1,NULL,'2012-08-22 15:04:58','2012-08-22 15:04:58'),(17,NULL,NULL,NULL,1,NULL,'2012-08-22 15:04:58','2012-08-22 15:04:58'),(18,NULL,NULL,NULL,1,NULL,'2012-08-22 15:09:57','2012-08-22 15:09:57'),(19,NULL,NULL,NULL,1,NULL,'2012-08-22 15:09:57','2012-08-22 15:09:57'),(20,NULL,NULL,NULL,1,NULL,'2012-08-22 15:39:46','2012-08-22 15:39:46'),(21,NULL,NULL,NULL,1,NULL,'2012-08-22 15:39:46','2012-08-22 15:39:46'),(22,NULL,NULL,NULL,1,NULL,'2012-08-22 21:01:26','2012-08-22 21:01:26'),(23,NULL,NULL,NULL,1,NULL,'2012-08-22 21:01:26','2012-08-22 21:01:26'),(24,NULL,NULL,NULL,1,NULL,'2012-08-23 13:35:34','2012-08-23 13:35:34'),(25,NULL,NULL,NULL,1,NULL,'2012-08-23 13:35:34','2012-08-23 13:35:34'),(26,NULL,NULL,NULL,1,NULL,'2012-08-23 17:53:19','2012-08-23 17:53:19'),(27,NULL,NULL,NULL,1,NULL,'2012-08-23 17:53:19','2012-08-23 17:53:19'),(28,NULL,NULL,NULL,1,NULL,'2012-08-23 19:31:03','2012-08-23 19:31:03'),(29,NULL,NULL,NULL,1,NULL,'2012-08-23 19:31:03','2012-08-23 19:31:03'),(30,NULL,NULL,NULL,1,NULL,'2012-08-23 19:57:27','2012-08-23 19:57:27'),(31,NULL,NULL,NULL,1,NULL,'2012-08-23 19:57:27','2012-08-23 19:57:27'),(32,NULL,NULL,NULL,1,NULL,'2012-08-23 20:19:58','2012-08-23 20:19:58'),(33,NULL,NULL,NULL,1,NULL,'2012-08-23 20:19:58','2012-08-23 20:19:58'),(34,NULL,NULL,NULL,1,NULL,'2012-08-23 20:26:01','2012-08-23 20:26:01'),(35,NULL,NULL,NULL,1,NULL,'2012-08-23 20:26:01','2012-08-23 20:26:01'),(36,NULL,NULL,NULL,1,NULL,'2012-08-23 21:19:39','2012-08-23 21:19:39'),(37,NULL,NULL,NULL,1,NULL,'2012-08-23 21:19:39','2012-08-23 21:19:39'),(38,NULL,NULL,NULL,1,NULL,'2012-08-27 04:04:56','2012-08-27 04:04:56'),(39,NULL,NULL,NULL,1,NULL,'2012-08-27 04:04:56','2012-08-27 04:04:56'),(40,NULL,NULL,NULL,1,NULL,'2012-08-27 13:48:48','2012-08-27 13:48:48'),(41,NULL,NULL,NULL,1,NULL,'2012-08-27 13:48:48','2012-08-27 13:48:48'),(42,NULL,NULL,NULL,1,NULL,'2012-08-30 19:03:27','2012-08-30 19:03:27'),(43,NULL,NULL,NULL,1,NULL,'2012-08-30 19:03:27','2012-08-30 19:03:27'),(44,NULL,NULL,NULL,1,NULL,'2012-08-30 19:08:42','2012-08-30 19:08:42'),(45,NULL,NULL,NULL,1,NULL,'2012-08-30 19:08:42','2012-08-30 19:08:42'),(46,NULL,NULL,NULL,1,NULL,'2012-09-06 22:05:19','2012-09-06 22:05:19'),(47,NULL,NULL,NULL,1,NULL,'2012-09-06 22:05:19','2012-09-06 22:05:19');
/*!40000 ALTER TABLE `orders` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `page_part_translations`
--
DROP TABLE IF EXISTS `page_part_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `page_part_translations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`page_part_id` int(11) DEFAULT NULL,
`locale` varchar(255) DEFAULT NULL,
`body` text,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_page_part_translations_on_page_part_id` (`page_part_id`)
) ENGINE=MyISAM AUTO_INCREMENT=120 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `page_part_translations`
--
LOCK TABLES `page_part_translations` WRITE;
/*!40000 ALTER TABLE `page_part_translations` DISABLE KEYS */;
INSERT INTO `page_part_translations` VALUES (1,1,'en','','2011-05-20 17:07:58','2012-08-19 17:51:45'),(82,82,'en','<h1>Frequently Asked Questions</h1>\r\n<p>Listed below are answers to some of the most frequently asked questions by new residents. We hope you will find this information helpful.</p>\r\n<ul><li><a href=\"#utility-charges\">What are the payment and deposits for utility charges?</a>\r\n</li>\r\n<li><a href=\"#trash-collection\">What are the regulations about Trash Collection?</a>\r\n</li>\r\n<li><a href=\"#recycling-collection\">What are the regulations about Recycling Collection?</a>\r\n</li>\r\n<li><a href=\"/system/resources/2012/08/22/01_14_13_675_Dayton_Cross_Connection_Control_Program_Rev._6_25_12.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Cross Connection Control Program Rev. 6 25 12\">What is the Cross-Connection Control Program?</a>\r\n</li>\r\n<li><a href=\"#vehicle-tax\">What is the Vehicle License Tax in Dayton?</a>\r\n</li>\r\n<li><a href=\"#estate-tax\">What is the Real Estate Tax in Dayton?</a>\r\n</li>\r\n<li><a href=\"#open-fires\">I want to have a bonfire in my backyard. Are there any regulations about open fires? (Burn Permit)</a>\r\n</li>\r\n<li><a href=\"#dog-ordinance\">Are there any ordinances that I must follow with my dog?</a>\r\n</li>\r\n<li><a href=\"#snow-removal\">Is it mandatory that I clear my own property if it snow?</a>\r\n</li>\r\n<li><a href=\"#churches\">What churches are located in this area?</a>\r\n</li>\r\n<li><a href=\"#recreation\">Where is the nearest park?</a>\r\n</li>\r\n<li><a href=\"#child-care\">I am looking for child care while I go to work. Is there a trusted children\'s daycare in this area?</a>\r\n</li>\r\n<li><a href=\"#libraries\">Where can I find the nearest library in this area?</a>\r\n</li>\r\n</ul>\r\n<a name=\"utility-charges\"></a>\r\n<h2>Payment and Deposits for Utility Charges</h2>\r\n<p>Water, sewer and trash bills are to be paid at the Treasurer\'s Office in the Municipal Building, or checks may be mailed. A payment drop box is located near the drive-through window on the north side of the building for your convenience. Please make checks payable to: Town of Dayton, 125-B Eastview St., Dayton, VA 22821.</p>\r\n<p>A deposit of $75.00 is required for customers renting an apartment or house. The deposit is to be paid before water and sewer service is connected and will be refunded upon termination of service and full payment of the account. No deposit is required for customers owning or buying a home. The treasurer should be notified as soon as possible in case of water and sewer connection or disconnection.</p>\r\n<p>Water meters are read around the 20th day of each month. You should receive your water, sewer and trash bill within the first week of each month. All bills are to be paid on or before the 20th day following the billing date (if the due date falls on a Saturday, Sunday or holiday observ ed by the town, you will have through the next business day). If the Treasurer does not receive payment within 20 days of the billing date, a penalty shall be added to the bill equal to $1.50 or 10% of the amount of the bill, whichever is greater. If either the bill or penalty shall remain unpaid on the 25th day after the bill was issued, notices will be sent informing that water service will be disconnected in 14 days. Service shall be reinstated upon full payment of the current balance plus a $35.00 reconnection fee.</p>\r\n<p><a href=\"/about/town-departments/public-works#water-schedule\">Click here to view our current Water, Sewer and Trash Rate Schedule.</a>\r\n</p>\r\n<p><em>Water meters are not to be turned on or off except by authority of the Town Superintendent.</em>\r\n</p>\r\n<p><a href=\"#top\">Back to top\r\n</a>\r\n</p>\r\n<a name=\"trash-collection\"></a>\r\n<h2>Trash Collection</h2>\r\n<h3>Schedule for Collection:</h3>\r\n<p>Houshold trash is collected on Friday of each week.</p>\r\n<p>Recyclables are collected on Thursday of each week.</p>\r\n<p>All garden and lawn waste will be collected on Wednesday of each week, and must be placed in paper bio-degradable bags or tied in bundles not exceeding four feet in length and 50 pounds.</p>\r\n<h3>Placement of Containers:</h3>\r\n<p>Trash and recycling containers are provided by the town\'s refuse contractors, and are to be placed at the property line by the street or alley where they can be easily collected. Containers shall not be placed in the street or on the sidewalk in a manner whereby they will interfere with vehicular or pedestrian traffic.</p>\r\n<h3>Time of Placement:</h3>\r\n<p>All refuse must be placed out for collection by 7:00 a.m. on the day of collection, and no earlier than 5:00 p.m. on the afternoon preceding the collection day. Containers must be removed to the side or rear of the structure no later than 8:00 a.m. of the day following collection.</p>\r\n<h3>Fees:</h3>\r\n<p>The fee for the collection of refuse is $17.45 per month for residential collection and $19.50 for businesses. An additional fee is charged for all tires collected. Small tires--off rim are $2.00 each, large tires--off rim are $3.00 each, and tires on rim are $5.00 each. Charges for tires will be added to the water bill. Tires will be picked up on Heavy Trash Day (first Tuesday of each month).</p>\r\n<h3>Type of Refuse Collected:</h3>\r\n<p>The town will collect all garbage, rubbish and acceptable categories of refuse provided that the town superintendent shall have the right to determine what refuse is acceptable depending upon its quantity and type.</p>\r\n<h3>Refuse NOT Acceptable for Disposal:</h3>\r\n<ul><li>Dangerous materials or substance such as poisons, acids, caustics, infected materials, explosives, hot ashes or materials burning.</li>\r\n<li>Materials resulting from construction or demolition of buildings and structures or from the clearance of vacant or improved property in preparation for construction or occupancy. The town superintendent shall have the right to accept this refuse upon negotiating a fee for collection.</li>\r\n<li>All large and bulky materials, such as motor vehicles or parts of motor vehicles, tree trunks and stumps that may require special preparation and processing for disposal.</li>\r\n<li>Any materials, which create an unusually bad odor such as manure or rotten and unhatched eggs.</li>\r\n<li>Bodies of dead animals</li>\r\n</ul>\r\n<h3>Recycling Collection:</h3>\r\n<p>Recyclables are collected on Thursdays of each week. <a href=\"http://www.daytonva.us/documents/DaytonRecyclingProgram.pdf\" title=\"http://www.daytonva.us/documents/DaytonRecyclingProgram.pdf\" target=\"_blank\">Click here for details of the the Town\'s Recycling Program.</a>\r\n</p>\r\n<h3>Regulations Concerning Containers:</h3>\r\n<p>Trash containers are provided by the town\'s refuse contractor, Waste Management. Recycling bins are provided by the Town\'s recycling contractor, Green Earth. These containers must remain with the property if the occupant moves out; otherwise, a fee will be imposed to cover the cost of replacing the container.</p>\r\n<p>All trash set out for collection in the town must be placed in the trash containers provided by the town\'s contractors. In the event there is more trash than the container can hold, it must be placed in plastic trash bags of adequate strength to contain the contents, and placed beside the trash container. The Town will not be responsible for the collection of materials in plastic bags if such bags are torn or overloaded so as to prevent normal handling.</p>\r\n<p>All recycling materials set out for collection must be placed in recycling bins, and in a manner so as to prevent scattering of the contents prior to collection.</p>\r\n<p>Weeds, brush or trimmings will be collected only if tied in bundles not exceeding five feet in length and reasonable size to allow convenient handling.</p>\r\n<p>Town shall have the right to decline to collect any material set out for regular collection.</p>\r\n<p>No liquid shall be placed in the receptacle for collection.</p>\r\n<p>Hot ashes shall not be placed in any combustible container, or any container, which also contains combustible materials.</p>\r\n<h3>Heavy Trash Collection:</h3>\r\n<p>The first Tuesday of each month has been set aside for collection of appliances, furniture or materials in containers, which exceed the 50-pound limit. There is no additional charge for heavy trash collection other than for tires (see Fees).</p>\r\n<p><a href=\"#top\">Back to top\r\n</a>\r\n</p>\r\n<a name=\"vehicle-tax\"></a>\r\n<h2>Vehicle License Tax</h2>\r\n<p>The Town of Dayton imposes a vehicle license tax upon every motor vehicle, trailer and semitrailer regularly garaged, stored, or parked in the Town of Dayton, and used on the streets and highway of this town. The Town Vehicle License Fee expires on April 15th each year. The fee may be paid at the Town Treasurer\'s office. Persons moving to Dayton after April 15th are required to pay the fee immediately upon assuming residency unless they have paid a fee from anywhere in Virginia. Those purchasing vehicles have a grace period of 10 days to pay the fee. Any change of vehicle ownership requires you contact the Treasurer\'s Office in order to transfer it to another vehicle. On October 1st, the vehicle license fee is one-half the cost, and on January 15th, it is one-third the cost.</p>\r\n<p><a href=\"#top\">Back to top\r\n</a>\r\n</p>\r\n<a name=\"estate-tax\"></a>\r\n<h2>Real Estate Taxes</h2>\r\n<p>The rate of tax on real estate in the Town of Dayton is $0.08 per $100.00 assessed value. Tax tickets are mailed out twice a year during the months of May and November and are due upon receipt of the bill. A 5% penalty is added after June 5th and December 5th. Tax payments can be made at the Treasurer\'s Office or by mail.</p>\r\n<p><a href=\"#top\">Back to top\r\n</a>\r\n</p>\r\n<a name=\"open-fires\"></a>\r\n<h2>Open Fires</h2>\r\n<p>No open fires shall be kindled or maintained before 4:00 p.m. or within 50 feet of any building; nor shall any open fire be left attended. See Dayton Town Code on Fire Prevention\r\n\r\n. Also, a <a href=\"http://www.rockinghamcountyva.gov/search.aspx?criteria=burn+permit\" title=\"http://www.rockinghamcountyva.gov/search.aspx?criteria=burn+permit\" target=\"_blank\">Burn Permit\r\n</a> is required from Rockingham County for open fires in the Town of Dayton. </p>\r\n<p><a href=\"#top\">Back to top\r\n</a>\r\n</p>\r\n<a name=\"dog-ordinance\"></a>\r\n<h2>Dog Ordinance</h2>\r\n<p>It shall be unlawful for the owner of any dog to allow the same to go upon the private property of another person or to run at large upon the streets of the town. Any person found guilty of violating this ordinance shall be guilty of a Class 3 misdemeanor, and a fine of not more than $500 shall be imposed.</p>\r\n<p><a href=\"#top\">Back to top\r\n</a>\r\n</p>\r\n<a name=\"snow-removal\"></a>\r\n<h2>Snow Removal</h2>\r\n<p>Town Ordinance 2-64 requires that all persons occupying, owning or having charge of any property within the town shall be required to remove the snow from the entire sidewalk in front of such property, within six daylight hours after the snow has ceased to fall. Failure to comply with these requirements will result in a fine of $5.00 for each offense, and the town superintendent may have the snow cleaned off at the expense of the owner or tenant.</p>\r\n<p><a href=\"#top\">Back to top\r\n</a>\r\n</p>\r\n<a name=\"churches\"></a>\r\n<h2>Churches</h2>\r\n<ul><li>Christ Gospel Church: 290 Eastview Street</li>\r\n<li>Dayton Church of the Brethren: 202 Main Street</li>\r\n<li>Dayton Mennonite Church: 4887 John Wayland Highway</li>\r\n<li>Dayton United Methodist Church: 215 Ashby Street</li>\r\n<li>Shepherd of the Valley Lutheran Church: 229 Main Street</li>\r\n<li>Valley Friends Meeting: 363 High Street</li>\r\n</ul>\r\n<p><a href=\"#top\">Back to top\r\n</a>\r\n</p>\r\n<a name=\"recreation\"></a>\r\n<h2>Recreation</h2>\r\n<p>The Town of Dayton provides three parks for the community: </p>\r\n<p>Cooks Creek Park: 230 Bowman Road</p>\r\n<p>Phibbs Park: Located on the corner of Thompson Street & West View Street at the Dayton United Methodist Church.</p>\r\n<p>Sunset Park: 145 Sunset Drive</p>\r\n<p>Shelters may be reserved at any of these parks for a fee of $10.00 (no fee for non-profit organizations). Reservations may be made by calling the Municipal Building at 879-2241.</p>\r\n<p>Rockingham County Department of Parks and Recreation sponsors various recreational activities for all ages. For information, call 564-3160.</p>\r\n<p><a href=\"#top\">Back to top\r\n</a>\r\n</p>\r\n<a name=\"child-care\"></a>\r\n<h2>Child Care</h2>\r\n<p>The Little Treasurers Child Care Center (children 6 weeks - 12 years) is located at 202 Main Street, Dayton. For information call 879-2010.</p>\r\n<p><a href=\"#top\">Back to top\r\n</a>\r\n</p>\r\n<a name=\"libraries\"></a>\r\n<h2>Libraries</h2>\r\n<p>The main branch of the Massanutten Regional Library is located in Harrisonburg at 174 South Main St. For information, call 434-4475 or visit their website at <a href=\"http://www.mrlib.org/Home.aspx\" title=\"http://www.mrlib.org/Home.aspx\" target=\"_blank\">www.mrlib.org</a>. </p>\r\n<p>The North River Library (a branch of the Massanutten Regional Library) is located at 118 Mt. Crawford Ave. in Bridgewater. For information, call 828-4492 or visit the main branch’s website listed above.</p>\r\n<p><a href=\"#top\">Back to top\r\n</a>\r\n</p>','2012-08-19 18:12:03','2012-08-23 14:35:26'),(83,83,'en','<p>{{ content_holder_118 }}</p>','2012-08-19 18:12:03','2012-08-22 19:09:59'),(84,84,'en','<h1>Links</h1>\r\n<h2>Local Businesses</h2>\r\n<div class=\"pdf\">\r\n<p><a href=\"/system/resources/2012/08/23/21_53_51_304_Dayton_Businesses.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Businesses\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<a href=\"/system/resources/2012/08/23/21_53_51_304_Dayton_Businesses.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Businesses\" target=\"_blank\">(open PDF) Local Businesses - Directory with links to websites</a>\r\n</p>\r\n</div>\r\n<div style=\"clear:both\"></div>\r\n<h2>Local Schools</h2>\r\n<ul><li><a href=\"http://www.rockingham.k12.va.us/\" title=\"http://www.rockingham.k12.va.us/\" target=\"_blank\">Rockingham County Public Schools</a>\r\n</li>\r\n<li><a href=\"http://blogs.rockingham.k12.va.us/jwes/\" title=\"http://blogs.rockingham.k12.va.us/jwes/\" target=\"_blank\">John Wayland Elementary School</a>\r\n</li>\r\n<li><a href=\"http://www.rockingham.k12.va.us/WSPMS/wspms.html\" title=\"http://www.rockingham.k12.va.us/WSPMS/wspms.html\" target=\"_blank\">Wilbur Pence Middle School</a>\r\n</li>\r\n<li><a href=\"http://www.rockingham.k12.va.us/TAHS/tahs.html\" title=\"http://www.rockingham.k12.va.us/TAHS/tahs.html\" target=\"_blank\">Turner Ashby High School</a>\r\n</li>\r\n<li><a href=\"http://blogs.rockingham.k12.va.us/dlc/\" title=\"http://blogs.rockingham.k12.va.us/dlc/\" target=\"_blank\">Dayton Learning Center</a>\r\n</li>\r\n<li><a href=\"http://www.rockingham.k12.va.us/mtc/MTC.html\" title=\"http://www.rockingham.k12.va.us/mtc/MTC.html\" target=\"_blank\">Massanutten Technical Center</a>\r\n</li>\r\n</ul>\r\n<h2>Local Organizations </h2>\r\n<ul><li><a href=\"http://abcdayton.com/\" title=\"http://abcdayton.com/\" target=\"_blank\">ABCDayton (Arts & Business Connection) </a>\r\n</li>\r\n<li><a href=\"http://www.artisanscourtyard.org/\" title=\"http://www.artisanscourtyard.org/\" target=\"_blank\">Artisans Courtyard of Dayton</a>\r\n</li>\r\n<li><a href=\"http://www.legion.org/\" title=\"http://www.legion.org/\" target=\"_blank\">Dayton American Legion</a>\r\n</li>\r\n<li><a href=\"http://www.heritagecenter.com/Fort%20Harrison/fortharrison.html\" title=\"http://www.heritagecenter.com/Fort%20Harrison/fortharrison.html\" target=\"_blank\">Fort Harrison, Inc. (Daniel Harrison House) </a>\r\n</li>\r\n<li><a href=\"http://www.heritagecenter.com/\" title=\"http://www.heritagecenter.com/\" target=\"_blank\">Harrisonburg-Rockingham Historical Society Heritage Museum</a>\r\n</li>\r\n<li><a href=\"http://www.mrlib.org/Home.aspx\" title=\"http://www.mrlib.org/Home.aspx\" target=\"_blank\">Massanutten Regional Library</a>\r\n</li>\r\n<li><a href=\"http://www.mrlib.org/LocationsHours/NorthRiverLibrary.aspx\" title=\"http://www.mrlib.org/LocationsHours/NorthRiverLibrary.aspx\" target=\"_blank\">North River Library</a>\r\n</li>\r\n</ul>\r\n<p><a href=\"http://www.hrchamber.org/\" title=\"http://www.hrchamber.org/\" target=\"_blank\">Harrisonburg-Rockingham Chamber of Commerce</a>\r\n</p>\r\n<p><a href=\"http://www.rockinghamcountyva.gov/\" title=\"http://www.rockinghamcountyva.gov/\" target=\"_blank\">Rockingham County</a>\r\n</p>\r\n<ul><li><a href=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=122\" title=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=122\" target=\"_blank\">Burn Permits</a>\r\n</li>\r\n<li><a href=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=106\" title=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=106\" target=\"_blank\">Landfill</a>\r\n</li>\r\n<li><a href=\"http://rockingham.gisbrowser.com/home.cfm\" title=\"http://rockingham.gisbrowser.com/home.cfm\" target=\"_blank\">Geographic Information System (GIS)</a>\r\n</li>\r\n</ul>\r\n<p><a href=\"http://www.visitshenandoah.org/Home.aspx\" title=\"http://www.visitshenandoah.org/Home.aspx\" target=\"_blank\">Shenandoah Valley Travel Guide</a>\r\n</p>\r\n<p><a href=\"http://www.rhspca.org/\" title=\"http://www.rhspca.org/\" target=\"_blank\">SPCA</a>\r\n</p>\r\n<p><a href=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=69\" title=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=69\" target=\"_blank\">Voter Registration and Information</a> </p>','2012-08-19 18:12:21','2012-08-23 17:58:36'),(85,85,'en','<p>{{ content_holder_118 }}</p>','2012-08-19 18:12:21','2012-08-22 19:10:16'),(86,86,'en','<h1>Downloads</h1>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_17_30_218_Business_License_Application_Regular_2012.pdf?iframe=true&width=1000&height=1200\" title=\"Business License Application Regular 2012\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_218_Business_License_Application_Regular_2012.pdf?iframe=true&width=1000&height=1200\" title=\"Business License Application Regular 2012\">(open PDF) Business License Application (Regular)</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_192_Business_License_Application_Contractors_2012.pdf?iframe=true&width=1000&height=1200\" title=\"Business License Application Contractors 2012\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_192_Business_License_Application_Contractors_2012.pdf?iframe=true&width=1000&height=1200\" title=\"Business License Application Contractors 2012\" target=\"_blank\">(open PDF) Business License Application (Contractors)</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_13_07_157_Autumn_Celebration_Vendor_Application_and_Info.pdf?iframe=true&width=1000&height=1200\" title=\"Autumn Celebration Vendor Application And Info\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_13_07_157_Autumn_Celebration_Vendor_Application_and_Info.pdf?iframe=true&width=1000&height=1200\" title=\"Autumn Celebration Vendor Application And Info\" target=\"_blank\">(open PDF) Dayton Autumn Celebration Vendor Application</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_261_Dayton_Charter_and_Code_of_Ordinances.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Charter And Code Of Ordinances\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_261_Dayton_Charter_and_Code_of_Ordinances.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Charter And Code Of Ordinances\" target=\"_blank\">(open PDF) Dayton Charter and Code of Ordinances</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_236_Comprehensive_Plan_2007_Website.pdf?iframe=true&width=1000&height=1200\" title=\"Comprehensive Plan 2007 Website\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_236_Comprehensive_Plan_2007_Website.pdf?iframe=true&width=1000&height=1200\" title=\"Comprehensive Plan 2007 Website\" target=\"_blank\">(open PDF) Dayton Comprehensive Plan</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_11_26_855_Newsletters_2011_Combined.pdf?iframe=true&width=1000&height=1200\" title=\"Newsletters 2011 Combined\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_11_26_855_Newsletters_2011_Combined.pdf?iframe=true&width=1000&height=1200\" title=\"Newsletters 2011 Combined\" target=\"_blank\">(open PDF) Dayton Discovery Newsletters 2011 (Listings)</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_11_39_292_Newsletters_2012_Combined.pdf?iframe=true&width=1000&height=1200\" title=\"Newsletters 2012 Combined\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_11_39_292_Newsletters_2012_Combined.pdf?iframe=true&width=1000&height=1200\" title=\"Newsletters 2012 Combined\" target=\"_blank\">(open PDF) Dayton Discovery Newsletters 2012 (Listings)\r\n</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_356_Economic_Development_Study_May_2012.pdf?iframe=true&width=1000&height=1200\" title=\"Economic Development Study May 2012\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_356_Economic_Development_Study_May_2012.pdf?iframe=true&width=1000&height=1200\" title=\"Economic Development Study May 2012\" target=\"_blank\">(open PDF) Economic Development Study</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_441_Employment_Application.pdf?iframe=true&width=1000&height=1200\" title=\"Employment Application\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_441_Employment_Application.pdf?iframe=true&width=1000&height=1200\" title=\"Employment Application\" target=\"_blank\">open PDF) Employment Application</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_462_Home_Occupation_Permit_Application.pdf?iframe=true&width=1000&height=1200\" title=\"Home Occupation Permit Application\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_462_Home_Occupation_Permit_Application.pdf?iframe=true&width=1000&height=1200\" title=\"Home Occupation Permit Application\" target=\"_blank\">(open PDF) Home Occupation Permit Application</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_482_Meals_Tax_Report_Form.pdf?iframe=true&width=1000&height=1200\" title=\"Meals Tax Report Form\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_482_Meals_Tax_Report_Form.pdf?iframe=true&width=1000&height=1200\" title=\"Meals Tax Report Form\" target=\"_blank\">(open PDF) Meals Tax Form</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_506_Water_Quality_Report.pdf?iframe=true&width=1000&height=1200\" title=\"Water Quality Report\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_506_Water_Quality_Report.pdf?iframe=true&width=1000&height=1200\" title=\"Water Quality Report\" target=\"_blank\">(open PDF) Water Quality Report</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_15_13_961_Zoning_Permit_Application.pdf?iframe=true&width=1000&height=1200\" title=\"Zoning Permit Application\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_15_13_961_Zoning_Permit_Application.pdf?iframe=true&width=1000&height=1200\" title=\"Zoning Permit Application\" target=\"_blank\">(open PDF) Zoning Permit Application</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n</div>','2012-08-19 18:12:43','2012-08-22 19:02:19'),(87,87,'en','<p>{{ content_holder_118 }}</p>','2012-08-19 18:12:43','2012-08-22 19:10:37'),(2,2,'en','','2011-05-20 17:07:58','2012-08-19 17:21:51'),(3,3,'en','<h2>Sorry, there was a problem...</h2>\r\n<p>The page you requested was not found.</p>\r\n<p><a href=\"/\">Return to the home page</a>\r\n</p>','2011-05-20 17:07:58','2011-11-28 19:37:52'),(90,90,'en','<h1>The History of Dayton, VA</h1>\r\n<p>The Town of Dayton is one of the oldest settled communities in Rockingham County, and is the County\'s second oldest incorporated town. The Dayton area was first settled in the mid 1740s, when because of the fertile land and abundance of fresh spring water, settlers located along Cook\'s Creek. </p>\r\n<p>Daniel Harrison (c. 1702-1770) came into the Shenandoah Valley from Delaware in 1737 with his entire family. After settling initially in what is now the northeastern part of Rockingham County, Daniel Harrison moved in 1745 to the area of Cook\'s Creek and about 1748 built his stone house on a rise above the Creek. </p>\r\n<p>The village grew as farming families who traced their roots to England, Scotland and Ireland arrived. By the 1780s, Mennonite families began settling in this lush, fertile valley and added much to the cultural make-up of Dayton. </p>\r\n<p>Another family living near Harrison was that of Daniel Rife. Rife had a log cabin in the area of the present college building and the original name given to the town was his: Rifetown or Rifesville. A post office under the latter name was established July 24, 1832. However, the following year on March 6, 1833, the Virginia Legislature passed an act providing that a tract of land of not more than thirty-five acres, the property of Daniel Rife and others, be established as a town by the name of Dayton. Just why the town was renamed has never been determined. Jonathan Dayton, who ratified the Constitution in New Jersey in 1787, went west and bought or traded land with the Indians along the Ohio River. The city named after him in Ohio is, of course, large and well-known. No direct connection is known between this small town in Virginia and Jonathan Dayton or the city in Ohio. </p>\r\n<p>Dayton with its twenty-six houses was incorporated May 20, 1852, soon after the completion of the Warm Spring-Harrisonburg Turnpike. Dayton was incorporated again in March 1880 because of continued growth. The town government was enlarged from a Mayor and trustees to a Mayor and Council, and a Town Sergeant and Clerk were appointed. </p>\r\n<p>The town prospered, although it was seriously threatened during the Civil War. In 1864, one of Union General Sheridan\'s officers was killed by a Confederate scout between Dayton and Harrisonburg. Sheridan, as a reprisal, ordered all structures within five miles burned. Lt. Col. Thomas F. Wildes of the 116th Ohio had been ordered to guard the grist mills against smuggling to Confederate troops. When Wildes received the order to burn the town, he delayed execution and sent a messenger to General Sheridan, pleading with him and telling of the kindness of the people of Dayton. Meanwhile, the Dayton residents removed their possessions to the fields. Dense smoke rising from burning farmhouses and barns could be seen. Just before Dayton homes were to be torched, the countermanding order arrived. </p>\r\n<p>Dayton was a cultural center for many years. In 1878, the publishing firm, first established by Joseph Funk in Singers Glen, was moved to Dayton by his grandsons. The Ruebush-Kieffer Printing and Publishing Company was the largest publisher in Virginia at the turn of the century, specializing in music. </p>\r\n<p>The Shenandoah College and Conservatory of Music (now Shenandoah University) was organized in 1875 under the leadership of Rev. A.P. Funkhouser. This institution was a major factor in the life of Dayton until 1960 when it moved to Winchester. College Street earned its name from the school and many of the buildings along this avenue served as part of the campus. </p>\r\n<p><img src=\"/system/images/BAhbBlsHOgZmSSI2MjAxMi8wOC8yMi8xOV81Nl8wNV82MDBfaGlzdG9yeV9pbmZhbnRyeV9iYW5kLmpwZwY6BkVU/history_infantry_band.jpg\" title=\"Infantry Band\" style=\"float:left; padding: 0px 15px 15px 0px; margin: 0px;\" alt=\" rel=\" width=\"189\" height=\"146\" class=\"add-caption\" /><em>At left, the 116th Infantry Band appears in formation in France. The band was organized at Shenandoah College under the direction of Prof. W. H. Ruebush and served from the Mexican border to Europe. In addition to playing their instruments, members provided first-aid and carried stretchers. Photo courtesy <a href=\"http://www.heritagecenter.com\" title=\"http://www.heritagecenter.com\" target=\"_blank\">Harrisonburg- Rockingham Historical Society Heritage Museum.</a>\r\n</em>\r\n</p>\r\n<p>The Dayton of today still bears many signs of its rich past and history. For those who call the Shenandoah Valley and Dayton home, as well as those who come to visit, there is much in the present and future to be proud of, as well. </p>\r\n<p>The real beauty of the town is its people. Dayton is a blend of families who can trace their ancestors to a time when this community was just a stop on the Warm Spring Turnpike to those who have in recent years brought cultural richness of their own to the town. </p>\r\n<a name=\"walking\"></a>\r\n<h1>Walking Tour of Dayton</h1>\r\n<p>From a brochure of the <a href=\"http://www.heritagecenter.com/\" title=\"http://www.heritagecenter.com/\" target=\"_blank\">Harrisonburg- Rockingham Historical Society Heritage Museum</a>, download a map of Dayton:<img src=\"/system/images/BAhbBlsHOgZmSSItMjAxMi8wOC8yMi8yMF8wMV8wN180NTVfd2Fsa2luZ190b3VyLmpwZwY6BkVU/walking_tour.jpg\" title=\"walking_tour\" alt=\"walking_tour\" rel=\"225x255\" width=\"152\" height=\"117\" class=\"add-caption\" style=\"float:right;\" /></p>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_09_33_217_Map_of_Dayton.pdf?iframe=true&width=1000&height=1200\" title=\"Map Of Dayton\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Map of Dayton\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" />\r\n</a>\r\n<p><a href=\"/system/resources/2012/08/22/01_09_33_217_Map_of_Dayton.pdf?iframe=true&width=1000&height=1200\" title=\"Map Of Dayton\" target=\"_blank\"></a>\r\n<a href=\"/system/resources/2012/08/22/01_09_33_217_Map_of_Dayton.pdf?iframe=true&width=1000&height=1200\" title=\"Map Of Dayton\" target=\"_blank\">(open PDF) Map Of Dayton</a>\r\n</p>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n<p>Dayton is one of the most distinctive of several small towns lining the Harrisonburg - Warm Springs Turnpike. The Initial settlement goes back to about 1745 when Daniel Harrison moved to this area, probably building his stone house about 1749. By the time of the Revolution a road was constructed through the Harrison property. With an increased demand for iron and the growth of Miller\'s Iron Works at Mossy Creek, several miles south of the Harrison\'s\' house, the road was extended increasing the travel through the small community. In 1828, Daniel Rife began to sell lots along the then main road, now College Street. In 1831-32, the present Main Street was opened as part of the Harrisonburg-Warm Springs Turnpike. A post office, Rifesville, was established in 1832. On March 6, 1833, an Act of the Virginia Legislature established the town of Dayton. The town prospered, although it was seriously threatened by the Civil War. In 1878, a publishing firm, first established in Singers Glen by Joseph Funk, was moved to Dayton by Funk\'s grandsons, Ephraim Reubush and Aldine Kieffer. They Specialized in Shaped note music and by the turn-of the-century were the largest music publishing house in Virginia. From 1875 until 1960, Shenandoah College and Conservatory of Music was located in Dayton, further farming and poultry center with many Old Order Mennonites living in the area. New sections have sprung up in the west, but the older part of town is largely unchanged. Throughout the quiet streets some very picturesque and richly decorated buildings can be found. </p>\r\n<p>Directions for the Walking Tour of Dayton begin at the Shenandoah Valley Folk Art and Heritage Center, located at 382 High Street. The Heritage Center offers exhibits relating to the history and folk life of the Shenandoah Valley. Parking is available at the museum.<strong> It may be helpful to view a Map of Dayton while you read. </strong>\r\n</p>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_09_33_217_Map_of_Dayton.pdf?iframe=true&width=1000&height=1200\" title=\"Map Of Dayton\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Map of Dayton\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" />\r\n</a>\r\n<p><a href=\"/system/resources/2012/08/22/01_09_33_217_Map_of_Dayton.pdf?iframe=true&width=1000&height=1200\" title=\"Map Of Dayton\" target=\"_blank\"></a>\r\n<a href=\"/system/resources/2012/08/22/01_09_33_217_Map_of_Dayton.pdf?iframe=true&width=1000&height=1200\" title=\"Map Of Dayton\" target=\"_blank\">(open PDF) Map Of Dayton</a>\r\n</p>\r\n</div>\r\n<h3>FROM THE HERITAGE CENTER PARKING LOT, MAKE A RIGHT ON HIGH ST., THEN MAKE THE FIRST RIGHT ON TO BOWMAN RD. </h3>\r\n<p><strong>1.  215 Bowman Road (Cromer-Trumbo House) </strong>\r\n<br /> The Cromer-Trumbo House and Property now houses the Harrisonburg Rockingham Historical Society/Heritage Center Built about 1840 of brick, this is one of a cluster of early brick houses built at the north end of town. The rear ell has a log core which predates the brick portion. The small house in front served as a shoe repair shop for many years. </p>\r\n<p> Across the meadow is the Daniel Harrison House, a 1749 stone structure open as a house museum. This strongly built house served as a place of refuge for residents of the area fleeing from the marauding Indians during the 1750\'s and 1760\'s. It is a national and Virginia registered historic landmark. </p>\r\n<h3>FOLLOW BOWMAN RD. TO COLLEGE ST. (Rt. 701 on the map).  MAKE A RIGHT ONTO COLLEGE ST. </h3>\r\n<p><strong>2.  377 College Street (Boyers House) </strong>\r\n<br />This mid-19th century structure is one of the few surviving log houses in Dayton and certainly is the best preserved. It is probably typical of domestic building in Dayton at this time. </p>\r\n<p><strong>3.  363 College Street (Dr. Elmer U. Hoenshal House)</strong>\r\n<br />The \"Bird Cage House\" was built by a Shenandoah College president in 1902. This picturesque cottage design is one of the finest examples of the Queen Anne style in Dayton. This house has a wrap-around porch, gingerbread trim, gables, and metal spires. </p>\r\n<p><strong>4.  355 College Street (Shenandoah College Building) </strong>\r\n<br />Currently serving as an apartment building, this 1930 Colonial Revival structure was built to serve as the College\'s administration building.</p>\r\n<p><img src=\"/system/images/BAhbBlsHOgZmSSIvMjAxMi8wOC8yMi8yMF8wNF8zNF85MzJfY29sbGVnZV9zdHJlZXQuanBnBjoGRVQ/college_street.jpg\" title=\"college_street\" alt=\"college_street\" rel=\"225x255\" width=\"206\" height=\"154\" style=\"float:left; margin:0px;\" /></p>\r\n<div style=\"clear:both;\"></div>\r\n<br />\r\n<p><strong>5.  340 College Street (pictured above) </strong>\r\n<br />Across the street is Howe Memorial Hall, the oldest building constructed by the college in 1899-1901. It is an excellent example of the Italianate-Gothic style used for many turn-of-the-century collegiate buildings. The construction includes heavy dark, castle like cornerstone and slit windows. </p>\r\n<p><strong>6.  325 College Street </strong>\r\n<br />The Kieffer Memorial Gymnasium and Auditorium of 1930 was also constructed in the Colonial Revival Style. The construction includes dark brick and stucco cornice. </p>\r\n<p><strong>7.  315 and 305 College Street (J. H. Ruebush and Professor J. H. Hall Houses) </strong>\r\n<br />These two Victorian homes built by Shenandoah College faculty in 1904 and 1898 respectively are very stylish structures built at the height of Dayton\'s fame as a musical center. Professor Hall was also involved with the Ruebush Kieffer Company for many years, and James Ruebush served as a head of the Music Department and late as a president of the Shenandoah College. Take special note on house 315 of the stained glass windows, border, star pattern, the rail on roof ridges, and the stone window sills. </p>\r\n<h3>CONTINUE DOWN COLLEGE ST. TO MILL ST.  MAKE A LEFT ONTO MILL ST., FOLLOWING IT TO MAIN ST. (Business Rt. 42 on the map). </h3>\r\n<p><strong>8.  Corner of Mill Street and Main Street (Cannon and Markers) </strong>\r\n<br />On this corner sits a World War I German artillery piece and memorial placards. The cannon was the largest field piece brought back from Europe by the United States Government after WWI. The cannon was given to Dayton in honor of it being the smallest town that sent a complete regimental band to Europe during the war. It was restored in 1990 and a marker was dedicated to area veterans of all wars. </p>\r\n<p>On the memorial is one of the few markers in the South dedicated to a Union Army officer, Lt. Col. Thomas R. Wildes of the 116th Ohio. In 1864, one of Sheridan\'s engineers was killed by a Confederate scout. As a reprisal, Sheridan ordered the burning of the town of Dayton. While citizens moved their household goods from their homes into the fields, Wildes sent a messenger to Sheridan pleading their cause. Just before the homes were torched, the countermanding order arrived. </p>\r\n<h3>PROCEED SOUTH DOWN MAIN ST. </h3>\r\n<p><strong>9.  229 Main Street (Shepherd of the Valley Lutheran Church)</strong>\r\n<br />Formerly the Dayton United Brethren Church, this 1904 Gothic Revival Church is a major landmark on Dayton\'s commercial triangle. It was built after a 1903 fire burned the original church. Like many buildings in this area, the Eustler Brothers of Grottoes were the contractors and the brick was made and laid by the Shrum Brothers of Dayton. The church has a fine example of a four manual Moller Pipe Organ, from circa 1928. </p>\r\n<h3>CROSS MAIN ST. AND CONTINUE SOUTH ON MAIN ST. </h3>\r\n<p><strong>10.  250 Main Street (William H. Carpenter\' Cash and Trade)</strong>\r\n<br />On your left, next to the Post Office, is one of Dayton\'s finest examples of a late 19th century commercial building. It has a frame structure with a high fake front and elaborate cornice. This 1888 store retains its original porch. </p>\r\n<p><strong>11. 222 and 218 Main Street (the Thomas and Samuel Shrum Houses) </strong>\r\n<br />The triangle houses lining the east side of Main Street are Dayton\'s early brick structures dating to the mid-19th century. They survived the early 20th century fires that destroyed much in the center area of Dayton. </p>\r\n<p><strong>12.  150 Main Street (Coffman House)</strong>\r\n<br />This is the oldest house on the south end of Main Street, perhaps dating as early as 1820. It was initially part of the Coffman farm. In the early 20th century, the house was owned and enlarged by the Shrum family who operated a brickyard on adjoining lots. It is the only early 19th century Dayton house with a full basement containing a kitchen. </p>\r\n<h3>REMAINING ON MAIN ST. (Business Rt. 42 on the map), CROSS MASON ST. </h3>\r\n<p><strong>13.  95 Main Street (Michael Hollar House)</strong>\r\n<br />This 1906 house is an excellent and large example of the Queen-Anne -inspired style in Dayton. Among the fine details are the stained glass windows. Johnson Burtner was the builder of this house. </p>\r\n<h3>RETURN ALONG MAIN ST. (Business Rt. 42 on the map). </h3>\r\n<p><strong>14.  175 Main Street (Aldine Kieffer House)</strong>\r\n<br />Dating to the 1860\'s this brick structure with a richly decorated porch was owned by Aldine Kieffer, one of the founders of Ruebush-Kieffer Company, and probably the best known for the local group of song writers.</p>\r\n<p><strong>15.  201 Main Street (George W. Hedrick House)</strong>\r\n<br />This is one of the largest and most stylish Victorian houses dating to the 1870\'s in Dayton. A prominent local businessman G. W. Hedrick owned a prosperous buggy factory in Dayton. </p>\r\n<p><strong>16.  213 Main Street (Specialty Harness Company)</strong>\r\n<br />A large well-lighted structure, it was built a year after the 1911 town fire. It is an excellent example of early 20th Century factory architecture. </p>\r\n<h3>FOLLOW THE LEFT FORK OF THE TRIANGLE ONTO COLLEGE ST. (Rt. 701 on the map). </h3>\r\n<p><strong>17.  255 College Street (Ruebush-Kieffer Company)</strong>\r\n<br />The second of Ruebush-Kieffer Co.\'s printing offices in Dayton, this building has been altered very little since its construction and still houses a printing firm. The Ruebush Kieffer Company was one of the largest and most successful music printing houses in the south specializing in the preservation of the character-note form of musical instruction. </p>\r\n<h3>MAKE A LEFT ON TO CHERRY LN., CONTINUING PAST THREE STREETS TO EASTVIEW ST.  MAKE A RIGHT ONTO EASTVIEW ST. </h3>\r\n<p><strong>18.  285 and 275 Eastview Street </strong>\r\n<br />Along this street one can see typical early 20th Century Dayton homes. The first, 265 East View, was built about 1891 by the developer of this area, George W. Hedrick, for his own use. (He was also responsible for 201 Main Street-- see above.) The second, 275 East View Street, the Staugger House, dates to about 1910. </p>\r\n<h3>PROCEED TO THE BID OF EASTVIEW ST. TO MILL ST.  MAKE A RIGHT ONTO MILL ST. </h3>\r\n<p><strong>19.  290 Mill Street (Dayton Elementary and High School) </strong>\r\n<br />Now the Dayton Learning Center, the elementary and high schools were located there from 1914-1956. It remained and elementary school until 1989. </p>\r\n<p>Charles M. Robinson of Richmond was the architect of this building. He is responsible for a number of schools in Harrisonburg and Rockingham County, including the initial plans for what is now James Madison University. This Colonial Revival structure used the Corinthian order with a very fine cornice. It was one of the earliest of the brick consolidated schools in Rockingham County. The exterior has been restored. </p>\r\n<h3>CONTINUE DOWN MILL ST. TO THE HIGH ST. INTERSECTION </h3>\r\n<p><strong>20.  190 Mill Street</strong>\r\n<br />Johnson Burtner was the builder of this 1889 home. The corner lot shows to advantage his elaborate gable screens with arched sawn trim and wooden finials. </p>\r\n<h3>MAKE A LEFT ONTO HIGH ST. </h3>\r\n<p><strong>21.  322 High Street (Johnson Burtner House) </strong>\r\n<br />This 1895 Victorian home was the work of the local contractor, Johnson Burtner, and displays very fine woodwork on the elaborate front porch and gable decoration. </p>\r\n<p><strong>22.  340 High Street (C.A. Funkhouser House) </strong>\r\n<br />With its bay windows and a turret-style porch, this is one of the most stylish houses in Dayton. A large Palladian window pierces the front and a variation of this Palladian motif with leaded diamond panes embellishes the south side. </p>\r\n<p><strong>23. 363 High Street (Former Dayton Presbyterian Church) </strong>\r\n<br />Built around 1902 with Gothic revival detailing, this church has some very fine stained glass windows. </p>\r\n<h3>PROCEED DOWN HIGH ST. TO RETURN TO THE HERITAGE CENTER. </h3>','2012-08-19 18:36:31','2012-08-22 17:37:41'),(91,91,'en','<h4>The History of Dayton</h4>\r\n<br /> <ul><br /> <li> <a href=\"#top\">History</a> </li>\r\n<br /> <li> <a href=\"#walking\">A Walking Tour of Dayton</a> </li>\r\n<br /> </ul>','2012-08-19 18:36:31','2012-08-19 22:54:34'),(92,92,'en','','2012-08-19 18:36:57','2012-08-21 19:35:22'),(93,93,'en','<p>{{ content_holder_115 }}</p>','2012-08-19 18:36:57','2012-08-19 19:43:01'),(94,94,'en','<h1>Town of Dayton Government</h1>\r\n<a name=\"mayor-council\"></a>\r\n<h2>Mayor and Council</h2>\r\n<p>The Dayton Town Council invites you to attend its meetings held in the Council Chambers (north entrance adjacent to the drive-thru window) at the Dayton Municipal Building, 125 Eastview Street, on the second Monday of each month at 7:00 P.M. (unless otherwise announced). Called Council meetings and committee meetings are also open to the public and are posted at the Municipal Building and on the Town’s website as they are scheduled; Public Hearings are also advertised in The Daily News-Record.</p>\r\n<p>Elections for Council Members are held every two years. Term of office for the Mayor is two years, and four years for Council Members. Elections for Mayor and Council are held on Election Day, the first Tuesday in November (see <strong><a href=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=69\" title=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=69\" target=\"_blank\">Rockingham County Voter Registrar for additional information</a>\r\n</strong>). The voting precinct for Town of Dayton residents is located in the Council Chambers at the Dayton Municipal Building for all elections.  </p>\r\n<p><strong>Mayor</strong>:  <a href=\"mailto:[email protected]\" title=\"[email protected]\">Charles T. Long</a> (term ends 12/31/12)</p>\r\n<p><strong>Vice Mayor</strong>: <a href=\"mailto:[email protected]\" title=\"mailto:[email protected]\">Jeffrey S. McNeal</a>\r\n (term ends 12/31/14)</p>\r\n<p><strong><a href=\"/system/resources/2012/08/22/01_17_30_154_Budget_FY2013.pdf?iframe=true&width=1000&height=1200\" title=\"Budget Fy2013\"></a>Council Members</strong>: <br /><a href=\"mailto:[email protected]\" title=\"[email protected]\">Laura J. Daily</a> (term ends 12/31/12)<br /> <a href=\"mailto:[email protected]\" title=\"[email protected]\">Steven J. Dean</a> (term ends 12/31/14)<br /> <a href=\"mailto:[email protected]\" title=\"[email protected]\">Josh O. Lyons</a> (term ends 12/31/12) <br /> <a href=\"mailto:[email protected]\" title=\"[email protected]\">Gregory L. Trissel</a> (term ends 12/31/12)<br /> <a href=\"mailto:[email protected]\" title=\"mailto:[email protected]\">Jerry R. Critcher</a> (term ends 12/31/12) </p>\r\n<hr />\r\n<a name=\"council-committees\"></a>\r\n<h2>Council Committees</h2>\r\n<br />\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/18_42_12_945_Council_Committees_2012.pdf?iframe=true&width=1000&height=1200\" title=\"Council Committees 2012\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" title=\"Council Committees 2012\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" /></a>\r\n<a href=\"/system/resources/2012/08/22/18_42_12_945_Council_Committees_2012.pdf?iframe=true&width=1000&height=1200\" title=\"Council Committees 2012\" target=\"_blank\">(open PDF) Council Committees</a>\r\n<div style=\"clear:both\"></div>\r\n<hr />\r\n<a name=\"council-minutes\"></a>\r\n<h2>Council Minutes</h2>\r\n<p>2011 Council Minutes (Combined)</p>\r\n<a href=\"/system/resources/2012/08/22/18_44_19_111_Council_Minutes_2011_Combined.pdf?iframe=true&width=1000&height=1200\" title=\"Council Minutes 2011 Combined\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" /></a>\r\n<a href=\"/system/resources/2012/08/22/18_44_19_111_Council_Minutes_2011_Combined.pdf?iframe=true&width=1000&height=1200\" title=\"Council Minutes 2011 Combined\" target=\"_blank\">(open PDF) 2011 Council Minutes (Combined)</a>\r\n<div style=\"clear:both\"></div>\r\n<p>2012 Council Minutes (Separately)</p>\r\n<div style=\"padding-left:50px;\">\r\n<a href=\"/system/resources/2012/08/22/18_44_34_43_DTC_Minutes_1_9_12.pdf?iframe=true&width=1000&height=1200\" title=\"Dtc Minutes 1 9 12\" target=\"_blank\">DTC Minutes (1-9-12)</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/18_44_34_179_DTC_Minutes_2_6_12_Called_Mtg.pdf?iframe=true&width=1000&height=1200\" title=\"Dtc Minutes 2 6 12 Called Mtg\" target=\"_blank\">DTC Minutes (2-6-12)</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/18_44_34_200_DTC_Minutes_2_13_12.pdf?iframe=true&width=1000&height=1200\" title=\"Dtc Minutes 2 13 12\" target=\"_blank\">DTC Minutes (2-13-12)</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/18_44_34_221_DTC_Minutes_3_12_12.pdf?iframe=true&width=1000&height=1200\" title=\"Dtc Minutes 3 12 12\" target=\"_blank\">DTC Minutes (3-12-12)</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/18_44_34_243_DTC_Minutes_4_9_12.pdf?iframe=true&width=1000&height=1200\" title=\"Dtc Minutes 4 9 12\" target=\"_blank\">DTC Minutes (4-9-12)</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/18_44_34_262_DTC_Minutes_5_14_12.pdf?iframe=true&width=1000&height=1200\" title=\"Dtc Minutes 5 14 12\" target=\"_blank\">DTC Minutes (5-14-12)</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/18_44_34_280_DTC_Minutes_6_11_12.pdf?iframe=true&width=1000&height=1200\" title=\"Dtc Minutes 6 11 12\" target=\"_blank\">DTC Minutes (6-11-12)</a>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n<hr />\r\n<a name=\"code-of-ordinances\"></a>\r\n<h2>Charter and Code of Ordinances | Budget</h2>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/18_44_59_754_Town_of_Dayton_Charter_and_Code_of_Ordinances.pdf?iframe=true&width=1000&height=1200\" title=\"Town Of Dayton Charter And Code Of Ordinances\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/18_44_59_754_Town_of_Dayton_Charter_and_Code_of_Ordinances.pdf?iframe=true&width=1000&height=1200\" title=\"Town Of Dayton Charter And Code Of Ordinances\" target=\"_blank\">(open PDF) Town of Dayton Charter and Code of Ordinances</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_154_Budget_FY2013.pdf?iframe=true&width=1000&height=1200\" class=\"page_link pdf\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_154_Budget_FY2013.pdf?iframe=true&width=1000&height=1200\" class=\"page_link pdf\" target=\"_blank\">(open PDF) Budget 2012-2013</a>\r\n</p>\r\n<hr />\r\n</div>\r\n<div style=\"clear:both\"></div>\r\n<a name=\"dayton-planning-commision\"></a>\r\n<h2>Dayton Planning Commission</h2>\r\n<p>Planning Commission Members are appointed by the Council and serve a four year term.  The Planning Commission invites you to attend their meetings held in the Council Chambers (north entrance adjacent to the drive-thru window) at the Dayton Municipal Building, 125 Eastview Street, on the third Thursday of the month at 7:00 P.M. (unless otherwise announced). </p>\r\n<p><strong> Chairman</strong>:  Gerald R. Lehman (term ends 06/30/14) <br /> Rebecca S. Eberly (term ends 06/30/11) <br /> Kehris A. Snead (term ends 06/30/12) <br /> Gary W. Bowman, Jr. (term ends 06/30/13)<br /> Council Representative:  Charles T. Long</p>\r\n<div class=\"pdf\">\r\n<p><a href=\"/system/resources/2012/08/22/19_36_46_813_Planning_Commission_Minutes_2011_Combined.pdf?iframe=true&width=1000&height=1200\" title=\"Planning Commission Minutes 2011 Combined\" target=\"_blank\"><img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<a href=\"/system/resources/2012/08/22/19_36_46_813_Planning_Commission_Minutes_2011_Combined.pdf?iframe=true&width=1000&height=1200\" title=\"Planning Commission Minutes 2011 Combined\" target=\"_blank\">(open PDF Planning Commission Minutes 2011 (Combined)</a>\r\n</p>\r\n<div style=\"clear:both;\"></div>\r\n<p><a href=\"/system/resources/2012/08/22/19_36_32_537_DPC_Mintues_2012_Combined.pdf?iframe=true&width=1000&height=1200\" title=\"Dpc Mintues 2012 Combined\" target=\"_blank\"><img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<a href=\"/system/resources/2012/08/22/19_36_32_537_DPC_Mintues_2012_Combined.pdf?iframe=true&width=1000&height=1200\" title=\"Dpc Mintues 2012 Combined\" target=\"_blank\">(open PDF) Planning Commission Minutes 2012 (Combined)</a>\r\n</p>\r\n<div style=\"clear:both;\"></div>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_236_Comprehensive_Plan_2007_Website.pdf?iframe=true&width=1000&height=1200\" title=\"Comprehensive Plan 2007 Website\" target=\"_blank\"><img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_236_Comprehensive_Plan_2007_Website.pdf?iframe=true&width=1000&height=1200\" title=\"Comprehensive Plan 2007 Website\" target=\"_blank\">(open PDF) Dayton Comprehensive Plan</a>\r\n</p>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n<hr />\r\n<a name=\"zoning-boa\"></a>\r\n<h2>Board of Zoning Appeals</h2>\r\n<p>Members of the Board of Zoning Appeals are appointed by the Circuit Court of Rockingham County and serve a five year term. </p>\r\n<p><strong>Chairman</strong>: Roger C. Shoemaker <br /> Timothy C. Bocock<br /> Kitty H. Purcell<br /> Byron \"Dan\" Lee <br /> Kehris A. Snead<br />For more information on Zoning, see <strong><a href=\"/system/resources/2012/08/22/01_15_13_855_Town_Code_Title_9_Zoning.pdf?iframe=true&width=1000&height=1200\" title=\"Town Code Title 9 Zoning\">Town Code, Title 9, Zoning</a>\r\n</strong>\r\n<a href=\"/system/resources/2012/08/22/01_15_13_855_Town_Code_Title_9_Zoning.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Town Code Title 9 Zoning\">\r\n</a> (open PDF in web browser)</p>\r\n<hr />\r\n<a name=\"foia-requests\"></a>\r\n<h2>Freedom of Information Acts (FOIA) Requests</h2>\r\n<h3>Rights Responsibilities</h3>\r\n<p>The Virginia Freedom of Information Act (FOIA), located at § 2.2-3700 et seq. of the Code of Virginia, guarantees citizens of the Commonwealth and representatives of the media access to public records held by public bodies, public officials, and public employees.</p>\r\n<p>A public record is any writing or recording, regardless of whether it is a paper record, an electronic file, an audio or video recording, or any other format, that is prepared or owned by, or in the possession of a public body or its officers, employees or agents in the transaction of public business. All public records are presumed to be open, and may only be withheld if a specific, statutory exemption applies.</p>\r\n<p>The policy of FOIA states that the purpose of FOIA is to promote an increased awareness by all persons of governmental activities. In furthering this policy, FOIA requires that the law be interpreted liberally, in favor of access, and that any exemption allowing public records to be withheld must be interpreted narrowly.</p>\r\n\r\n<h3>Your FOIA Rights</h3>\r\n<ul><li>You have the right to request to inspect or receive copies of public records, or both.</li>\r\n<li>You have the right to request that any charges for the requested records be estimated in advance.</li>\r\n<li>If you believe that your FOIA rights have been violated, you may file a petition in district or circuit court to compel compliance with FOIA.</li>\r\n</ul>\r\n\r\n<h3>Making a Request for Records from the Town of Dayton</h3>\r\n<ul><li>You may request records by in person, U.S. Mail, fax, e-mail or over the phone. FOIA does not require that your request be in writing, nor do you need to specifically state that you are requesting records under FOIA.</li>\r\n<li>FOIA requests should be made by calling the Dayton Town Office at 540-879-2241 or by email at <a href=\"mailto:[email protected]\" title=\"[email protected]\">[email protected]</a>\r\n</li>\r\n<li>It may be helpful to both you and the person receiving your request to put your request in writing. This allows you to create a record of your request. It also gives us a clear statement of what records you are requesting, so that there is no misunderstanding over a verbal request. However, we cannot refuse to respond to your FOIA request if you elect to not put it in writing.</li>\r\n<li>Requests must identify the records you are seeking with \"reasonable specificity.\" It does not refer to or limit the volume or number of records that you are requesting; instead, it requires that you be specific enough in order to identify and locate the records that you are seeking, and also to determine an estimated cost to you for providing the requested information.</li>\r\n<li>Requests must ask for existing records or documents. FOIA allows you the right to inspect or copy records; however, it does not require the Town of Dayton to create a record that does not exist, nor does it apply to a situation where you are asking general questions about the the Town of Dayton.</li>\r\n<li>You may choose to receive records in printed form or electronically (via email or computer disk) in any existing format used by the Town of Dayton in the regular course of business.</li>\r\n</ul>','2012-08-19 18:37:17','2012-08-22 18:24:49'),(95,95,'en','<p>{{ content_holder_117 }}</p>','2012-08-19 18:37:17','2012-08-22 17:31:48'),(96,96,'en','<h1>Community Resources</h1>\r\n<a name=\"dayton-discovery\"></a>\r\n<h2>Dayton Discovery Newsletter</h2>\r\n<ul><li>Current and Past Newsletters (open each PDF in web browser).</li>\r\n<div class=\"pdf\">\r\n<div style=\"padding-left: 50px;\">\r\n<a href=\"/system/resources/2012/08/22/01_12_27_191_Summer_2012.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Summer 2012\">Summer Newsletter 2012</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/01_12_27_175_Spring_2012.pdf?iframe=true&width=1000&height=1200\" title=\"Spring 2012\" target=\"_blank\">Spring Newsletter 2012</a>\r\n\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/01_12_06_104_Winter_2011.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Winter 2011\">Winter Newsletter 2011</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/01_12_06_50_Fall_2011.pdf?iframe=true&width=1000&height=1200\" title=\"Fall 2011\" target=\"_blank\">Fall Newsletter 2011</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/01_12_06_85_Summer_2011.pdf?iframe=true&width=1000&height=1200\" title=\"Summer 2011\" target=\"_blank\">Summer Newsletter 2011</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/01_12_06_67_Spring_2011.pdf?iframe=true&width=1000&height=1200\" title=\"Spring 2011\" target=\"_blank\">Spring Newsletter 2011</a>\r\n<br />\r\n</div>\r\n</div>\r\n<li><span class=\"green\">Go Green—Go Paperless!</span> Receive the Dayton Discovery Newsletter electronically by sending an email to <a href=\"mailto:[email protected]\" title=\"[email protected]\">[email protected]</a>. In order to avoid duplication of mailing a paper copy, please include your name and service address along with the email address of where you would like the newsletter sent. Your email address will be kept private and only used for Town purposes.</li>\r\n<li>For newsletter comments and suggestions, email <a href=\"mailto:[email protected]\" title=\"[email protected]\">[email protected]</a> or call the Dayton Town Office at 540-879-2241.</li>\r\n</ul>\r\n<a name=\"dog-ordinance\"></a>\r\n<h3>Dog Ordinance </h3>\r\n<p>Town Code §1-68, states that no person shall permit any fowl or dog to be at large within the corporate limits of the town. For the purposes of this section, an animal may be deemed to be at large whenever it is off the property of its owner or custodian, and not under its owner’s or custodian’s immediate control. Any owner or custodian violating this section shall be guilty of a class 3 misdemeanor and a fine of not more than $500. The animal warden of Rockingham County is authorized to enforce all dog laws applicable within the town. </p>\r\n<a name=\"emergency\"></a>\r\n<h2>Emergency Awareness and Preparedness</h2>\r\n\r\n<p><a href=\"http://www.em.rockinghames.org\" title=\"http://www.em.rockinghames.org\" target=\"_blank\">Rockingham County Emergency Management</a>\r\n</p>\r\n<p><a href=\"http://www.vaemergency.gov\" title=\"http://www.vaemergency.gov\" target=\"_blank\">Virginia Department of Emergency Management</a>\r\n</p>\r\n<p><a href=\"http://www.fema.gov\" title=\"http://www.fema.gov\" target=\"_blank\">Federal Emergency Management Administration (FEMA)</a>\r\n</p>\r\n<p><a href=\"http://www.redcross.org\" title=\"http://www.redcross.org\" target=\"_blank\">American Red Cross</a>\r\n</p>\r\n<a name=\"employment\"></a>\r\n<h2>Employment Applications </h2>\r\n<p>The policy of the Town of Dayton is to provide equal employment opportunity without regard to race, color, religion, sex, age, marital status, veteran status, national origin, disability or political affiliation</p>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_441_Employment_Application.pdf?iframe=true&width=1000&height=1200\" title=\"Employment Application\">Employment applications</a> may be printed here or obtained at the Dayton Municipal Building during normal business hours. To request an application by mail, please call the Dayton Town Office at 540-879-2241. (open PDF in web browser)</p>\r\n<a name=\"open-fires\"></a>\r\n<h2>Open Fires</h2>\r\n<p>In accordance with the Town Code §1-58, no open fires shall be kindled or maintained before 4:00 p.m. or within 50 feet of any structure; nor shall any open fire be left unattended. In addition, it is <strong>required</strong> that a <a href=\"http://www.rockinghamcountyva.gov/search.aspx?criteria=burn+permit\" title=\"http://www.rockinghamcountyva.gov/search.aspx?criteria=burn+permit\" target=\"_blank\">burn permit</a> be obtained from Rockingham County for all open fires. </p>\r\n<a name=\"snow-removal\"></a>\r\n<h2>Snow Removal</h2>\r\n<p>Town Code §2-64 requires that all persons occupying, owning or having charge of any property within the town shall be required to remove the snow from the entire sidewalk in front of such property, within six daylight hours after the snow has ceased to fall. Failure to comply with these requirements will result in a fine of $5.00 for each offense, and the Town Superintendent may have the snow cleaned off at the expense of the owner or tenant. </p>\r\n<a name=\"miss-utility\"></a>\r\n<h2>Miss Utility of Virginia</h2>\r\n<p><a href=\"http://va811.com/\" title=\"http://va811.com/\" target=\"_blank\">\"Call Before You Dig\"</a>\r\n</p>\r\n<a name=\"dayton-map\"></a>\r\n<h2>Map of Dayton</h2>\r\n<div class=\"pdf\">\r\n<img src=\"/system/images/BAhbBlsHOgZmSSItMjAxMi8wOC8yMi8yMF8wMV8wN180NTVfd2Fsa2luZ190b3VyLmpwZwY6BkVU/walking_tour.jpg\" title=\"walking_tour\" alt=\"walking_tour\" rel=\"225x255\" width=\"152\" height=\"117\" class=\"add-caption\" style=\"float:right;\" />\r\n<a href=\"/system/resources/2012/08/22/01_09_33_217_Map_of_Dayton.pdf?iframe=true&width=1000&height=1200\" title=\"Map Of Dayton\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Map of Dayton\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" />\r\n</a>\r\n<p><a href=\"/system/resources/2012/08/22/01_09_33_217_Map_of_Dayton.pdf?iframe=true&width=1000&height=1200\" title=\"Map Of Dayton\" target=\"_blank\"></a>\r\n<a href=\"/system/resources/2012/08/22/01_09_33_217_Map_of_Dayton.pdf?iframe=true&width=1000&height=1200\" title=\"Map Of Dayton\" target=\"_blank\">(open PDF) Map Of Dayton</a>\r\n</p>\r\n</div>','2012-08-19 18:37:38','2012-08-22 20:37:19'),(97,97,'en','<p>{{ content_holder_116 }} \r\n</p>','2012-08-19 18:37:38','2012-08-20 02:53:13'),(98,98,'en','<h1>ADMINISTRATIVE</h1>\r\n<br />\r\n<h3>Town Superintendent | John D. Crim</h3>\r\n<p>Phone: (540) 879-2241, ext. 307 / Fax: (540) 879-2243</p>\r\n<p>125-B Eastview Street<br />Dayton, VA 22821</p>\r\n<p>Email: <a href=\"mailto:[email protected]\" title=\"[email protected]\">[email protected]</a> </p>','2012-08-19 18:38:05','2012-08-21 19:38:06'),(99,99,'en','<p>{{ content_holder_115 }}</p>','2012-08-19 18:38:05','2012-08-19 20:26:49'),(100,100,'en','<h1>Park Locations in Dayton, VA</h1>\r\n<p><img src=\"/system/images/BAhbBlsHOgZmSSI1MjAxMi8wOC8yNy8xOF8wN181MF8yNTBfU3Vuc2V0X1Bhcmtfd2ViX3NpdGUuanBnBjoGRVQ/Sunset_Park_web_site.jpg\" title=\"Sunset-Park-web-site\" alt=\"Sunset-Park-web-site\" rel=\"225x255\" width=\"400\" height=\"160\" class=\"add-caption\" /></p>\r\n<div style=\"clear:both\"></div>\r\n<p><strong>The Town of Dayton provides three parks for the community.   </strong>\r\n</p>\r\n<ul><li><strong>Cooks Creek Park:  </strong>230 Bowman Road</li>\r\n<li><strong>Phibbs Park:</strong>  Located Dayton United Methodist Church, on the corner of Thompson and Westview streets</li>\r\n<li><strong>Sunset Park:</strong>  145 Sunset Drive</li>\r\n</ul>\r\n<br />\r\n<br />\r\n<a name=\"shelter-reservations\"></a>\r\n<h2>Shelter Reservations and Information</h2>\r\n<br />\r\n<ul>\r\n<li>Shelters may be reserved at any of the Town parks for a fee of $10.00 (no fee for non-profit organizations).  Reservations may be made by calling the Dayton Municipal Building at 540-879-2241.</li>\r\n<li>Parks are open during daylight hours only.</li>\r\n<li>No alcoholic beverages or illegal drugs are allowed on park property.</li>\r\n<li>Dogs must be on a leash at all times.</li>\r\n<li>Doggie Waste Stations are available at Sunset and Cooks Creek parks for convenient pickup and disposal of pet waste.</li>\r\n<li>No loud music or noise—please be respectful of neighboring residents.</li>\r\n<li>Park restrooms are closed from fall until spring while the water is turned off to prevent frozen pipes.</li>\r\n</ul>\r\n\r\n<p>For information on sports and other recreational activities for all ages provided by the county, see <a href=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=304\" title=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=304\" target=\"_blank\">Rockingham County Recreation Department</a>. </p>','2012-08-19 18:38:20','2012-08-27 14:08:36'),(101,101,'en','<p>{{ content_holder_115 }}</p>','2012-08-19 18:38:20','2012-08-19 20:26:51'),(102,102,'en','<h1>POLICE DEPARTMENT</h1>\r\n<a name=\"dept-contact\"></a>\r\n<h3>Contact Information</h3>\r\n<p>125-A Eastview Street<br />Dayton, VA 22821</p>\r\n\r\n<h3>Need to speak with a police officer?\r\n</h3>\r\n<p><strong>EMERGENCY—CALL 911</strong>\r\n\r\nAll too often we are afraid to call 911 because we aren’t real sure that the situation requires an emergency response.  Don’t worry!  The emergency dispatchers will place your call on a priority list.  911 calls should be made for ANY situation that involves the safety or welfare of another.  Situations for 911 may include, but are not confined to:</p>\r\n<ul><li>Any act of violence</li>\r\n<li>A suspicious event or suspicious person.  </li>\r\n<li>Any medical emergency. </li>\r\n<li>Any road obstruction, such as broken water lines, power lines, or livestock in the road.</li>\r\n<li>A witnessed reckless driving event (try to get the tag!), or car crash.</li>\r\n</ul>\r\n\r\n<h3>NON-emergency calls pertaining to Dayton 540-879-2161</h3>\r\n<p>While Dayton provides police coverage 24 hours a day, 365 days a year, calling our office IS NOT the fastest way to reach a police officer when you need one right away.    Remember, for emergencies call 911.  If you simply have a question you can call 879-2161and speak with our administrative assistant, or leave a message with the individual officer’s voicemail. </p>\r\n<h3>Non-emergency calls 540-434-4436</h3>\r\n<p>You can call 434-4436 to have a dispatcher contact the on duty Dayton Police Officer if you feel your question needs immediate attention.  You may also use this number for dispatching our units to aggravations such as:</p>\r\n<ul><li>You’d like to ask a policeman a question, but don’t want to leave a message on their voicemail.</li>\r\n<li>Barking dogs</li>\r\n<li>Town Park bathrooms not being unlocked</li>\r\n<li>Loud music complaints or any other non-emergency situation.</li>\r\n</ul>\r\n<a name=\"police-chief\"></a>\r\n<h2>Chief of Police | Donald L. Conley</h2>\r\n<p>Phone: (540) 879-2161, ext. 320 / Fax: (540) 879-2824</p>\r\n<p>125-A Eastview Street<br />Dayton, VA 22821</p>\r\n<p>Email: <a href=\"mailto:[email protected]\" title=\"[email protected]\">[email protected]</a> </p>\r\n<p><img src=\"/system/images/BAhbBlsHOgZmSSItMjAxMi8wOC8yMi8yMF8xNl81MV83MTdfZGlua3lfY29ubGV5LmpwZwY6BkVU/dinky_conley.jpg\" title=\"dinky_conley\" alt=\"dinky_conley\" rel=\"225x255\" width=\"359\" height=\"242\" class=\"add-caption\" /></p>\r\n<p>\r\nChief Donald “Dinky” Conley graduated from Page County High School in 1981, and joined the U.S. Army’s 82nd Airborne. After an honorable discharge, he turned his attention to law enforcement. Like the best of ranking officers, Chief Conley began his career in patrol and worked his way to his present station. In 1987, Chief Conley joined the Massanutten Police Department, and in November of the same year, he became a deputy with the Greene County Sheriff’s Office.  After five years with Green County, he joined the Madison County Sheriff’s Office before joining the Dayton Police Department on July 1, 1998.   </p>\r\n<h2>Lieutenant | Daniel Hanlon</h2>\r\n<p>Lt. Daniel Hanlon began his law enforcement career with the Rockingham County Sheriff’s Office in 1998 where he served six months as a jailor before becoming a patrol deputy.  Lt. Hanlon joined the Rockingham County S.W.A.T. team in addition to his patrol assignment.  He also became a Department of Criminal Justice general instructor and specializes in teaching defensive tactics and firearms skills.  Lt. Hanlon joined the Dayton Police Department in 2001 as a patrolman, and has since added many more training certificates to his credentials.  Prior to becoming a policeman, Lt. Hanlon served with the United States Marine Corps during Desert Shield/Storm and achieved the rank of Sgt. before his honorable discharge in 1994.</p>\r\n<h2>Officer Aaron Will</h2>\r\n<p><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8yMF8xN18zMV84NzhfYWFyb25fd2lsbC5qcGcGOgZFVA/aaron_will.jpg\" title=\"aaron_will\" alt=\"aaron_will\" rel=\"225x255\" width=\"374\" height=\"267\" class=\"add-caption\" /></p>\r\n<p>Officer Aaron Will began his law enforcement career in May of 2004 with the Harrisonburg Police Department before joining the Dayton Police Department in May of 2006.  Officer Will holds a certificate in Administrative Justice from Blue Ridge Community College as well as multiple training courses, some of which include: Reed School of Interview and Interrogation, Basic Crime Scene Investigation, Highway Drug Interdiction, Basic Commercial Vehicle School, General Law Enforcement Instructor, Basic Gang Identification, Patrol Carbine Operator, Enhanced Active Shooter Course, Police Patrol Mountain Bike School, AR15/M4 Carbine Armorer School, and Child Safety Seat Technician.  Officer Will is also a member of the Virginia Gang Investigators Association and has twice received awards of excellence from Virginia MADD/ASAP – 2007/2008. Officer Will has enjoyed his involvement with department fundraisers for Special Olympics, University of Virginia Children’s Hospital, Christmas Giving Tree with Dayton Neighborhood Watch, and currently assists outside of patrol as an assistant grant writer/manager and Director of Dayton Operation Care.</p>\r\n<h2>Officer Phillip Cross</h2>\r\n<p><img src=\"/system/images/BAhbB1sHOgZmSSInMjAxMi8wOC8yNC8wMV8zM180N183ODJfUGhpbDAyLmpwZwY6BkVUWwg6BnA6CnRodW1iSSINMjI1eDI1NT4GOwZU/Phil02.jpg\" title=\"Phil02\" alt=\"Phil02\" rel=\"225x255\" width=\"356\" height=\"238\" class=\"add-caption\" /></p>\r\n<p>Officer Phillip Cross began his law enforcement career in 2005 when he went to work at the Middle River Regional Jail.  He next graduated from the Police Academy in 2006 and served with the Elkton Police Department until 2007 when he was hired by the Dayton Police Department.  Officer Cross is certified as an instructor for active shooter, radar/lidar, and Taser. Officer Phillip Cross has a Bachelors Degree in Biblical Studies through the International School of Ministry, and is currently an active member of the Potter’s House Worship Center.  Officer Cross has been part of three life changing missions’ trips to El Salvador, and has a Human Video Ministry through his church.</p>\r\n<h2>Officer David Moran</h2>\r\n<p><img src=\"/system/images/BAhbBlsHOgZmSSIsMjAxMi8wOC8yMi8yMF8xN181Ml85NjVfZGF2aWRfbW9yYW4uanBnBjoGRVQ/david_moran.jpg\" title=\"david_moran\" alt=\"david_moran\" rel=\"225x255\" width=\"356\" height=\"255\" class=\"add-caption\" /></p>\r\n<p>Officer David Moran is on his fifth year of service with the Dayton Police Department. He has prior experience in both Adult and Juvenile Corrections, and prior police experience with the Town of Grottoes. Officer Moran carries a number of certifications, some of which include: Crime Scene Investi-gations, Hostage Negotiations, Schools Resource Officer and Bike Certified. His personal hobbies include weight lifting, boxing and music.</p>\r\n<h2>Officer Reggie Dollar</h2>\r\n<p><img src=\"/system/images/BAhbBlsHOgZmSSIuMjAxMi8wOC8yMi8yMF8xOF8yMF8zODdfcmVnZ2llX2RvbGxhci5qcGcGOgZFVA/reggie_dollar.jpg\" title=\"reggie_dollar\" alt=\"reggie_dollar\" rel=\"225x255\" width=\"355\" height=\"254\" class=\"add-caption\" /></p>\r\n<p>Officer Reggie Dollar graduated from Southwest law enforcement academy in 1999. He worked at the Washington County, Virginia, Sheriff’s Office as a Deputy Sheriff in the patrol division and Sheriff’s tactical squad until relocating to Augusta County. Officer Dollar joined the Dayton Police Department in July 2010. He holds several training certification that help him provide professional service to the town.  Some of the training certificates held are Field Training Officer, Child Safety Seat Tech, Counterfeit and Money Laundering Investigation, and the Virginia HEAT (Help Eliminate Auto Theft) Program. Officer Dollar looks forward to serving the citizens of Dayton for years to come.</p>\r\n<h2>Officer Mandy Robles</h2>\r\n<p><img src=\"/system/images/BAhbBlsHOgZmSSItMjAxMi8wOC8yMi8yMF8xOF8zN182NDFfbWFuZHlfcm9ibGVzLmpwZwY6BkVU/mandy_robles.jpg\" title=\"mandy_robles\" alt=\"mandy_robles\" rel=\"225x255\" width=\"360\" height=\"256\" class=\"add-caption\" /></p>\r\n<p>Officer Mandy Robles graduated from the Central Shenandoah Criminal Justice Training Academy in 2010, and has served with the Massanutten Police Department before being hired with the Dayton Police Department in March of 2011. Officer Robles is certified as a Breath Alcohol Test Operator, as well as, a Basic Instructor. She has an Associate’s Degree in Criminal Justice with a minor in Computer Sciences. Prior to law enforcement, she was employed at South Eastern Physical Therapy in Virginia Beach, Virginia, where she was a Physical Therapy Technician for six years. However, in 2009, she decided to follow in her father’s footsteps and share his love for police work. Officer Robles enjoys all aspects of being a police officer, especially getting to know the community she serves and protects.</p>\r\n<h2>Administrative Assistant | Lorie Curry</h2>\r\n<p><img src=\"/system/images/BAhbBlsHOgZmSSIsMjAxMi8wOC8yMi8yMF8xOF81M182NzZfbG9yaWVfY3VycnkuanBnBjoGRVQ/lorie_curry.jpg\" title=\"lorie_curry\" alt=\"lorie_curry\" rel=\"225x255\" width=\"360\" height=\"257\" class=\"add-caption\" /></p>\r\n<p>Administrative Assistant Lorie Curry graduated from Broadway High School in 1991. Mrs. Curry worked for the Harrisonburg-Rockingham General District Courts, and ran a successful business prior to coming to work for the Town of Dayton in November of 2007. Mrs. Curry is also a Certified Technician with National Child Passenger Safety Certification Training Program.  </p>\r\n<a name=\"dayton-codes\"></a>\r\n<div>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_13_56_778_Security_Check_Form.pdf?iframe=true&width=1000&height=1200\" title=\"Security Check Form\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Security Check Form\" alt=\"Security Check Form\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_13_56_778_Security_Check_Form.pdf?iframe=true&width=1000&height=1200\" title=\"Security Check Form\" target=\"_blank\">(open PDF) Security Check Form</a> </p>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_13_56_738_Dayton_General_Criminal_Code.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton General Criminal Code\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Dayton General Criminal Code\" alt=\"Dayton General Criminal Code\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_13_56_738_Dayton_General_Criminal_Code.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton General Criminal Code\" target=\"_blank\">(open PDF) Dayton General Criminal Code</a> </p>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_13_56_759_Dayton_Traffic_Streets_Motor_Vehicle_License_Code.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Traffic, Streets & Motor Vehicle License Code\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Dayton Traffic, Streets & Motor Vehicle License Code\" alt=\"Dayton Traffic, Streets & Motor Vehicle License Code\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_13_56_759_Dayton_Traffic_Streets_Motor_Vehicle_License_Code.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Traffic, Streets & Motor Vehicle License Code\" target=\"_blank\">(open PDF) Dayton Traffic and Streets; Motor Vehicle License Code </a>\r\n</p>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n</div>\r\n','2012-08-19 18:38:35','2012-08-23 21:39:07'),(103,103,'en','<p>{{ content_holder_115 }}</p>','2012-08-19 18:38:35','2012-08-19 20:26:53'),(104,104,'en','<h1>PUBLIC WORKS</h1>\r\n\r\n<h2>Contact Information | Staff</h2>\r\n<p>125-B Eastview Street<br />Dayton, VA 22821<br />Phone: (540) 879-2241 | Fax: (540) 879-2243</p>\r\n<p><strong>Risk Management Coordinator:</strong> <a href=\"mailto:[email protected]\" title=\"[email protected]\">Brenda P. Stearn</a>\r\n</p>\r\n<p><strong>Water Operations:</strong> <a href=\"mailto:[email protected]\" title=\"[email protected]\">Lelan Siler</a>\r\n</p>\r\n<p><strong>Projects: </strong> <a href=\"mailto:[email protected]\" title=\"[email protected]\">Kevin M. Burgoon</a>\r\n</p>\r\n<p><strong>Streets:</strong> Conrad T. Eye, Russell D. Bailey </p>\r\n<h2>Water and Sewer</h2>\r\n\r\n<h3>Water and Sewer Deposit for New Customers</h3>\r\n<p>A deposit of $75.00 is required for customers renting an apartment or house.  The deposit is to be paid before water and sewer service is connected. Upon termination of water service, the deposit will be applied to the final billing and the difference will be billed or refunded to the customer.  No deposit is required for customers owning or buying a home.  The Treasurer’s Office is to be notified as soon as possible for water and sewer connection or disconnection. </p>\r\n<h3>Water and Sewer Connection Fees</h3>\r\n<p>Water and sewer connection fees must be paid before connection is made to the Town’s water and/or sewer system. Connection fees must be also be paid before a zoning permit is issued for new dwellings, which is required in order to obtain a building permit from Rockingham County. <strong>See Water and Sewer Connection Fees: </strong>\r\n</p>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_14_13_716_Water_Sewer_Connection_Fees.pdf?iframe=true&width=1000&height=1200\" title=\"Water & Sewer Connection Fees\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Water and Sewer Connection Fees\" alt=\"Water and Sewer Connection Fees\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" />\r\n</a>\r\n<p><a href=\"/system/resources/2012/08/22/01_14_13_716_Water_Sewer_Connection_Fees.pdf?iframe=true&width=1000&height=1200\" title=\"Water & Sewer Connection Fees\" target=\"_blank\">(open PDF) Water and Sewer Connection Fees</a>\r\n</p>\r\n</div>\r\n<a name=\"water-schedule\"></a>\r\n<div style=\"clear:both;\"></div>\r\n<table style=\"font-size: 12px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; \"><caption>WATER & SEWER RATE SCHEDULE Effective July 1, 2011 (no change for 2012)</caption>\r\n<tbody><tr class=\"alt\"><td>Water</td>\r\n<td>Monthly Rate</td>\r\n</tr>\r\n<tr><td>0 - 2,000 gallons</td>\r\n<td>$6.00 minimum</td>\r\n</tr>\r\n<tr class=\"alt\"><td>2,001 - 350,000 gallons</td>\r\n<td>$3.40 per 1,000 gallons</td>\r\n</tr>\r\n<tr><td>350,001 gallons and up</td>\r\n<td>$2.55 per 1,000 gallons</td>\r\n</tr>\r\n<tr class=\"alt\"><td>Sewer</td>\r\n<td>Monthly Rate</td>\r\n</tr>\r\n<tr><td>0 - 2,000 gallons</td>\r\n<td>$8.00 minimum</td>\r\n</tr>\r\n<tr class=\"alt\"><td>2,001 - 350,000 gallons</td>\r\n<td>$4.85 per 1,000 gallons</td>\r\n</tr>\r\n<tr><td>350,001 gallons and up</td>\r\n<td>$4.10 per 1,000 gallons</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>Minimum Monthly Charge for Water & Sewer - $14.00</p>\r\n<h3>Bill Payment, Penalties and Disconnection Policies </h3>\r\n<p>Water, sewer and trash bills are to be paid at the Treasurer\'s Office in the Dayton Municipal Building, or checks may be mailed.  A payment drop box is located near the drive-thru window on the north side of the building for your convenience.  </p>\r\n<p>Please make checks payable to: <strong>Town of Dayton, 125-B Eastview St., Dayton, VA 22821</strong>\r\n</p>\r\n<p>Water meters are read around the 20th day of each month.  Water, sewer and trash bills are mailed out within the first week of each month.  All bills are to be paid on or before the 20th day following the billing date (if the due date falls on a Saturday, Sunday or a <a href=\"/about/town-departments/treasurer\" title=\"Treasurer\">holiday observed by the Town</a>, a grace period is allowed through the next business day).  If payment is not received within 20 days of the billing date, a penalty shall be added to the bill equal to $1.50 or 10% of the amount of the bill, whichever is greater.  If either the bill or penalty shall remain unpaid on the 25th day after the billing date, notices will be sent informing that water service will be disconnected in 14 days.  Service shall be reinstated upon full payment of the current balance plus a $35.00 reconnection fee. <strong>Water meters are not to be turned on or off except by authority of the Town Superintendent.</strong>\r\n</p>\r\n<h3>Cross-Connection\r\n</h3>\r\n<p>TOWN OF DAYTON CODE OF ORDINANCES, TITLE 6. WATER AND SEWER, CHAPTER 2, CROSS-CONNECTION</p>\r\n<p><strong>§ 6-9. Incorporation of Waterworks Regulations.</strong>\r\n Article 3 of 12 VAC 5-590 enacted by the State Board of Health pursuant to § 32.1-170 of the Code of Virginia is hereby incorporated into this title. (See Code of Virginia, §15.1-854.) (Amended Month Day, 2007)\r\n</p>\r\n<p><strong>§ 6-9.1 Cross-Connection Control Program.</strong> The Town Superintendent shall adopt and implement a cross-connection control and backflow prevention program in accordance with § 12 VAC-5-590-600 (B.) (Added Month, Day, 2007.) Open PDF in web browser</p>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_14_13_675_Dayton_Cross_Connection_Control_Program_Rev._6_25_12.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Cross Connection Control Program Rev. 6 25 12\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Cross Connection Control Program\" alt=\"Cross Connection Control Program\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_14_13_675_Dayton_Cross_Connection_Control_Program_Rev._6_25_12.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Cross Connection Control Program Rev. 6 25 12\" target=\"_blank\">(open PDF) Cross-Connection Control Program</a>\r\n</p>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n<p><strong>§ 6-10. Discontinuance of Service.</strong> (a) The Town may deny or discontinue the water service to a consumer if a backflow prevention device is not installed. If it is found that any such device has been removed or bypassed or if a cross-connection exists on the premises, or if the pressure in the waterworks is lowered below 10 psi gauge, the Town shall take positive action to insure that the waterworks is adequately protected at all times. Water service to such premises shall not be restored until the deficiencies have been corrected or eliminated in accordance with Commonwealth of Virginia Waterworks Regulations and to the satisfaction of the Town. <a href=\"http://lis.virginia.gov/cgi-bin/legp604.exe?000+cod+15.2-2144\" title=\"http://lis.virginia.gov/cgi-bin/legp604.exe?000+cod+15.2-2144\" target=\"_blank\">(See Code of Virginia, §15.1-2144.)</a>\r\n</p>\r\n<p><strong>§ 6-11. Protection of Potable Water Supplies.</strong> The potable water made available on the properties served by the waterworks shall be protected from possible contamination or pollution by enforcement of this title. Any water outlet which could be used for potable or domestic purposes and is not supplied by the potable system must be labeled as “Water Unsafe for Drinking” in a conspicuous manner. (See Code of Virginia, § 15.1-854.)</p>\r\n<a name=\"water-quality\"></a>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_14_13_734_Water_Quality_Report.pdf?iframe=true&width=1000&height=1200\" title=\"Water Quality Report\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Water Quality Report\" alt=\"Water Quality Report\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_14_13_734_Water_Quality_Report.pdf?iframe=true&width=1000&height=1200\" title=\"Water Quality Report\" target=\"_blank\">(open PDF) Water Quality Report</a> </p>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_14_13_633_Dayton_Code_Title_6_Water_Sewer.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Code Title 6 Water & Sewer\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Town Code, Title 6, Water and Sewer Code\" alt=\"Town Code, Title 6, Water and Sewer Code\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_14_13_633_Dayton_Code_Title_6_Water_Sewer.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Code Title 6 Water & Sewer\" target=\"_blank\">(open PDF) Town Code, Title 6, Water and Sewer Code</a> </p>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_14_13_698_No_Wipes_in_the_Pipes.pdf?iframe=true&width=1000&height=1200\" title=\"No Wipes In The Pipes\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"No Wipes in the Pipes\" alt=\"No Wipes in the Pipes\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p> <a href=\"/system/resources/2012/08/22/01_14_13_698_No_Wipes_in_the_Pipes.pdf?iframe=true&width=1000&height=1200\" title=\"No Wipes In The Pipes\" target=\"_blank\">(open PDF) No Wipes in the Pipes</a>\r\n</p>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n<h2>Refuse Collection</h2>\r\n<p>(Trash, Recycling, Lawn Waste and Heavy / Large Items)</p>\r\n<table><caption>REFUSE COLLECTION FEES</caption>\r\n<tbody><tr class=\"alt\"><td>Residential</td>\r\n<td>$17.45 per month</td>\r\n</tr>\r\n<tr><td>Commercial</td>\r\n<td>$19.50 per month</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table><caption>MISCELLANEOUS FEES</caption>\r\n<tbody><tr class=\"alt\"><td>Tires - Small (off rim)</td>\r\n<td>$2.00 each</td>\r\n</tr>\r\n<tr><td>Tires - Large (off rim)</td>\r\n<td>$3.00 each</td>\r\n</tr>\r\n<tr class=\"alt\"><td>Tires (on rim)</td>\r\n<td>$5.00 each</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table><caption>REFUSE COLLECTION SCHEDULE</caption>\r\n<tbody><tr class=\"alt\"><td>Trash</td>\r\n<td>Fridays (weekly)</td>\r\n</tr>\r\n<tr><td>Recycling</td>\r\n<td>Thursdays (weekly)</td>\r\n</tr>\r\n<tr class=\"alt\"><td>Lawn Waste</td>\r\n<td>Wednesdays (weekly)</td>\r\n</tr>\r\n<tr><td>Heavy / Large Items</td>\r\n<td>First Tuesday (monthly)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3>Time of Placement:</h3>\r\n<p>All refuse must be placed out for collection by 7:00 a.m. on the day of collection, and no earlier than 4:00 p.m. on the day preceding collection day. Containers must be removed to the side or rear of the structure no later than 8:00 a.m. of the day following collection.</p>\r\n<h3>Holiday Collection:</h3>\r\n<p>See Dayton’s web site home page under “News” for holiday refuse collection schedules. Typically, during weeks with a holiday observed by each individual contractor, collection is moved forward one day (i.e. Recycling will be collected on Friday, and Trash will be collected on Saturday).</p>\r\n<h3>Refuse Containers: </h3>\r\n<p>Trash and recycling containers are provided by the Town. Containers shall not be placed in the street or on the sidewalk in a manner whereby they will interfere with vehicular or pedestrian traffic. These containers must remain with the property if the occupant moves out; otherwise, a fee will be imposed to cover the cost of replacement. Containers may be requested by calling the Dayton Public Works Department at 540-879-2241.</p>\r\n<a name=\"trash-collection\"></a>\r\n<h3>Trash Collection:</h3>\r\n<p>Trash is collected at curbside on Fridays of each week. All trash set out for collection must be placed in the trash containers provided by the Town’s trash contractor.  In the event there is more trash than the container can hold, it must be placed in plastic trash bags of adequate strength to contain the contents, and placed beside the trash container.  The Town will not be responsible for the collection of materials in plastic bags if such bags are torn or overloaded so as to prevent normal handling. Please call Dayton Public Works at 540-879-2241 for extra or replacement containers. </p>\r\n<h3>Type of Refuse Collected:</h3>\r\n<p>The Town will collect all garbage, rubbish and acceptable categories of refuse provided that the Town Superintendent shall have the right to determine what refuse is acceptable, depending upon its quantity and type, and shall have the right to decline to collect any material set out for regular collection.</p>\r\n<h3>Refuse NOT Acceptable for Regular Trash Collection: \r\n</h3>\r\n<ul><li>Dangerous materials or substance such as poisons, acids, caustics, infected materials, explosives, hot ashes or materials burning (hot ashes shall not be placed in any combustible container, or any container, which also contains combustible materials).</li>\r\n<li>Materials resulting from construction or demolition of buildings and structures or from the clearance of vacant or improved property in preparation for construction or occupancy. The Town Superintendent shall have the right to accept this refuse upon negotiating a fee for collection.</li>\r\n<li>All large and bulky materials, such as motor vehicles or parts of motor vehicles, tree trunks and stumps that may require special preparation and processing for disposal.</li>\r\n<li>Any materials, which create an unusually bad odor such as manure or rotten and unhatched eggs.</li>\r\n<li>Bodies of dead animals.</li>\r\n<li>No liquids shall be placed in containers for collection.</li>\r\n<li>Recycling Collection</li>\r\n<li>Recycling is collected at curbside on Thursdays of each week. Recycling bins are provided by the Town\'s recycling contractor.  All recycling materials set out for collection must be placed in the recycling bins, and in a manner so as to prevent scattering of the contents prior to collection. </li>\r\n</ul>\r\n<h3>Acceptable Materials for Recycling Collection: \r\n</h3>\r\n<p>The following materials are acceptable for recycling (all other items are to be placed in with household trash):</p>\r\n<ul><li>Plastic containers - all recycling codes (discard lids) - no plastic bags, plastic wrap or Styrofoam.</li>\r\n<li>Aluminum beverage cans & pie pans.</li>\r\n<li>Glass bottles and jars (clear, green & brown), non-shattering glass only - no windows, mirrors, picture frame glass, etc.</li>\r\n<li>Tin cans</li>\r\n<li>Paper (shredded also) - must be contained in a trash bag and put in the bin (separate from newspaper).</li>\r\n<li>Newspaper (no need to bag) - no phone books.</li>\r\n<li>Cardboard and paperboard (flatten) – must be no larger than the size of the bin when flattened and placed in the bin.</li>\r\n</ul>\r\n<h3>Yard Waste:</h3>\r\n<p>Yard Waste (i.e. grass, weeds, leaves, garden waste, small twigs, etc.) is collected on Wednesdays of each week by the Dayton Public Works Department. All yard waste must be placed in paper biodegradable bags only, and free of household trash, rocks, dirt or twigs larger than your finger. Yard waste placed in any other type of container will not be accepted. </p>\r\n<ul><li><strong>Tree Limbs/Bush Trimmings</strong> - must be tied in bundles not exceeding five feet in length and of reasonable size to allow convenient handling, with no limbs greater than six inches in diameter. Disposal of tree stumps, trunks or limbs larger than six inches in diameter is the responsibility of the property owner.</li>\r\n<li><strong>Fall Leaf Collection</strong> – the Town provides curbside leaf vacuum service during the month of November as time and weather permit (after this time, leaves must be bagged in paper biodegradable bags and will be picked up on Wednesdays). Leaves must be raked to the edge of the property line—do not put the leaves in the street or on top of graveled driveways. Ginkgo leaves or leaves with sticks, brush, rocks, gravels, nuts or other debris will not be vacuumed, as this may cause damage the vacuum equipment. </li>\r\n<li><strong>Christmas Trees</strong> - there is no scheduled time for Christmas tree collection—they will be picked up by Public Works as time and weather permit. </li>\r\n<li>If yard waste collection day falls on a <a href=\"/about/town-departments/treasurer\" title=\"Treasurer\">holiday observed by the Town</a>, collection will be the following day.</li>\r\n</ul>\r\n\r\n<h3>Heavy/Bulk Item Collection:</h3>\r\n<p>Heavy/bulk items are collected at curbside on the first Tuesday of each month by Dayton Public Works. There is no additional charge for heavy/bulk item collection, with the exception of tires (see Refuse Collection Fees). </p>\r\n<p><strong>The following items are acceptable for heavy/bulk item collection</strong>:</p>\r\n<ul><li>Appliances</li>\r\n<li>Furniture</li>\r\n<li>Electronics</li>\r\n<li>Bicycles</li>\r\n<li>Small lawn mowers (must remove gas & oil)</li>\r\n<li>Tires (fee imposed)</li>\r\n</ul>\r\n<p>If heavy/bulk item collection day falls on a <a href=\"/about/town-departments/treasurer\" title=\"Treasurer\">holiday observed by the Town</a>, collection will be the following day.</p>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_14_13_654_Dayton_Code_Title_7_Refuse.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Code Title 7 Refuse\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Dayton Code Title 7\" alt=\"Dayton Code Title 7\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_14_13_654_Dayton_Code_Title_7_Refuse.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Code Title 7 Refuse\" target=\"_blank\">(open PDF) Town Code, Title 7, Refuse (open PDF)</a>\r\n</p>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n<p><strong>Rockingham County Landfill</strong>\r\n<br />Town of Dayton residents may also dispose of refuse at the Rockingham County Landfill. For information, visit their website: <a href=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=106\" title=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=106\" target=\"_blank\">Rockingham County Landfill</a>. </p>\r\n','2012-08-19 18:38:49','2012-08-23 13:44:44'),(105,105,'en','<p>{{ content_holder_115 }}</p>','2012-08-19 18:38:49','2012-08-19 20:26:58'),(106,106,'en','<h1>Treasurer</h1>\r\n\r\n<h2>Town Treasurer | Justin S. Moyers</h2>\r\n<p>Phone: (540) 879-2241, ext. 306 / Fax: (540) 879-2243</p>\r\n<p>125-B Eastview Street<br />Dayton, VA 22821<br />Email: <a href=\"mailto:[email protected]\" title=\"[email protected]\">[email protected]</a>\r\n</p>\r\n<h3>Treasurer’s Office Staff</h3>\r\n<p>Deputy Treasurer/Zoning Administrator: <a href=\"mailto:[email protected]\" title=\"[email protected]\">Susan D. Smith</a> 540-879-2241, ext. 308</p>\r\n<p>Clerk: <a href=\"mailto:[email protected]\" title=\"[email protected]\">Wendy S. Papotnik</a> 540-879-2241, ext. 301</p>\r\n<p>Clerk: <a href=\"mailto:[email protected]\" title=\"[email protected]\">Deborah A. Eye </a> 879-2241, ext. 319</p>\r\n<h2>Business Hours and Holiday Closings</h2>\r\n<p>Office and Drive-Thru: Monday – Friday, 8:00 a.m. – 4:30 p.m.</p>\r\n<p>Municipal offices will be closed for the following holidays:</p>\r\n<table>\r\n<tbody><tr><td>New Year’s Eve</td>\r\n<td>Labor Day</td>\r\n</tr>\r\n<tr class=\"alt\"><td>New Years Day</td>\r\n<td>Veteran’s Day</td>\r\n</tr>\r\n<tr><td>Martin Luther King, Jr. Day</td>\r\n<td>Thanksgiving Day</td>\r\n</tr>\r\n<tr class=\"alt\"><td>President’s Day</td>\r\n<td>Day after Thanksgiving</td>\r\n</tr>\r\n<tr><td>Good Friday</td>\r\n<td>Christmas Eve</td>\r\n</tr>\r\n<tr class=\"alt\"><td>Memorial Day</td>\r\n<td>Christmas Day</td>\r\n</tr>\r\n<tr><td>Independence Day</td>\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p><em>(Note: Holidays falling on Saturday or Sunday will be observed on Friday before the holiday or Monday after the holiday respectively, unless otherwise announced by the Town).</em>\r\n</p>\r\n<div class=\"pdf\"><a href=\"/system/resources/2012/08/22/01_17_30_154_Budget_FY2013.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Budget Fy2013\">\r\n<img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" title=\"Budget 2012-2013\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" />\r\n</a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_154_Budget_FY2013.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Budget Fy2013\">(open PDF) Budget 2012-2013</a>\r\n</p>\r\n</div>\r\n<div style=\"clear:both\"></div>\r\n<h2>Business License Tax</h2>\r\n<p>As provided in the <strong><a href=\"/system/resources/2012/08/22/01_14_38_600_Town_Code_Title_3_3.1_License_Taxes.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Town Code Title 3, 3.1 License Taxes\">Town Code, Title 3.1, License Taxes</a>\r\n</strong>, it is required that any person engaged in a business within the Town must procure a business license. This includes all phases of business, profession, trade, occupation or rentals conducted in the Town. Cost of the license varies according to type of occupation and amount of gross receipts in a given year. (open PDF of section above in web browser)</p>\r\n<p>To avoid a penalty fee, please observe the following:</p>\r\n<ul>\r\n<li>A business license is required to operate a business in Dayton. </li>\r\n<li>Current business license holders will be mailed a business license application in January of each year.</li>\r\n<li>All existing businesses must renew their license by March 1st of each year.</li>\r\n<li>Any new business must obtain a license before proceeding with establishing their enterprise.</li>\r\n</ul>\r\n<a name=\"business-application\"></a>\r\n<h2>Business Classification Fee</h2>\r\n<p><strong> #1 Retail Sales </strong>\r\n<br /> @ $0.15 per $100 of Gross Receipts BUT NOT LESS THAN $20.00 <br /> Total Gross Receipts for Past Calendar Year </p>\r\n<p><strong> #2 Contractors </strong>\r\n<br /> @ $0.12 per $100 of Gross Receipts BUT NOT LESS THAN $20.00<br /> Total Gross Receipts for Past Calendar Year </p>\r\n<p><strong> #3 Financial, Real Estate, & Professional Services </strong>\r\n<br /> @ $0.30 per $100 of Gross Receipts BUT NOT LESS THAN $20.00<br /> Total Gross Receipts for Past Calendar Year </p>\r\n<p><strong> #4 Repair, Personal, Lessor of Real Estate Property, Business & Other Services</strong>\r\n<br /> @ $0.20 per $100 of Gross Receipts BUT NOT LESS THAN $20.00<br /> Total Gross Receipts for Past Calendar Year </p>\r\n\r\n<div class=\"pdf\"><a href=\"/system/resources/2012/08/22/01_17_30_218_Business_License_Application_Regular_2012.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Business License Application Regular 2012\">\r\n<img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" title=\"Business License Application Regular 2012\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" />\r\n</a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_218_Business_License_Application_Regular_2012.pdf?iframe=true&width=1000&height=1200\" title=\"Business License Application Regular 2012\" target=\"_blank\">(open PDF) Business License Application (Regular)</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_192_Business_License_Application_Contractors_2012.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Business License Application Contractors 2012\">\r\n<img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" title=\"Business License Application Contractors 2012\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" />\r\n</a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_192_Business_License_Application_Contractors_2012.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Business License Application Contractors 2012\">(open PDF) Business License Application (Contractors)</a>\r\n</p>\r\n</div>\r\n<div style=\"clear:both\"></div>\r\n<h2>Meals Tax</h2>\r\n\r\n<p>The Town imposes a meals tax rate of 5% on the amount paid for meals purchased from any food establishment, whether prepared in such food establishment or not, and whether consumed on the premises or not. The tax is collected at the end of each quarter. For additional details, see <strong><a href=\"/system/resources/2012/08/22/01_14_38_636_Town_Code_Title_13_Meals_Tax.pdf?iframe=true&width=1000&height=1200\" title=\"Town Code Title 13 Meals Tax\" target=\"_blank\">Town Code, Title 13, Meals Tax</a>\r\n</strong>. (open PDF in web browser)</p>\r\n\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_17_30_482_Meals_Tax_Report_Form.pdf?iframe=true&width=1000&height=1200\" title=\"Meals Tax Report Form\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" title=\"Meals Tax Report Form\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" />\r\n</a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_482_Meals_Tax_Report_Form.pdf?iframe=true&width=1000&height=1200\" title=\"Meals Tax Report Form\" target=\"_blank\">Meals Tax Report Form (open PDF in web browser)</a>\r\n</p>\r\n</div>\r\n<div style=\"clear:both\"></div>\r\n\r\n<h2>Real Estate Tax</h2>\r\n<p>The Town of Dayton’s Real Estate Tax rate is $0.08 per $100 of Rockingham County assessment value. Real Estate Taxes are paid to Dayton semi-annually. The first payment is due June 5 and the second payment is due December 5. A penalty of 5% is charged for late payments. After a bill is delinquent a month, interest is also charged. The tax bills are usually mailed the month preceding the due date. For additional information, see <strong><a href=\"/system/resources/2012/08/22/01_14_38_618_Town_Code_Title_12_Real_Estate_Taxation.pdf?iframe=true&width=1000&height=1200\" title=\"Town Code Title 12 Real Estate Taxation\" target=\"_blank\">Town Code, Title 12, Real Estate Taxation</a>\r\n</strong>\r\n<a href=\"/system/resources/2012/08/22/01_14_38_618_Town_Code_Title_12_Real_Estate_Taxation.pdf?iframe=true&width=1000&height=1200\" title=\"Town Code Title 12 Real Estate Taxation\" target=\"_blank\">\r\n</a>. (open PDF in web browser) </p>\r\n<h2>Vehicle License Tax</h2>\r\n<p>The Town of Dayton imposes a vehicle license tax upon every motor vehicle, trailer and semi-trailer regularly garaged, stored, or parked in the Town of Dayton, and used on the streets and highway of this town. The Town Vehicle License Tax expires on April 15th each year. The fee may be paid at the Town Treasurer\'s Office. Persons moving to Dayton after April 15th are required to pay the fee immediately upon assuming residency unless they have paid a fee from anywhere in Virginia. Those purchasing vehicles have a grace period of 10 days to pay the fee. Any change of vehicle ownership requires you contact the Treasurer\'s Office in order to transfer it to another vehicle. On October 1st, the vehicle license fee is one-half the cost, and on January 15th, it is one-third the cost. </p>\r\n<p>The Town of Dayton will utilize the DMV VRW Program to enforce non-payment of the vehicle license tax. This program allows the Town to notify the DMV of any residents that have not paid the vehicle license tax. Once notified, the program will not allow a resident to conduct business with the DMV until payment is received by the Town of Dayton for the vehicle license.</p>\r\n<table><caption>Vehicle License Tax</caption>\r\n<tbody><tr><td>HV - Heavy Vehicle</td> \r\n<td>$30.00</td>\r\n<td>MC - Motorcycle</td>\r\n<td>$10.00</td>\r\n</tr>\r\n<tr class=\"alt\"><td>MH - Motor Home</td>\r\n<td>$30.00</td>\r\n<td>PC - Pull Camper (single axle)</td>\r\n<td>$10.00</td>\r\n</tr>\r\n<tr><td>HT - Heavy Trailer (double axel)</td>\r\n<td>$30.00</td>\r\n<td>AV - Antique Vehicle</td>\r\n<td>$0.00</td>\r\n</tr>\r\n</tbody>\r\n</table>','2012-08-19 18:39:05','2012-08-22 20:25:08'),(107,107,'en','<p>{{ content_holder_115 }}</p>','2012-08-19 18:39:05','2012-08-19 20:27:05'),(108,108,'en','<h1>ZONING</h1>\r\n<p>Zoning Administrator | Susan D. Smith</p>\r\n<p>Phone: (540) 879-2241, ext. 308 / Fax: (540) 879-2243</p>\r\n<p>125-B Eastview Street<br />Dayton, VA 22821<br />Email: <a href=\"mailto:[email protected]\" title=\"[email protected]\">Susan D. Smith</a>\r\n</p>\r\n<h3>Zoning Permits</h3>\r\n<p>Zoning permits are required in order to erect, construct, enlarge, alter, repair, or improve any building, structure, or signs—if said activities require a building permit under the <a href=\"http://www.dhcd.virginia.gov/StateBuildingCodesandRegulations/PDFs/2009/Code%20-%20VCC.pdf\" title=\"http://www.dhcd.virginia.gov/StateBuildingCodesandRegulations/PDFs/2009/Code%20-%20VCC.pdf\" target=\"_blank\">Uniform Statewide Building Code</a>. For new dwellings, water and sewer connection fees must be paid before a zoning permit is issued. Zoning permits must be obtained from the Town of Dayton before a Building Permit is issued by Rockingham County.</p>\r\n<h3>Zoning Permit Fees</h3>\r\n<p> Effective February 5, 2007</p>\r\n<ul><li>$20.00 minimum or $2.00 per 100 square feet for new construction or remodel. Cost will be the greater amount.</li>\r\n<li>$20.00 flat fee for signs and/or accessory buildings.</li>\r\n</ul>\r\n<div class=\"pdf\"><a href=\"/system/resources/2012/08/22/01_17_30_527_Zoning_Permit_Application.pdf?iframe=true&width=1000&height=1200\" title=\"Zoning Permit Application\" target=\"_blank\"><img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_527_Zoning_Permit_Application.pdf?iframe=true&width=1000&height=1200\" title=\"Zoning Permit Application\" target=\"_blank\">(open PDF) Zoning Permit Application</a>\r\n</p>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_527_Zoning_Permit_Application.pdf?iframe=true&width=1000&height=1200\" title=\"Zoning Permit Application\" target=\"_blank\">\r\n</a>\r\n<div style=\"clear:both;\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_15_13_941_Town_Zoning_Map.pdf?iframe=true&width=1000&height=1200\" title=\"Town Zoning Map\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_15_13_941_Town_Zoning_Map.pdf?iframe=true&width=1000&height=1200\" title=\"Town Zoning Map\" target=\"_blank\">(open PDF) Town Zoning Map</a>\r\n</p>\r\n<a href=\"/system/resources/2012/08/22/01_15_13_941_Town_Zoning_Map.pdf?iframe=true&width=1000&height=1200\" title=\"Town Zoning Map\" target=\"_blank\">\r\n</a>\r\n<div style=\"clear:both;\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_15_13_855_Town_Code_Title_9_Zoning.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Town Code Title 9 Zoning\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Town Code Title 9 Zoning\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_15_13_855_Town_Code_Title_9_Zoning.pdf?iframe=true&width=1000&height=1200\" title=\"Town Code Title 9 Zoning\" target=\"_blank\">(open PDF) Town Code, Title 9, Zoning</a>\r\n</p>\r\n<a href=\"/system/resources/2012/08/22/01_15_13_855_Town_Code_Title_9_Zoning.pdf?iframe=true&width=1000&height=1200\" title=\"Town Code Title 9 Zoning\" target=\"_blank\">\r\n</a>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n<h3>Accumulation of Grass and Weeds</h3>\r\n<p>For questions or concerns regarding the accumulation of grass/weeds, call Susan Smith at 540-879-2241, ext. 308, or email her at <a href=\"mailto:[email protected]\" title=\"[email protected]\">[email protected]</a>. (See <strong><a href=\"/system/resources/2012/08/22/01_13_56_738_Dayton_General_Criminal_Code.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton General Criminal Code\" target=\"_blank\">Town Code, Title 1, General Criminal Code, §1-48</a>\r\n</strong><a href=\"/system/resources/2012/08/22/01_13_56_738_Dayton_General_Criminal_Code.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton General Criminal Code\" target=\"_blank\">\r\n</a>) Open Code section in web browser</p>','2012-08-19 18:39:22','2012-08-22 14:30:41'),(109,109,'en','<p>{{ content_holder_115 }}</p>','2012-08-19 18:39:22','2012-08-19 20:27:11'),(110,110,'en','<a name=\"dayton-discovery\"></a>\r\n<h2>Dayton Discovery Newsletter</h2>\r\n<ul><li>Current and Past Newsletters (open each PDF in web browser).</li>\r\n<div class=\"pdf\">\r\n<div style=\"padding-left: 50px;\">\r\n<a href=\"/system/resources/2012/08/22/01_12_27_191_Summer_2012.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Summer 2012\">Summer Newsletter 2012</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/01_12_27_175_Spring_2012.pdf?iframe=true&width=1000&height=1200\" title=\"Spring 2012\" target=\"_blank\">Spring Newsletter 2012</a>\r\n\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/01_12_06_104_Winter_2011.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Winter 2011\">Winter Newsletter 2011</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/01_12_06_50_Fall_2011.pdf?iframe=true&width=1000&height=1200\" title=\"Fall 2011\" target=\"_blank\">Fall Newsletter 2011</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/01_12_06_85_Summer_2011.pdf?iframe=true&width=1000&height=1200\" title=\"Summer 2011\" target=\"_blank\">Summer Newsletter 2011</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/01_12_06_67_Spring_2011.pdf?iframe=true&width=1000&height=1200\" title=\"Spring 2011\" target=\"_blank\">Spring Newsletter 2011</a>\r\n<br />\r\n</div>\r\n</div>\r\n<li><span class=\"green\">Go Green—Go Paperless!</span> Receive the Dayton Discovery Newsletter electronically by sending an email to <a href=\"mailto:[email protected]\" title=\"[email protected]\">[email protected]</a>. In order to avoid duplication of mailing a paper copy, please include your name and service address along with the email address of where you would like the newsletter sent. Your email address will be kept private and only used for Town purposes.</li>\r\n<li>For newsletter comments and suggestions, email <a href=\"mailto:[email protected]\" title=\"[email protected]\">[email protected]</a> or call the Dayton Town Office at 540-879-2241.</li>\r\n</ul>','2012-08-19 18:39:37','2012-08-22 20:42:45'),(111,111,'en','<p>{{ content_holder_115 }}</p>','2012-08-19 18:39:37','2012-08-19 20:27:17'),(62,62,'en','<p><img src=\"/system/images/BAhbBlsHOgZmSSI4MjAxMi8wMi8yOC8xOV8yNl8yOV80ODRfc29saWNpdGF0aW9uX2Rpc2Nsb3N1cmUuanBnBjoGRVQ/solicitation_disclosure.jpg\" height=\"371\" width=\"613\" /></p>\r\n<h1>Solicitation Disclosure</h1>\r\n<h3>Our statement regarding solicitation of funds as required in various states:</h3>\r\n<p>Some states require charities soliciting funds within a state to register with the state agency responsible for regulating charities. Christian Aid Ministries is registered in each state where it is required to do so. As a faith-based, religious organization, several states exempt our ministry from solicitation registration.</p>\r\n<h2>State disclosure statements:</h2>\r\n<p>Colorado residents may obtain copies of registration and financial documents from the office of the Secretary of State, 303-894-2860,www.sos.state.co.us/ re: Reg. No. 20113021578.</p>\r\n<p>Florida residents: A COPY OF THE OFFICIAL REGISTRATION AND FINANCIAL INFORMATION MAY BE OBTAINED FROM THE DIVISION OF CONSUMER SERVICES BY CALLING TOLL-FREE, 1-800-435-7352 WITHIN THE STATE. REGISTRATION DOES NOT IMPLY ENDORSEMENT, APPROVAL, OR RECOMMENDATION BY THE STATE. REGISTRATION NUMBER CH35002.</p>\r\n<p>Georgia residents: A full and fair description of Christian Aid Ministries and its financial statements are available upon request from Christian Aid Ministries, P.O. Box 360, Berlin, OH 44610.</p>\r\n<p>Illinois residents: Contracts and reports regarding Christian Aid Ministries are on file with the Illinois Attorney General.</p>\r\n<p>Maryland residents: For the cost of postage and copying, documents and information filed under the Maryland charitable organizations laws can be obtained from the Secretary of State, Charitable Division, State House, Annapolis, MD 21401, 800-825-4510.</p>\r\n<p>Michigan residents: The registration number of Christian Aid Ministries in the state of Michigan is CS 46826.</p>\r\n<p>New Jersey residents: Information filed with the Attorney General concerning this charitable solicitation may be obtained from the Attorney General of the State of New Jersey by calling 1-973-504-6215. Registration with the Attorney General does not imply endorsement.</p>\r\n<p>New York residents: A copy of the most recent annual report is available from the State of New York Department of Law, Charities Bureau, 120 Broadway, New York, New York, 10271.</p>\r\n<p>North Carolina residents: Financial information about this organization and a copy of its license are available from the State Solicitation Licensing Branch at 1-919-733-4510. The license is not an endorsement by the State.</p>\r\n<p>Pennsylvania residents: The official registration and financial information of Christian Aid Ministries may be obtained from the Pennsylvania Department of State by calling toll-free, within Pennsylvania, 1-800-732-0999. Registration does not imply endorsement.</p>\r\n<p>Virginia residents: A copy of the financial statement is available from the Division of Consumer Affairs, Department of Agricultural and Consumer Services, 1100 Bank Street, Richmond, VA 23219 or call 1-804-786-1343.</p>\r\n<p>Washington residents: Thank you for supporting Christian Aid Ministries. For additional information regarding the organization’s activities or financial information, Christian Aid Ministries is registered with the Washington State Charities Program as required by law and information may be obtained by calling 800-332-4483 or 360-725-0378.</p>\r\n<p>West Virginia residents: West Virginia residents may obtain a summary of the registration and financial documents from the Secretary of State, State Capital, Charleston, WV 25305. Registration does not imply endorsement.</p>','2012-02-28 16:28:26','2012-02-28 20:35:52'),(58,58,'en','<iframe style=\"width:100%;border:none\" src=\"http://christianaidministries.org/machform/embed.php?id=2\" title=\"Biblical Stewardship Services information\" frameborder=\"0\" height=\"1503\" scrolling=\"no\"><a href=\"http://christianaidministries.org/machform/view.php?id=2\" title=\"Biblical Stewardship Services information\">Biblical Stewardship Services information</a></iframe>','2012-01-25 18:40:31','2012-04-24 15:52:40'),(59,59,'en','','2012-01-25 18:40:31','2012-01-25 18:40:31'),(22,22,'en','','2011-05-23 15:12:43','2011-08-16 18:49:56'),(23,23,'en','<p>{{ content_holder_11 }}</p>\r\n<br />','2011-05-23 15:12:43','2011-08-16 18:49:38'),(24,24,'en',NULL,'2011-05-23 15:37:47','2011-05-23 15:37:47'),(25,25,'en',NULL,'2011-05-23 15:37:47','2011-05-23 15:37:47'),(26,26,'en',NULL,'2011-05-23 15:39:14','2011-05-23 15:39:14'),(27,27,'en',NULL,'2011-05-23 15:39:14','2011-05-23 15:39:14'),(28,28,'en',NULL,'2011-05-23 15:43:25','2011-05-23 15:43:25'),(29,29,'en',NULL,'2011-05-23 15:43:25','2011-05-23 15:43:25'),(30,30,'en','','2011-05-23 15:50:18','2011-05-25 14:56:06'),(31,31,'en','','2011-05-23 15:50:18','2011-05-25 14:56:06'),(32,32,'en','','2011-05-23 16:18:50','2011-06-03 17:20:49'),(33,33,'en','','2011-05-23 16:18:50','2011-06-03 17:20:49'),(34,34,'en','<p>{{ content_holder_8 }}</p>','2011-05-24 17:39:45','2011-08-25 20:40:48'),(35,35,'en','','2011-05-24 17:39:45','2011-08-25 20:40:48'),(36,36,'en','','2011-05-24 17:50:32','2011-08-11 21:28:28'),(37,37,'en','<p>{{ content_holder_11 }}</p>','2011-05-24 17:50:32','2011-08-11 21:37:51'),(38,38,'en','','2011-05-26 14:15:37','2011-05-26 14:16:11'),(39,39,'en','','2011-05-26 14:15:37','2011-05-26 14:16:11'),(42,42,'en','','2011-06-21 15:23:51','2011-06-21 16:57:00'),(43,43,'en','','2011-06-21 15:23:51','2011-06-21 16:57:00'),(46,46,'en','<br />\r\n<h1>CAM Training Videos</h1>\r\n<p>In the scrollable window below are training videos that I\'m producing for CAM internal usage.<br />\r\nThese videos will be used to train and cover 99% of the questions on how to administer the system\r\nsuch as content manged pages, news items, programs, articles, memberships, orders, files, images, et cetera. <br />\r\n<br />\r\nStreaming of the videos is available for modern browsers (Firefox 4+, Safari, IE8+, Chrome) but may be slow depending on internet connection. If you cannot adequately stream the video, a link is available below the video to download the file. Most videos are in either .MOV or .M4V file formats. These can be viewed in Windows Media Player natively on some versions and with a plugin on others. As well, iTunes or Quicktime will play these videos as they\'re its native format.<br />\r\n<br />\r\nI recommend downloading the videos to your local computer and putting them in a folder if your job is administration of the system or content editing as they will serve as a continued resource in its management.\r\n\r\nIf there is a topic that needs to be covered more in-depth, send an email to [email protected] or [email protected] and we\'ll put it on the screencasting schedule.<br /><br />\r\nI hope these videos are a beneficial resource in better understanding the system and making staff training much easier and more thorough. They sure are fun to produce.\r\n<br /><br />\r\n~Kevin Hopkins <br />\r\n<a title=\"[email protected]?subject=[CAM] Donation System Screencasts\" href=\"mailto:[email protected]?subject=[CAM]%20Donation%20System%20Screencasts\">[email protected] </a>\r\n<br />\r\nLead Developer @ Found\r\n\r\n\r\n<iframe src=\"/jwplayer/training_videos.html\" height=\"1200\" width=\"100%\"></iframe>\r\n\r\n</p>\r\n<p><img src=\"/system/images/BAhbBlsHOgZmSSIpMjAxMi8wMy8wMS8yM18zMV80Nl81NjVfdHlfbWFyXzMucG5nBjoGRVQ/ty_mar_3.png\" height=\"454\" width=\"344\" />\r\n\r\n</p>','2011-08-22 16:38:31','2012-04-18 14:16:41'),(47,47,'en','<p>{{ content_holder_108 }}\r\n</p>','2011-08-22 16:38:31','2012-04-18 14:17:32'),(60,60,'en','<h1><a id=\"wym-1328214966741\" title=\"https://www.christianaidministries.org/\" href=\"https://www.christianaidministries.org/\">Home</a>\r\n</h1>\r\n<h1><a title=\"/programs\" href=\"/programs\">Our Programs</a>\r\n</h1>\r\n<ul><li> <a title=\"/programs/39\" href=\"/programs/39\">Adopt-A-Family</a>\r\n</li>\r\n<li><a title=\"/programs/6\" href=\"/programs/6\">Billboard Evangelism</a>\r\n</li>\r\n<li><a title=\"/programs/5\" href=\"/programs/5\">Bibles-for-the-World</a>\r\n</li>\r\n<li><a title=\"/programs/3\" href=\"/programs/3\">Christian Family Magazines</a>\r\n</li>\r\n<li><a title=\"/programs/3\" href=\"/programs/3\">Christian Martyrs Fund</a>\r\n</li>\r\n<li><a title=\"/programs/8\" href=\"/programs/8\">Church Planting Projects</a>\r\n</li>\r\n<li><a title=\"/programs/9\" href=\"/programs/9\">Clothing Bundle Project</a>\r\n</li>\r\n<li><a title=\"/programs/10\" href=\"/programs/10\">Conservative Anabaptist Service Program</a>\r\n</li>\r\n<li><a title=\"/programs/11\" href=\"/programs/11\">Disaster Response Services</a>\r\n</li>\r\n<li><a title=\"/programs/12\" href=\"/programs/12\">Family-Self-Support</a>\r\n</li>\r\n<li><a title=\"/programs/38\" href=\"/programs/38\">Favorite Stories from the Bible</a>\r\n</li>\r\n<li><a title=\"/programs/13\" href=\"/programs/13\">Gifts-That-Grow</a>\r\n</li>\r\n<li><a title=\"/programs/32\" href=\"/programs/32\">Haiti-Sponsor-A-Child School Program</a>\r\n</li>\r\n<li><a title=\"/programs/14\" href=\"/programs/14\">Help-for-the-Elderly</a>\r\n</li>\r\n<li><a title=\"/programs/42\" href=\"/programs/42\">Hope-for-the-Handicapped</a>\r\n</li>\r\n<li><a title=\"/programs/15\" href=\"/programs/15\">International Crisis</a>\r\n</li>\r\n<li><a title=\"/programs/2\" href=\"/programs/2\">International-Feed-A-Family</a>\r\n</li>\r\n<li><a title=\"/programs/17\" href=\"/programs/17\">International-Sponsor-A-Student</a>\r\n</li>\r\n<li><a title=\"/programs/18\" href=\"/programs/18\">Jericho Road Ministries</a>\r\n</li>\r\n<li><a title=\"/programs/19\" href=\"/programs/19\">Medicines-for-Multitudes</a>\r\n</li>\r\n<li><a title=\"/programs/36\" href=\"/programs/36\">Middle East Ministries</a>\r\n</li>\r\n<li><a title=\"/programs/20\" href=\"/programs/20\">Milk-for-Many-Mouths</a>\r\n</li>\r\n<li><a title=\"/programs/40\" href=\"/programs/40\">Nicaragua-Adopt-A-Family</a>\r\n</li>\r\n<li><a title=\"/programs/41\" href=\"/programs/41\">Rapid Response Disaster Service</a>\r\n</li>\r\n<li><a title=\"/programs/23\" href=\"/programs/23\">Save-A-Life!</a>\r\n</li>\r\n<li><a title=\"/programs/24\" href=\"/programs/24\">Seed Project</a>\r\n</li>\r\n<li><a title=\"/programs/25\" href=\"/programs/25\">Sewing Centers</a>\r\n</li>\r\n<li><a title=\"/programs/22\" href=\"/programs/22\">Shared Accountability Lending & Teaching Program</a>\r\n</li>\r\n<li><a title=\"/programs/26\" href=\"/programs/26\">Special-Needs-Fund\r\n\r\n</a>\r\n</li>\r\n<li><a title=\"/programs/35\" href=\"/programs/35\">Sponsor-A-Bible-Lesson</a>\r\n</li>\r\n<li><a title=\"/programs/1\" href=\"/programs/1\">Sponsor-an-Orphan</a>\r\n</li>\r\n<li><a title=\"/programs/27\" href=\"/programs/27\">Strong Tower Children\'s Home</a>\r\n</li>\r\n<li><a title=\"/programs/28\" href=\"/programs/28\">Support-A-Widow</a>\r\n</li>\r\n<li><a title=\"/programs/34\" href=\"/programs/34\">Teaching Ministries Program</a>\r\n</li>\r\n<li><a title=\"/programs/29\" href=\"/programs/29\">Warm-A-Family</a>\r\n</li>\r\n<li><a title=\"/programs/30\" href=\"/programs/30\">Water-for-the-World</a>\r\n</li>\r\n<li><a title=\"/programs/33\" href=\"/programs/33\">Where-Needed-Most</a>\r\n</li>\r\n</ul>\r\n<h1><a title=\"/news\" href=\"/news\">News</a>\r\n</h1>\r\n<ul><li><a title=\"/news/releases\" href=\"/news/releases\">Recent posts</a>\r\n</li>\r\n<li><a title=\"/news/newsletters\" href=\"/news/newsletters\">CAM Newsletters</a>\r\n</li>\r\n</ul>\r\n<h1><a title=\"Donate\" href=\"/donate\">Donate</a>\r\n</h1>\r\n<h1><a title=\"About Us\" href=\"/about-cam/who-we-are\">About Us</a>\r\n</h1>\r\n<ul><li><a title=\"Who We Are\" href=\"/about-cam/who-we-are\">Who We Are</a>\r\n</li>\r\n<li><a title=\"Locations\" href=\"/about-cam/locations\">Locations</a>\r\n</li>\r\n<li><a title=\"Financial Accountability\" href=\"/about-cam/financial-accountability\">Financial Accountability</a>\r\n</li>\r\n<li><ol><a title=\"Financial Statements\" href=\"/about-cam/financial-accountability/financial-statements\">Financial Statements</a>\r\n</ol>\r\n</li>\r\n<li><a title=\"Statement of Faith\" href=\"/about-cam/statement-of-faith\">Statement of Faith</a>\r\n</li>\r\n<li><a title=\"Biblical Stewardship Services\" href=\"/about-cam/biblical-stewardship-services\">Biblical Stewardship Services</a>\r\n</li>\r\n<li><a title=\"TGS International\" href=\"/about-cam/tgs-international\">TGS International</a>\r\n</li>\r\n\r\n</ul>\r\n<h1><a title=\"Contact Us\" href=\"/contacts/new\">Contact Us</a>\r\n</h1>\r\n<h1><a title=\"Signup for our newsletter\" href=\"/contacts/newsletter_signup\">Signup for our Newsletter</a>\r\n</h1>\r\n<h1><a title=\"Privacy Policy\" href=\"/privacy-policy\">Privacy Policy</a>\r\n</h1>\r\n<h1><a title=\"Site Map\" href=\"/site-map\">Site Map</a>\r\n</h1>\r\n<h1><a title=\"Terms and Conditions\" href=\"/terms-and-conditions\">Terms and Conditions</a>\r\n</h1>\r\n<h1><a title=\"Solicitation Disclosure\" href=\"/solicitation-disclosure\">Solicitation Disclosure</a>\r\n</h1>','2012-02-02 20:00:33','2012-04-25 15:42:02'),(61,61,'en','<p>{{ content_holder_86 }}</p>','2012-02-02 20:00:33','2012-02-28 16:33:52'),(48,48,'en','','2011-08-25 20:38:53','2011-08-25 20:38:53'),(49,49,'en','','2011-08-25 20:38:53','2011-08-25 20:38:53'),(50,50,'en','<h1>Latest News Releases</h1>','2011-08-25 20:41:52','2012-08-20 02:53:55'),(51,51,'en','<p>{{ content_holder_116 }}</p>','2011-08-25 20:41:52','2012-08-20 02:53:26'),(52,52,'en',NULL,'2011-08-26 15:08:02','2011-08-26 15:08:02'),(53,53,'en',NULL,'2011-08-26 15:08:02','2011-08-26 15:08:02'),(54,54,'en','<h1>Christian Aid Ministries’ Online Privacy Policy</h1>\r\n<p>Christian Aid Ministries (hereafter referred to as CAM) is committed to respecting your online privacy and security. We have developed this privacy policy to ensure our web visitors that information you provide to websites of CAM will not be shared with any third party. </p>\r\n<h2>Awareness </h2>\r\n<p>CAM provides this Online Privacy Policy to make you aware of our privacy policy and security practices, and to inform you of the way your information is collected and used. We also provide you with the opportunity to remove your name from our mailing list, if you desire to do so.</p>\r\n<h2>Information Collected </h2>\r\n<p>On some CAM websites you can provide contact information for ministry-related purposes, or to make ministry contributions. Here are the types of personal information that we collect:</p>\r\n<ul><li>contact information: name, organization/church, complete address, phone number, email address;</li>\r\n<li>payment information: credit card number and expiration date, bank account and routing number, and billing information <strong>(sensitive payment information is not stored on our server)</strong>;</li>\r\n<li>shipping information: name, organization/church, complete address;</li>\r\n<li>information you wish to leave: questions, comments, suggestions; and your request to receive periodic updates: e.g., to individuals who request it, we will send periodic newsletters.</li>\r\n</ul>\r\n<h2>How Information is Used </h2>\r\n<p>CAM uses your information to understand your needs and provide you with better service. Specifically, we use your information to help you complete a transaction, communicate back to you, update you on ministry happenings, and to personalize our website for you. Credit card numbers and bank account information are used only for donation or payment processing and are not retained for other purposes. We use the comments you offer to provide you with information requested, and we take seriously each recommendation as to how we might improve communication. </p>\r\n<h2>No Sharing of Personal Information</h2>\r\n<p> CAM will not sell, rent, or lease your personal information to other organizations. We assure you that the identity of all who contact us through our websites will be kept confidential. Use of personal information will be limited to the internal purposes of Christian Aid Ministries and its subsidiaries and only to further the ministry activities and purposes of Christian Aid Ministries.</p>\r\n<h2>Security</h2>\r\n<p> Christian Aid Ministries is committed to ensuring the security of your personal information. To prevent unauthorized access, maintain data accuracy, and ensure the proper use of information, we have established and implemented appropriate physical, electronic, and managerial procedures to safeguard and secure the information we collect online. We use Internet encryption software, Secure Socket Layer (SSL) protocol when collecting or transferring sensitive data such as credit card information.</p>\r\n<h2>Cookies</h2>\r\n<p> From time to time, we may send a “cookie” to your computer. A cookie is a small piece of data that is sent to your browser from a web server and stored on your computer’s hard drive. Once placed onto your machine, the cookie will allow the website to “recognize” you as a unique individual. A cookie can’t read data off your hard drive or read cookie files created by other sites. Cookies do not damage your system. We use cookies to recognize you when you return to our sites, or to identify which areas of our network of websites you have visited (i.e., e-commerce sites, etc.). We may use this information to better personalize the content you see on our sites.</p>\r\n<p>Many websites place cookies on your hard drive. You can choose whether to accept cookies by changing the settings of your browser. Your browser can refuse all cookies, or show you when a cookie is being sent. If you choose not to accept these cookies, your experience at our site and other websites may be diminished and some features may not work as intended. </p>\r\n<h2>Removing Your Name from our Mailing List </h2>\r\n<p>Our website gives you the opportunity to remove your name from our mailing list so that you do not receive any future communications from our ministry. If you desire to remove your name, you can send us an email at [email protected] or call 330-893-2428. When contacting us to change your status, be sure to include any information that would help us identify you on our lists, such as complete contact information (name, postal address, telephone number, and email address), any CAM donor account number(s), or information about venues in which you gave us your contact information online.</p>\r\n<h2>Contacting Us </h2>\r\n<p>If you have comments or questions about our privacy policy, please send us an email at [email protected]. </p>\r\n<h2>Refund and Cancellation Policies</h2>\r\n<p>All donations are final and are not refundable. Please call 330-893-2428 for more information.<br />Sponsorships can be cancelled at any time by accessing the “My Account” section of the website or by calling us at 330-893-2428.</p>','2011-11-07 20:24:45','2012-02-27 18:23:28'),(55,55,'en','<p>{{ content_holder_86 }}</p>','2011-11-07 20:24:45','2012-02-28 16:34:22'),(56,56,'en','<h1>Christian Aid Ministries’ usage terms and conditions</h1>\r\n<p>Welcome to our website. If you continue to browse and use this website, you are agreeing to comply with and be bound by the following terms and conditions of use, which together with our privacy policy govern Christian Aid Ministries’ relationship with you in relation to this website. If you disagree with any part of these terms and conditions, please do not use our website.</p>\r\n<p>The term ‘Christian Aid Ministries’ or ‘us’ or ‘we’ refers to the owner of the website whose registered office is 4464 SR 39 Millersburg, OH 44654. The term ‘you’ refers to the user or viewer of our website.</p>\r\n<p>The use of this website is subject to the following terms of use:</p>\r\n<ul><li>The content of the pages of this website is for your general information and use only. It is subject to change without notice.</li>\r\n<li>This website uses cookies to monitor browsing preferences. If you do allow cookies to be used, the following personal information may be stored by us for use by third parties.</li>\r\n<li>Neither we nor any third parties provide any warranty or guarantee as to the accuracy, timeliness, performance, completeness or suitability of the information and materials found or offered on this website for any particular purpose. You acknowledge that such information and materials may contain inaccuracies or errors and we expressly exclude liability for any such inaccuracies or errors to the fullest extent permitted by law.</li>\r\n<li>Your use of any information or materials on this website is entirely at your own risk, for which we shall not be liable. It shall be your own responsibility to ensure that any products, services or information available through this website meet your specific requirements.</li>\r\n<li>This website contains material which is owned by or licensed to us. This material includes, but is not limited to, the design, layout, look, appearance and graphics. Reproduction is prohibited other than in accordance with the copyright notice, which forms part of these terms and conditions.</li>\r\n<li>All trademarks reproduced in this website, which are not the property of, or licensed to the operator, are acknowledged on the website.</li>\r\n<li>Unauthorized use of this website may give rise to a claim for damages and/or be a criminal offense.</li>\r\n<li>From time to time, this website may also include links to other websites. These links are provided for your convenience to provide further information. They do not signify that we endorse the website(s). We have no responsibility for the content of the linked website(s).</li>\r\n<li>Your use of this website and any dispute arising out of such use of the website is subject to the laws of the United States of America.</li>\r\n</ul>\r\n<h2>Website disclaimer\r\n</h2>\r\n<p>The information contained in this website is for general information purposes only. The information is provided by Christian Aid Ministries and while we endeavour to keep the information up to date and correct, we make no representations or warranties of any kind, express or implied, about the completeness, accuracy, reliability, suitability or availability with respect to the website or the information, products, services, or related graphics contained on the website for any purpose. Any reliance you place on such information is therefore strictly at your own risk.</p>\r\n<p>In no event will we be liable for any loss or damage including without limitation, indirect or consequential loss or damage, or any loss or damage whatsoever arising from loss of data or profits arising out of, or in connection with, the use of this website.</p>\r\n<p>Through this website you are able to link to other websites which are not under the control of Christian Aid Ministries. We have no control over the nature, content and availability of those sites. The inclusion of any links does not necessarily imply a recommendation or endorse the views expressed within them.</p>\r\n<p>Every effort is made to keep the website up and running smoothly. However, Christian Aid Ministries takes no responsibility for, and will not be liable for, the website being temporarily unavailable due to technical issues beyond our control.</p>\r\n<h2>Refund and Cancellation Policies</h2>\r\n<p>All donations are final and are not refundable. Please call 330-893-2428 for more information.<br />Sponsorships can be cancelled at any time by accessing the “My Account” section of the website or by calling us at 330-893-2428.</p>','2011-11-07 20:31:46','2011-11-07 20:31:47'),(57,57,'en','<p>{{ content_holder_86 }}</p>','2011-11-07 20:31:47','2012-02-28 16:34:06'),(63,63,'en','<p>{{ content_holder_86 }}</p>','2012-02-28 16:28:26','2012-02-28 16:30:08'),(64,64,'en','<br />\r\n<h1>CAM Locations:</h1>\r\n<p>At CAM\'s home office in Berlin, Ohio, staff members do behind the scenes work such as processing donations, accounting, fundraising, procuring GIK products, making decisions, and directing the various CAM state-side operations and field bases.</p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Home Office, Berlin, OH\" title=\"Home Office, Berlin, OH\" src=\"/system/images/BAhbBlsHOgZmSSI2MjAxMi8wNi8yMi8yMV8zNV8xOF81NjlfSG9tZV9PZmZpY2VfQmVybGluX09ILmpwZwY6BkVU/Home_Office_Berlin_OH.jpg\" height=\"326\" width=\"595\" /></p>\r\n<p>We have a 55,000 sq. ft. distribution center in Ephrata, Pennsylvania, where food parcels are packed and other relief shipments organized. Next to the distribution center is our meat canning facility.</p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Distribution center and meat canning facility, Ephrata, Pennsylvania\" title=\"Distribution center and meat canning facility, Ephrata, Pennsylvania\" src=\"/system/images/BAhbBlsHOgZmSSImMjAxMi8wNi8yMi8yMV8zNV8xOF8zODZfMDM5cGEuanBnBjoGRVQ/039pa.jpg\" height=\"326\" width=\"595\" /></p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Canada Office and Clothing Center, Wallenstein, Ontario\" title=\"Canada Office and Clothing Center, Wallenstein, Ontario\" src=\"/system/images/BAhbBlsHOgZmSSInMjAxMi8wNi8yMi8yMV8zNV8xOF8xMjZfMDM5Y2FuLmpwZwY6BkVU/039can.jpg\" height=\"326\" width=\"595\" /></p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"DRS Warehouse, Vanleer, Tennessee\" title=\"DRS Warehouse, Vanleer, Tennessee\" src=\"/system/images/BAhbBlsHOgZmSSI5MjAxMi8wNi8yMi8yMV8zOV81Ml8yODRfRFJTX1dhcmVob3VzZV9WYW5sZWVyX1ROLkpQRwY6BkVU/DRS_Warehouse_Vanleer_TN.JPG\" height=\"326\" width=\"595\" /></p>\r\n<p>CAM has staff and distribution networks in Romania, Moldova, Ukraine, Haiti, Nicaragua, Liberia, and Israel.</p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Financial office, Suceava, Romania\" title=\"Financial office, Suceava, Romania\" src=\"/system/images/BAhbBlsHOgZmSSJBMjAxMi8wNi8yMi8yMV80Nl80MV8xMjFfRmluYW5jaWFsX29mZmljZV9TdWNlYXZhX1JvbWFuaWEuanBnBjoGRVQ/Financial_office_Suceava_Romania.jpg\" height=\"326\" width=\"595\" /></p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Warehouse, Cluj, Romania\" title=\"Warehouse, Cluj, Romania\" src=\"/system/images/BAhbBlsHOgZmSSIoMjAxMi8wNi8yMi8yMV8zNV8xOF8yMTFfMDM5Y2x1ai5qcGcGOgZFVA/039cluj.jpg\" height=\"326\" width=\"595\" /></p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Warehouse, Suceava, Romania\" title=\"Warehouse, Suceava, Romania\" src=\"/system/images/BAhbBlsHOgZmSSI0MjAxMi8wNi8yMi8yMV8zNV8xOF80MjdfMDM5cm9tYW5pYXdhcmVob3VzZS5qcGcGOgZFVA/039romaniawarehouse.jpg\" height=\"326\" width=\"595\" /></p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Warehouse, Chisinau, Moldova\" title=\"Warehouse, Chisinau, Moldova\" src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wNi8yMi8yMV8zNV8xOF8zNDVfMDM5bW9sZG92YS5qcGcGOgZFVA/039moldova.jpg\" height=\"326\" width=\"595\" /></p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Office and Warehouse, Kiev, Ukraine\" title=\"Office and Warehouse, Kiev, Ukraine\" src=\"/system/images/BAhbBlsHOgZmSSJCMjAxMi8wNi8yMi8yMV8zNV8xOF83OTdfT2ZmaWNlX2FuZF9XYXJlaG91c2VfS2lldl9Va3JhaW5lLmpwZwY6BkVU/Office_and_Warehouse_Kiev_Ukraine.jpg\" height=\"326\" width=\"595\" /></p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Office and Warehouse, Titanyen, Haiti\" title=\"Office and Warehouse, Titanyen, Haiti\" src=\"/system/images/BAhbBlsHOgZmSSJEMjAxMi8wNi8yMi8yMV8zNV8xOF84NDRfT2ZmaWNlX2FuZF9XYXJlaG91c2VfVGl0YW55ZW5fSGFpdGkuSlBHBjoGRVQ/Office_and_Warehouse_Titanyen_Haiti.JPG\" height=\"326\" width=\"595\" /></p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Joshua Memorial Clinic, La Source, Haiti\" title=\"Joshua Memorial Clinic, La Source, Haiti\" src=\"/system/images/BAhbBlsHOgZmSSJHMjAxMi8wNi8yMi8yMV8zNV8xOF83MDlfSm9zaHVhX01lbW9yaWFsX0NsaW5pY19MYV9Tb3VyY2VfSGFpdGkuanBnBjoGRVQ/Joshua_Memorial_Clinic_La_Source_Haiti.jpg\" height=\"381\" width=\"595\" /></p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Balm of Gilead Clinic, Waslala, Nicaragua\" title=\"Balm of Gilead Clinic, Waslala, Nicaragua\" src=\"/system/images/BAhbBlsHOgZmSSJIMjAxMi8wNi8yMi8yMV8zNV8xOF80NzBfQmFsbV9vZl9HaWxlYWRfQ2xpbmljX1dhc2xhbGFfTmljYXJhZ3VhLmpwZwY6BkVU/Balm_of_Gilead_Clinic_Waslala_Nicaragua.jpg\" height=\"326\" width=\"595\" /></p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Office and Warehouse, Managua, Nicaragua\" title=\"Office and Warehouse, Managua, Nicaragua\" src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wNi8yMi8yMV8zNV8xOF8zMDdfMDM5bWFuYWd1YS5qcGcGOgZFVA/039managua.jpg\" height=\"326\" width=\"595\" /></p>\r\n<p>CAM also operates five clothing centers where clothing, footwear, comforters, and fabric are received, sorted, and prepared for shipment overseas. \r\n</p>\r\n','2012-03-09 16:06:39','2012-06-22 17:55:20'),(65,65,'en','<p><br />{{ content_holder_110 }}</p>','2012-03-09 16:06:39','2012-06-11 19:48:10'),(88,88,'en','<p>Here is my about page</p>','2012-08-19 18:35:32','2012-08-19 19:23:48'),(89,89,'en','<p>Here is my left Sidebar</p>','2012-08-19 18:35:32','2012-08-19 19:23:48'),(70,70,'en','<br />\r\n<h3><strong>Thank you</strong> for your continued support!</h3>\r\n<p style=\"font-weight: bold;\">“Inasmuch as ye have done it unto one of the least of these my brethren, ye have done it unto me.” Matthew 25:40b</p>\r\n<p style=\"font-weight: bold;\"><img src=\"/system/images/BAhbBlsHOgZmSSI0MjAxMi8wNC8xMS8xOV8xOV8xNV81NjdfZG9uYXRpb25fYWRqdXN0bWVudC5wbmcGOgZFVA/donation_adjustment.png\" height=\"370\" width=\"613\" /></p>\r\n<p>May God richly bless you.</p>\r\n<p style=\"font-weight: bold;\">Sincerely,\r\n<br style=\"font-weight: normal;\" />Christian Aid Ministries | P.O. Box 360, Berlin, OH 44610 \r\n<br style=\"font-weight: normal;\" />T: 330.893.2428\r\n<br style=\"font-weight: normal;\" />F: 330.893.2305\r\n<br style=\"font-weight: normal;\" />E: <a title=\"[email protected]\" href=\"mailto:[email protected]\">[email protected]</a>\r\n</p>\r\n<p><a style=\"font-weight: bold;\" title=\"/home\" href=\"/home\">< < Go to home page</a>\r\n</p>','2012-04-05 20:32:47','2012-04-11 15:20:11'),(71,71,'en','','2012-04-05 20:32:47','2012-04-11 15:22:06'),(72,72,'en','<br />\r\n<h3><strong>Thank you</strong> for your continued support!</h3>\r\n<p>If at any time you wish to increase your sponsorship amounts, please call us 330-893-2428, email us at <a title=\"[email protected]\" href=\"mailto:[email protected]\">[email protected]</a>, <a title=\"/contacts/new\" href=\"/contacts/new\">send us a message through our website</a>, or write to us at <strong>Christian Aid Ministries, P.O. Box 360, Berlin, OH 44610. </strong>\r\n</p>\r\n<p style=\"font-weight: bold;\">“Inasmuch as ye have done it unto one of the least of these my brethren, ye have done it unto me.” Matthew 25:40b</p>\r\n<p style=\"font-weight: bold;\"><img src=\"/system/images/BAhbBlsHOgZmSSI0MjAxMi8wNC8xMS8xOV8xOV8xNV81NjdfZG9uYXRpb25fYWRqdXN0bWVudC5wbmcGOgZFVA/donation_adjustment.png\" height=\"370\" width=\"613\" /></p>\r\n<p>May God richly bless you.</p>\r\n<p style=\"font-weight: bold;\">Sincerely,\r\n<br style=\"font-weight: normal;\" />Christian Aid Ministries | P.O. Box 360, Berlin, OH 44610 \r\n<br style=\"font-weight: normal;\" />T: 330.893.2428\r\n<br style=\"font-weight: normal;\" />F: 330.893.2305\r\n<br style=\"font-weight: normal;\" />E: <a title=\"[email protected]\" href=\"mailto:[email protected]\">[email protected]</a>\r\n</p>\r\n<p><a style=\"font-weight: bold;\" title=\"/home\" href=\"/home\">< < Go to home page</a>\r\n</p>','2012-04-05 20:33:07','2012-04-11 15:25:21'),(73,73,'en','','2012-04-05 20:33:07','2012-04-05 20:33:07'),(80,80,'en',NULL,'2012-07-30 15:36:18','2012-07-30 15:36:18'),(81,81,'en',NULL,'2012-07-30 15:36:19','2012-07-30 15:36:19'),(112,112,'en','<h1>Dayton Event Calendar</h1>\r\n<p>Talk about the event Calendar here</p>','2012-08-20 00:58:23','2012-08-20 02:41:26'),(113,113,'en','<p>{{ content_holder_116 }}</p>','2012-08-20 00:58:23','2012-08-20 02:54:06'),(114,114,'en','<div class=\"pdf\">\r\n<p><a href=\"/system/resources/2012/08/23/21_53_51_304_Dayton_Businesses.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Businesses\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<a href=\"/system/resources/2012/08/23/21_53_51_304_Dayton_Businesses.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Businesses\" target=\"_blank\">(open PDF) Local Businesses - Directory with links to websites</a>\r\n</p>\r\n</div>\r\n<div style=\"clear:both\"></div>\r\n<h2>Local Churches</h2>\r\n<ul><li>Christ Gospel Church: 290 Eastview Street </li>\r\n<li>Dayton Church of the Brethren: 202 Main Street </li>\r\n<li>Dayton Mennonite Church: 4887 John Wayland Highway </li>\r\n<li>Dayton United Methodist Church: 215 Ashby Street </li>\r\n<li>Shepherd of the Valley Lutheran Church: 229 Main Street </li>\r\n<li>Valley Friends Meeting: 363 High Street </li>\r\n</ul>\r\n<h2>Local Schools</h2>\r\n<ul><li><a href=\"http://www.rockingham.k12.va.us/\" title=\"http://www.rockingham.k12.va.us/\" target=\"_blank\">Rockingham County Public Schools</a>\r\n</li>\r\n<li><a href=\"http://blogs.rockingham.k12.va.us/jwes/\" title=\"http://blogs.rockingham.k12.va.us/jwes/\" target=\"_blank\">John Wayland Elementary School</a>\r\n</li>\r\n<li><a href=\"http://www.rockingham.k12.va.us/WSPMS/wspms.html\" title=\"http://www.rockingham.k12.va.us/WSPMS/wspms.html\" target=\"_blank\">Wilbur Pence Middle School</a>\r\n</li>\r\n<li><a href=\"http://www.rockingham.k12.va.us/TAHS/tahs.html\" title=\"http://www.rockingham.k12.va.us/TAHS/tahs.html\" target=\"_blank\">Turner Ashby High School</a>\r\n</li>\r\n<li><a href=\"http://blogs.rockingham.k12.va.us/dlc/\" title=\"http://blogs.rockingham.k12.va.us/dlc/\" target=\"_blank\">Dayton Learning Center</a>\r\n</li>\r\n<li><a href=\"http://www.rockingham.k12.va.us/mtc/MTC.html\" title=\"http://www.rockingham.k12.va.us/mtc/MTC.html\" target=\"_blank\">Massanutten Technical Center</a>\r\n</li>\r\n</ul>\r\n<h2>Local Organizations </h2>\r\n<ul><li><a href=\"http://abcdayton.com/\" title=\"http://abcdayton.com/\" target=\"_blank\">ABCDayton (Arts & Business Connection) </a>\r\n</li>\r\n<li><a href=\"http://www.artisanscourtyard.org/\" title=\"http://www.artisanscourtyard.org/\" target=\"_blank\">Artisans Courtyard of Dayton</a>\r\n</li>\r\n<li><a href=\"http://www.legion.org/\" title=\"http://www.legion.org/\" target=\"_blank\">Dayton American Legion</a>\r\n</li>\r\n<li><a href=\"http://www.heritagecenter.com/Fort%20Harrison/fortharrison.html\" title=\"http://www.heritagecenter.com/Fort%20Harrison/fortharrison.html\" target=\"_blank\">Fort Harrison, Inc. (Daniel Harrison House) </a>\r\n</li>\r\n<li><a href=\"http://www.heritagecenter.com/\" title=\"http://www.heritagecenter.com/\" target=\"_blank\">Harrisonburg-Rockingham Historical Society Heritage Museum</a>\r\n</li>\r\n<li><a href=\"http://www.mrlib.org/Home.aspx\" title=\"http://www.mrlib.org/Home.aspx\" target=\"_blank\">Massanutten Regional Library</a>\r\n</li>\r\n<li><a href=\"http://www.mrlib.org/LocationsHours/NorthRiverLibrary.aspx\" title=\"http://www.mrlib.org/LocationsHours/NorthRiverLibrary.aspx\" target=\"_blank\">North River Library</a>\r\n</li>\r\n</ul>\r\n<p><a href=\"http://www.hrchamber.org/\" title=\"http://www.hrchamber.org/\" target=\"_blank\">Harrisonburg-Rockingham Chamber of Commerce</a>\r\n</p>\r\n<p><a href=\"http://www.rockinghamcountyva.gov/\" title=\"http://www.rockinghamcountyva.gov/\" target=\"_blank\">Rockingham County</a>\r\n</p>\r\n<ul><li><a href=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=122\" title=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=122\" target=\"_blank\">Burn Permits</a>\r\n</li>\r\n<li><a href=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=106\" title=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=106\" target=\"_blank\">Landfill</a>\r\n</li>\r\n<li><a href=\"http://rockingham.gisbrowser.com/home.cfm\" title=\"http://rockingham.gisbrowser.com/home.cfm\" target=\"_blank\">Geographic Information System (GIS)</a>\r\n</li>\r\n</ul>\r\n<p><a href=\"http://www.visitshenandoah.org/Home.aspx\" title=\"http://www.visitshenandoah.org/Home.aspx\" target=\"_blank\">Shenandoah Valley Travel Guide</a>\r\n</p>\r\n<p><a href=\"http://www.rhspca.org/\" title=\"http://www.rhspca.org/\" target=\"_blank\">SPCA</a>\r\n</p>\r\n<p><a href=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=69\" title=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=69\" target=\"_blank\">Voter Registration and Information</a> </p>','2012-08-20 02:11:13','2012-08-23 18:00:06'),(115,115,'en','<p>{{ content_holder_116 }}</p>','2012-08-20 02:11:13','2012-08-20 02:54:18'),(116,116,'en','<a name=\"foia-requests\"></a>\r\n<h2>Freedom of Information Acts (FOIA) Requests</h2>\r\n<h3>Rights Responsibilities</h3>\r\n<p>The Virginia Freedom of Information Act (FOIA), located at § 2.2-3700 et seq. of the Code of Virginia, guarantees citizens of the Commonwealth and representatives of the media access to public records held by public bodies, public officials, and public employees.</p>\r\n<p>A public record is any writing or recording, regardless of whether it is a paper record, an electronic file, an audio or video recording, or any other format, that is prepared or owned by, or in the possession of a public body or its officers, employees or agents in the transaction of public business. All public records are presumed to be open, and may only be withheld if a specific, statutory exemption applies.</p>\r\n<p>The policy of FOIA states that the purpose of FOIA is to promote an increased awareness by all persons of governmental activities. In furthering this policy, FOIA requires that the law be interpreted liberally, in favor of access, and that any exemption allowing public records to be withheld must be interpreted narrowly.</p>\r\n\r\n<h3>Your FOIA Rights</h3>\r\n<ul><li>You have the right to request to inspect or receive copies of public records, or both.</li>\r\n<li>You have the right to request that any charges for the requested records be estimated in advance.</li>\r\n<li>If you believe that your FOIA rights have been violated, you may file a petition in district or circuit court to compel compliance with FOIA.</li>\r\n</ul>\r\n\r\n<h3>Making a Request for Records from the Town of Dayton</h3>\r\n<ul><li>You may request records by in person, U.S. Mail, fax, e-mail or over the phone. FOIA does not require that your request be in writing, nor do you need to specifically state that you are requesting records under FOIA.</li>\r\n<li>FOIA requests should be made by calling the Dayton Town Office at 540-879-2241 or by email at <a href=\"mailto:[email protected]\" title=\"[email protected]\">[email protected]</a>\r\n</li>\r\n<li>It may be helpful to both you and the person receiving your request to put your request in writing. This allows you to create a record of your request. It also gives us a clear statement of what records you are requesting, so that there is no misunderstanding over a verbal request. However, we cannot refuse to respond to your FOIA request if you elect to not put it in writing.</li>\r\n<li>Requests must identify the records you are seeking with \"reasonable specificity.\" It does not refer to or limit the volume or number of records that you are requesting; instead, it requires that you be specific enough in order to identify and locate the records that you are seeking, and also to determine an estimated cost to you for providing the requested information.</li>\r\n<li>Requests must ask for existing records or documents. FOIA allows you the right to inspect or copy records; however, it does not require the Town of Dayton to create a record that does not exist, nor does it apply to a situation where you are asking general questions about the the Town of Dayton.</li>\r\n<li>You may choose to receive records in printed form or electronically (via email or computer disk) in any existing format used by the Town of Dayton in the regular course of business.</li>\r\n</ul>','2012-08-22 19:41:41','2012-08-22 19:41:41'),(117,117,'en','<p> {{ content_holder_116 }}</p>','2012-08-22 19:41:41','2012-08-22 19:45:38'),(118,118,'en','<h1>Town Meetings</h1>\r\n<p>List your town meetings here</p>','2012-08-23 19:48:37','2012-08-23 20:56:31'),(119,119,'en','<p>{{ content_holder_116 }}<br /></p>','2012-08-23 19:48:37','2012-08-23 20:39:23');
/*!40000 ALTER TABLE `page_part_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `page_parts`
--
DROP TABLE IF EXISTS `page_parts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `page_parts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`page_id` int(11) DEFAULT NULL,
`title` varchar(255) DEFAULT NULL,
`body` text,
`position` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_page_parts_on_id` (`id`),
KEY `index_page_parts_on_page_id` (`page_id`)
) ENGINE=MyISAM AUTO_INCREMENT=120 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `page_parts`
--
LOCK TABLES `page_parts` WRITE;
/*!40000 ALTER TABLE `page_parts` DISABLE KEYS */;
INSERT INTO `page_parts` VALUES (1,1,'Body','',0,'2011-05-20 17:07:58','2012-08-19 17:52:18'),(82,42,'Body','<h1>Frequently Asked Questions</h1>\r\n<p>Listed below are answers to some of the most frequently asked questions by new residents. We hope you will find this information helpful.</p>\r\n<ul><li><a href=\"#utility-charges\">What are the payment and deposits for utility charges?</a>\r\n</li>\r\n<li><a href=\"#trash-collection\">What are the regulations about Trash Collection?</a>\r\n</li>\r\n<li><a href=\"#recycling-collection\">What are the regulations about Recycling Collection?</a>\r\n</li>\r\n<li><a href=\"/system/resources/2012/08/22/01_14_13_675_Dayton_Cross_Connection_Control_Program_Rev._6_25_12.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Cross Connection Control Program Rev. 6 25 12\">What is the Cross-Connection Control Program?</a>\r\n</li>\r\n<li><a href=\"#vehicle-tax\">What is the Vehicle License Tax in Dayton?</a>\r\n</li>\r\n<li><a href=\"#estate-tax\">What is the Real Estate Tax in Dayton?</a>\r\n</li>\r\n<li><a href=\"#open-fires\">I want to have a bonfire in my backyard. Are there any regulations about open fires? (Burn Permit)</a>\r\n</li>\r\n<li><a href=\"#dog-ordinance\">Are there any ordinances that I must follow with my dog?</a>\r\n</li>\r\n<li><a href=\"#snow-removal\">Is it mandatory that I clear my own property if it snow?</a>\r\n</li>\r\n<li><a href=\"#churches\">What churches are located in this area?</a>\r\n</li>\r\n<li><a href=\"#recreation\">Where is the nearest park?</a>\r\n</li>\r\n<li><a href=\"#child-care\">I am looking for child care while I go to work. Is there a trusted children\'s daycare in this area?</a>\r\n</li>\r\n<li><a href=\"#libraries\">Where can I find the nearest library in this area?</a>\r\n</li>\r\n</ul>\r\n<a name=\"utility-charges\"></a>\r\n<h2>Payment and Deposits for Utility Charges</h2>\r\n<p>Water, sewer and trash bills are to be paid at the Treasurer\'s Office in the Municipal Building, or checks may be mailed. A payment drop box is located near the drive-through window on the north side of the building for your convenience. Please make checks payable to: Town of Dayton, 125-B Eastview St., Dayton, VA 22821.</p>\r\n<p>A deposit of $75.00 is required for customers renting an apartment or house. The deposit is to be paid before water and sewer service is connected and will be refunded upon termination of service and full payment of the account. No deposit is required for customers owning or buying a home. The treasurer should be notified as soon as possible in case of water and sewer connection or disconnection.</p>\r\n<p>Water meters are read around the 20th day of each month. You should receive your water, sewer and trash bill within the first week of each month. All bills are to be paid on or before the 20th day following the billing date (if the due date falls on a Saturday, Sunday or holiday observ ed by the town, you will have through the next business day). If the Treasurer does not receive payment within 20 days of the billing date, a penalty shall be added to the bill equal to $1.50 or 10% of the amount of the bill, whichever is greater. If either the bill or penalty shall remain unpaid on the 25th day after the bill was issued, notices will be sent informing that water service will be disconnected in 14 days. Service shall be reinstated upon full payment of the current balance plus a $35.00 reconnection fee.</p>\r\n<p><a href=\"/about/town-departments/public-works#water-schedule\">Click here to view our current Water, Sewer and Trash Rate Schedule.</a>\r\n</p>\r\n<p><em>Water meters are not to be turned on or off except by authority of the Town Superintendent.</em>\r\n</p>\r\n<p><a href=\"#top\">Back to top\r\n</a>\r\n</p>\r\n<a name=\"trash-collection\"></a>\r\n<h2>Trash Collection</h2>\r\n<h3>Schedule for Collection:</h3>\r\n<p>Houshold trash is collected on Friday of each week.</p>\r\n<p>Recyclables are collected on Thursday of each week.</p>\r\n<p>All garden and lawn waste will be collected on Wednesday of each week, and must be placed in paper bio-degradable bags or tied in bundles not exceeding four feet in length and 50 pounds.</p>\r\n<h3>Placement of Containers:</h3>\r\n<p>Trash and recycling containers are provided by the town\'s refuse contractors, and are to be placed at the property line by the street or alley where they can be easily collected. Containers shall not be placed in the street or on the sidewalk in a manner whereby they will interfere with vehicular or pedestrian traffic.</p>\r\n<h3>Time of Placement:</h3>\r\n<p>All refuse must be placed out for collection by 7:00 a.m. on the day of collection, and no earlier than 5:00 p.m. on the afternoon preceding the collection day. Containers must be removed to the side or rear of the structure no later than 8:00 a.m. of the day following collection.</p>\r\n<h3>Fees:</h3>\r\n<p>The fee for the collection of refuse is $17.45 per month for residential collection and $19.50 for businesses. An additional fee is charged for all tires collected. Small tires--off rim are $2.00 each, large tires--off rim are $3.00 each, and tires on rim are $5.00 each. Charges for tires will be added to the water bill. Tires will be picked up on Heavy Trash Day (first Tuesday of each month).</p>\r\n<h3>Type of Refuse Collected:</h3>\r\n<p>The town will collect all garbage, rubbish and acceptable categories of refuse provided that the town superintendent shall have the right to determine what refuse is acceptable depending upon its quantity and type.</p>\r\n<h3>Refuse NOT Acceptable for Disposal:</h3>\r\n<ul><li>Dangerous materials or substance such as poisons, acids, caustics, infected materials, explosives, hot ashes or materials burning.</li>\r\n<li>Materials resulting from construction or demolition of buildings and structures or from the clearance of vacant or improved property in preparation for construction or occupancy. The town superintendent shall have the right to accept this refuse upon negotiating a fee for collection.</li>\r\n<li>All large and bulky materials, such as motor vehicles or parts of motor vehicles, tree trunks and stumps that may require special preparation and processing for disposal.</li>\r\n<li>Any materials, which create an unusually bad odor such as manure or rotten and unhatched eggs.</li>\r\n<li>Bodies of dead animals</li>\r\n</ul>\r\n<h3>Recycling Collection:</h3>\r\n<p>Recyclables are collected on Thursdays of each week. <a href=\"http://www.daytonva.us/documents/DaytonRecyclingProgram.pdf\" title=\"http://www.daytonva.us/documents/DaytonRecyclingProgram.pdf\" target=\"_blank\">Click here for details of the the Town\'s Recycling Program.</a>\r\n</p>\r\n<h3>Regulations Concerning Containers:</h3>\r\n<p>Trash containers are provided by the town\'s refuse contractor, Waste Management. Recycling bins are provided by the Town\'s recycling contractor, Green Earth. These containers must remain with the property if the occupant moves out; otherwise, a fee will be imposed to cover the cost of replacing the container.</p>\r\n<p>All trash set out for collection in the town must be placed in the trash containers provided by the town\'s contractors. In the event there is more trash than the container can hold, it must be placed in plastic trash bags of adequate strength to contain the contents, and placed beside the trash container. The Town will not be responsible for the collection of materials in plastic bags if such bags are torn or overloaded so as to prevent normal handling.</p>\r\n<p>All recycling materials set out for collection must be placed in recycling bins, and in a manner so as to prevent scattering of the contents prior to collection.</p>\r\n<p>Weeds, brush or trimmings will be collected only if tied in bundles not exceeding five feet in length and reasonable size to allow convenient handling.</p>\r\n<p>Town shall have the right to decline to collect any material set out for regular collection.</p>\r\n<p>No liquid shall be placed in the receptacle for collection.</p>\r\n<p>Hot ashes shall not be placed in any combustible container, or any container, which also contains combustible materials.</p>\r\n<h3>Heavy Trash Collection:</h3>\r\n<p>The first Tuesday of each month has been set aside for collection of appliances, furniture or materials in containers, which exceed the 50-pound limit. There is no additional charge for heavy trash collection other than for tires (see Fees).</p>\r\n<p><a href=\"#top\">Back to top\r\n</a>\r\n</p>\r\n<a name=\"vehicle-tax\"></a>\r\n<h2>Vehicle License Tax</h2>\r\n<p>The Town of Dayton imposes a vehicle license tax upon every motor vehicle, trailer and semitrailer regularly garaged, stored, or parked in the Town of Dayton, and used on the streets and highway of this town. The Town Vehicle License Fee expires on April 15th each year. The fee may be paid at the Town Treasurer\'s office. Persons moving to Dayton after April 15th are required to pay the fee immediately upon assuming residency unless they have paid a fee from anywhere in Virginia. Those purchasing vehicles have a grace period of 10 days to pay the fee. Any change of vehicle ownership requires you contact the Treasurer\'s Office in order to transfer it to another vehicle. On October 1st, the vehicle license fee is one-half the cost, and on January 15th, it is one-third the cost.</p>\r\n<p><a href=\"#top\">Back to top\r\n</a>\r\n</p>\r\n<a name=\"estate-tax\"></a>\r\n<h2>Real Estate Taxes</h2>\r\n<p>The rate of tax on real estate in the Town of Dayton is $0.08 per $100.00 assessed value. Tax tickets are mailed out twice a year during the months of May and November and are due upon receipt of the bill. A 5% penalty is added after June 5th and December 5th. Tax payments can be made at the Treasurer\'s Office or by mail.</p>\r\n<p><a href=\"#top\">Back to top\r\n</a>\r\n</p>\r\n<a name=\"open-fires\"></a>\r\n<h2>Open Fires</h2>\r\n<p>No open fires shall be kindled or maintained before 4:00 p.m. or within 50 feet of any building; nor shall any open fire be left attended. See Dayton Town Code on Fire Prevention\r\n\r\n. Also, a <a href=\"http://www.rockinghamcountyva.gov/search.aspx?criteria=burn+permit\" title=\"http://www.rockinghamcountyva.gov/search.aspx?criteria=burn+permit\" target=\"_blank\">Burn Permit\r\n</a> is required from Rockingham County for open fires in the Town of Dayton. </p>\r\n<p><a href=\"#top\">Back to top\r\n</a>\r\n</p>\r\n<a name=\"dog-ordinance\"></a>\r\n<h2>Dog Ordinance</h2>\r\n<p>It shall be unlawful for the owner of any dog to allow the same to go upon the private property of another person or to run at large upon the streets of the town. Any person found guilty of violating this ordinance shall be guilty of a Class 3 misdemeanor, and a fine of not more than $500 shall be imposed.</p>\r\n<p><a href=\"#top\">Back to top\r\n</a>\r\n</p>\r\n<a name=\"snow-removal\"></a>\r\n<h2>Snow Removal</h2>\r\n<p>Town Ordinance 2-64 requires that all persons occupying, owning or having charge of any property within the town shall be required to remove the snow from the entire sidewalk in front of such property, within six daylight hours after the snow has ceased to fall. Failure to comply with these requirements will result in a fine of $5.00 for each offense, and the town superintendent may have the snow cleaned off at the expense of the owner or tenant.</p>\r\n<p><a href=\"#top\">Back to top\r\n</a>\r\n</p>\r\n<a name=\"churches\"></a>\r\n<h2>Churches</h2>\r\n<ul><li>Christ Gospel Church: 290 Eastview Street</li>\r\n<li>Dayton Church of the Brethren: 202 Main Street</li>\r\n<li>Dayton Mennonite Church: 4887 John Wayland Highway</li>\r\n<li>Dayton United Methodist Church: 215 Ashby Street</li>\r\n<li>Shepherd of the Valley Lutheran Church: 229 Main Street</li>\r\n<li>Valley Friends Meeting: 363 High Street</li>\r\n</ul>\r\n<p><a href=\"#top\">Back to top\r\n</a>\r\n</p>\r\n<a name=\"recreation\"></a>\r\n<h2>Recreation</h2>\r\n<p>The Town of Dayton provides three parks for the community: </p>\r\n<p>Cooks Creek Park: 230 Bowman Road</p>\r\n<p>Phibbs Park: Located on the corner of Thompson Street & West View Street at the Dayton United Methodist Church.</p>\r\n<p>Sunset Park: 145 Sunset Drive</p>\r\n<p>Shelters may be reserved at any of these parks for a fee of $10.00 (no fee for non-profit organizations). Reservations may be made by calling the Municipal Building at 879-2241.</p>\r\n<p>Rockingham County Department of Parks and Recreation sponsors various recreational activities for all ages. For information, call 564-3160.</p>\r\n<p><a href=\"#top\">Back to top\r\n</a>\r\n</p>\r\n<a name=\"child-care\"></a>\r\n<h2>Child Care</h2>\r\n<p>The Little Treasurers Child Care Center (children 6 weeks - 12 years) is located at 202 Main Street, Dayton. For information call 879-2010.</p>\r\n<p><a href=\"#top\">Back to top\r\n</a>\r\n</p>\r\n<a name=\"libraries\"></a>\r\n<h2>Libraries</h2>\r\n<p>The main branch of the Massanutten Regional Library is located in Harrisonburg at 174 South Main St. For information, call 434-4475 or visit their website at <a href=\"http://www.mrlib.org/Home.aspx\" title=\"http://www.mrlib.org/Home.aspx\" target=\"_blank\">www.mrlib.org</a>. </p>\r\n<p>The North River Library (a branch of the Massanutten Regional Library) is located at 118 Mt. Crawford Ave. in Bridgewater. For information, call 828-4492 or visit the main branch’s website listed above.</p>\r\n<p><a href=\"#top\">Back to top\r\n</a>\r\n</p>',0,'2012-08-19 18:12:03','2012-08-23 14:35:26'),(83,42,'Side Body','<p>{{ content_holder_118 }}</p>',1,'2012-08-19 18:12:03','2012-08-23 14:35:26'),(84,43,'Body','<h1>Links</h1>\r\n<h2>Local Businesses</h2>\r\n<div class=\"pdf\">\r\n<p><a href=\"/system/resources/2012/08/23/21_53_51_304_Dayton_Businesses.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Businesses\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<a href=\"/system/resources/2012/08/23/21_53_51_304_Dayton_Businesses.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Businesses\" target=\"_blank\">(open PDF) Local Businesses - Directory with links to websites</a>\r\n</p>\r\n</div>\r\n<div style=\"clear:both\"></div>\r\n<h2>Local Schools</h2>\r\n<ul><li><a href=\"http://www.rockingham.k12.va.us/\" title=\"http://www.rockingham.k12.va.us/\" target=\"_blank\">Rockingham County Public Schools</a>\r\n</li>\r\n<li><a href=\"http://blogs.rockingham.k12.va.us/jwes/\" title=\"http://blogs.rockingham.k12.va.us/jwes/\" target=\"_blank\">John Wayland Elementary School</a>\r\n</li>\r\n<li><a href=\"http://www.rockingham.k12.va.us/WSPMS/wspms.html\" title=\"http://www.rockingham.k12.va.us/WSPMS/wspms.html\" target=\"_blank\">Wilbur Pence Middle School</a>\r\n</li>\r\n<li><a href=\"http://www.rockingham.k12.va.us/TAHS/tahs.html\" title=\"http://www.rockingham.k12.va.us/TAHS/tahs.html\" target=\"_blank\">Turner Ashby High School</a>\r\n</li>\r\n<li><a href=\"http://blogs.rockingham.k12.va.us/dlc/\" title=\"http://blogs.rockingham.k12.va.us/dlc/\" target=\"_blank\">Dayton Learning Center</a>\r\n</li>\r\n<li><a href=\"http://www.rockingham.k12.va.us/mtc/MTC.html\" title=\"http://www.rockingham.k12.va.us/mtc/MTC.html\" target=\"_blank\">Massanutten Technical Center</a>\r\n</li>\r\n</ul>\r\n<h2>Local Organizations </h2>\r\n<ul><li><a href=\"http://abcdayton.com/\" title=\"http://abcdayton.com/\" target=\"_blank\">ABCDayton (Arts & Business Connection) </a>\r\n</li>\r\n<li><a href=\"http://www.artisanscourtyard.org/\" title=\"http://www.artisanscourtyard.org/\" target=\"_blank\">Artisans Courtyard of Dayton</a>\r\n</li>\r\n<li><a href=\"http://www.legion.org/\" title=\"http://www.legion.org/\" target=\"_blank\">Dayton American Legion</a>\r\n</li>\r\n<li><a href=\"http://www.heritagecenter.com/Fort%20Harrison/fortharrison.html\" title=\"http://www.heritagecenter.com/Fort%20Harrison/fortharrison.html\" target=\"_blank\">Fort Harrison, Inc. (Daniel Harrison House) </a>\r\n</li>\r\n<li><a href=\"http://www.heritagecenter.com/\" title=\"http://www.heritagecenter.com/\" target=\"_blank\">Harrisonburg-Rockingham Historical Society Heritage Museum</a>\r\n</li>\r\n<li><a href=\"http://www.mrlib.org/Home.aspx\" title=\"http://www.mrlib.org/Home.aspx\" target=\"_blank\">Massanutten Regional Library</a>\r\n</li>\r\n<li><a href=\"http://www.mrlib.org/LocationsHours/NorthRiverLibrary.aspx\" title=\"http://www.mrlib.org/LocationsHours/NorthRiverLibrary.aspx\" target=\"_blank\">North River Library</a>\r\n</li>\r\n</ul>\r\n<p><a href=\"http://www.hrchamber.org/\" title=\"http://www.hrchamber.org/\" target=\"_blank\">Harrisonburg-Rockingham Chamber of Commerce</a>\r\n</p>\r\n<p><a href=\"http://www.rockinghamcountyva.gov/\" title=\"http://www.rockinghamcountyva.gov/\" target=\"_blank\">Rockingham County</a>\r\n</p>\r\n<ul><li><a href=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=122\" title=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=122\" target=\"_blank\">Burn Permits</a>\r\n</li>\r\n<li><a href=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=106\" title=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=106\" target=\"_blank\">Landfill</a>\r\n</li>\r\n<li><a href=\"http://rockingham.gisbrowser.com/home.cfm\" title=\"http://rockingham.gisbrowser.com/home.cfm\" target=\"_blank\">Geographic Information System (GIS)</a>\r\n</li>\r\n</ul>\r\n<p><a href=\"http://www.visitshenandoah.org/Home.aspx\" title=\"http://www.visitshenandoah.org/Home.aspx\" target=\"_blank\">Shenandoah Valley Travel Guide</a>\r\n</p>\r\n<p><a href=\"http://www.rhspca.org/\" title=\"http://www.rhspca.org/\" target=\"_blank\">SPCA</a>\r\n</p>\r\n<p><a href=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=69\" title=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=69\" target=\"_blank\">Voter Registration and Information</a> </p>',0,'2012-08-19 18:12:21','2012-08-23 17:58:36'),(85,43,'Side Body','<p>{{ content_holder_118 }}</p>',1,'2012-08-19 18:12:21','2012-08-23 17:58:36'),(86,44,'Body','<h1>Downloads</h1>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_17_30_218_Business_License_Application_Regular_2012.pdf?iframe=true&width=1000&height=1200\" title=\"Business License Application Regular 2012\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_218_Business_License_Application_Regular_2012.pdf?iframe=true&width=1000&height=1200\" title=\"Business License Application Regular 2012\">(open PDF) Business License Application (Regular)</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_192_Business_License_Application_Contractors_2012.pdf?iframe=true&width=1000&height=1200\" title=\"Business License Application Contractors 2012\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_192_Business_License_Application_Contractors_2012.pdf?iframe=true&width=1000&height=1200\" title=\"Business License Application Contractors 2012\" target=\"_blank\">(open PDF) Business License Application (Contractors)</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_13_07_157_Autumn_Celebration_Vendor_Application_and_Info.pdf?iframe=true&width=1000&height=1200\" title=\"Autumn Celebration Vendor Application And Info\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_13_07_157_Autumn_Celebration_Vendor_Application_and_Info.pdf?iframe=true&width=1000&height=1200\" title=\"Autumn Celebration Vendor Application And Info\" target=\"_blank\">(open PDF) Dayton Autumn Celebration Vendor Application</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_261_Dayton_Charter_and_Code_of_Ordinances.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Charter And Code Of Ordinances\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_261_Dayton_Charter_and_Code_of_Ordinances.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Charter And Code Of Ordinances\" target=\"_blank\">(open PDF) Dayton Charter and Code of Ordinances</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_236_Comprehensive_Plan_2007_Website.pdf?iframe=true&width=1000&height=1200\" title=\"Comprehensive Plan 2007 Website\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_236_Comprehensive_Plan_2007_Website.pdf?iframe=true&width=1000&height=1200\" title=\"Comprehensive Plan 2007 Website\" target=\"_blank\">(open PDF) Dayton Comprehensive Plan</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_11_26_855_Newsletters_2011_Combined.pdf?iframe=true&width=1000&height=1200\" title=\"Newsletters 2011 Combined\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_11_26_855_Newsletters_2011_Combined.pdf?iframe=true&width=1000&height=1200\" title=\"Newsletters 2011 Combined\" target=\"_blank\">(open PDF) Dayton Discovery Newsletters 2011 (Listings)</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_11_39_292_Newsletters_2012_Combined.pdf?iframe=true&width=1000&height=1200\" title=\"Newsletters 2012 Combined\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_11_39_292_Newsletters_2012_Combined.pdf?iframe=true&width=1000&height=1200\" title=\"Newsletters 2012 Combined\" target=\"_blank\">(open PDF) Dayton Discovery Newsletters 2012 (Listings)\r\n</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_356_Economic_Development_Study_May_2012.pdf?iframe=true&width=1000&height=1200\" title=\"Economic Development Study May 2012\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_356_Economic_Development_Study_May_2012.pdf?iframe=true&width=1000&height=1200\" title=\"Economic Development Study May 2012\" target=\"_blank\">(open PDF) Economic Development Study</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_441_Employment_Application.pdf?iframe=true&width=1000&height=1200\" title=\"Employment Application\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_441_Employment_Application.pdf?iframe=true&width=1000&height=1200\" title=\"Employment Application\" target=\"_blank\">open PDF) Employment Application</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_462_Home_Occupation_Permit_Application.pdf?iframe=true&width=1000&height=1200\" title=\"Home Occupation Permit Application\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_462_Home_Occupation_Permit_Application.pdf?iframe=true&width=1000&height=1200\" title=\"Home Occupation Permit Application\" target=\"_blank\">(open PDF) Home Occupation Permit Application</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_482_Meals_Tax_Report_Form.pdf?iframe=true&width=1000&height=1200\" title=\"Meals Tax Report Form\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_482_Meals_Tax_Report_Form.pdf?iframe=true&width=1000&height=1200\" title=\"Meals Tax Report Form\" target=\"_blank\">(open PDF) Meals Tax Form</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_506_Water_Quality_Report.pdf?iframe=true&width=1000&height=1200\" title=\"Water Quality Report\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_506_Water_Quality_Report.pdf?iframe=true&width=1000&height=1200\" title=\"Water Quality Report\" target=\"_blank\">(open PDF) Water Quality Report</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_15_13_961_Zoning_Permit_Application.pdf?iframe=true&width=1000&height=1200\" title=\"Zoning Permit Application\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_15_13_961_Zoning_Permit_Application.pdf?iframe=true&width=1000&height=1200\" title=\"Zoning Permit Application\" target=\"_blank\">(open PDF) Zoning Permit Application</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n</div>',0,'2012-08-19 18:12:43','2012-08-22 19:10:37'),(87,44,'Side Body','<p>{{ content_holder_118 }}</p>',1,'2012-08-19 18:12:43','2012-08-22 19:10:37'),(2,1,'Side Body','',1,'2011-05-20 17:07:58','2012-08-19 17:52:18'),(3,2,'Body','<h2>Sorry, there was a problem...</h2>\r\n<p>The page you requested was not found.</p>\r\n<p><a href=\"/\">Return to the home page</a>\r\n</p>',0,'2011-05-20 17:07:58','2011-11-28 19:37:52'),(90,46,'Body','<h1>The History of Dayton, VA</h1>\r\n<p>The Town of Dayton is one of the oldest settled communities in Rockingham County, and is the County\'s second oldest incorporated town. The Dayton area was first settled in the mid 1740s, when because of the fertile land and abundance of fresh spring water, settlers located along Cook\'s Creek. </p>\r\n<p>Daniel Harrison (c. 1702-1770) came into the Shenandoah Valley from Delaware in 1737 with his entire family. After settling initially in what is now the northeastern part of Rockingham County, Daniel Harrison moved in 1745 to the area of Cook\'s Creek and about 1748 built his stone house on a rise above the Creek. </p>\r\n<p>The village grew as farming families who traced their roots to England, Scotland and Ireland arrived. By the 1780s, Mennonite families began settling in this lush, fertile valley and added much to the cultural make-up of Dayton. </p>\r\n<p>Another family living near Harrison was that of Daniel Rife. Rife had a log cabin in the area of the present college building and the original name given to the town was his: Rifetown or Rifesville. A post office under the latter name was established July 24, 1832. However, the following year on March 6, 1833, the Virginia Legislature passed an act providing that a tract of land of not more than thirty-five acres, the property of Daniel Rife and others, be established as a town by the name of Dayton. Just why the town was renamed has never been determined. Jonathan Dayton, who ratified the Constitution in New Jersey in 1787, went west and bought or traded land with the Indians along the Ohio River. The city named after him in Ohio is, of course, large and well-known. No direct connection is known between this small town in Virginia and Jonathan Dayton or the city in Ohio. </p>\r\n<p>Dayton with its twenty-six houses was incorporated May 20, 1852, soon after the completion of the Warm Spring-Harrisonburg Turnpike. Dayton was incorporated again in March 1880 because of continued growth. The town government was enlarged from a Mayor and trustees to a Mayor and Council, and a Town Sergeant and Clerk were appointed. </p>\r\n<p>The town prospered, although it was seriously threatened during the Civil War. In 1864, one of Union General Sheridan\'s officers was killed by a Confederate scout between Dayton and Harrisonburg. Sheridan, as a reprisal, ordered all structures within five miles burned. Lt. Col. Thomas F. Wildes of the 116th Ohio had been ordered to guard the grist mills against smuggling to Confederate troops. When Wildes received the order to burn the town, he delayed execution and sent a messenger to General Sheridan, pleading with him and telling of the kindness of the people of Dayton. Meanwhile, the Dayton residents removed their possessions to the fields. Dense smoke rising from burning farmhouses and barns could be seen. Just before Dayton homes were to be torched, the countermanding order arrived. </p>\r\n<p>Dayton was a cultural center for many years. In 1878, the publishing firm, first established by Joseph Funk in Singers Glen, was moved to Dayton by his grandsons. The Ruebush-Kieffer Printing and Publishing Company was the largest publisher in Virginia at the turn of the century, specializing in music. </p>\r\n<p>The Shenandoah College and Conservatory of Music (now Shenandoah University) was organized in 1875 under the leadership of Rev. A.P. Funkhouser. This institution was a major factor in the life of Dayton until 1960 when it moved to Winchester. College Street earned its name from the school and many of the buildings along this avenue served as part of the campus. </p>\r\n<p><img src=\"/system/images/BAhbBlsHOgZmSSI2MjAxMi8wOC8yMi8xOV81Nl8wNV82MDBfaGlzdG9yeV9pbmZhbnRyeV9iYW5kLmpwZwY6BkVU/history_infantry_band.jpg\" title=\"Infantry Band\" style=\"float:left; padding: 0px 15px 15px 0px; margin: 0px;\" alt=\" rel=\" width=\"189\" height=\"146\" class=\"add-caption\" /><em>At left, the 116th Infantry Band appears in formation in France. The band was organized at Shenandoah College under the direction of Prof. W. H. Ruebush and served from the Mexican border to Europe. In addition to playing their instruments, members provided first-aid and carried stretchers. Photo courtesy <a href=\"http://www.heritagecenter.com\" title=\"http://www.heritagecenter.com\" target=\"_blank\">Harrisonburg- Rockingham Historical Society Heritage Museum.</a>\r\n</em>\r\n</p>\r\n<p>The Dayton of today still bears many signs of its rich past and history. For those who call the Shenandoah Valley and Dayton home, as well as those who come to visit, there is much in the present and future to be proud of, as well. </p>\r\n<p>The real beauty of the town is its people. Dayton is a blend of families who can trace their ancestors to a time when this community was just a stop on the Warm Spring Turnpike to those who have in recent years brought cultural richness of their own to the town. </p>\r\n<a name=\"walking\"></a>\r\n<h1>Walking Tour of Dayton</h1>\r\n<p>From a brochure of the <a href=\"http://www.heritagecenter.com/\" title=\"http://www.heritagecenter.com/\" target=\"_blank\">Harrisonburg- Rockingham Historical Society Heritage Museum</a>, download a map of Dayton:<img src=\"/system/images/BAhbBlsHOgZmSSItMjAxMi8wOC8yMi8yMF8wMV8wN180NTVfd2Fsa2luZ190b3VyLmpwZwY6BkVU/walking_tour.jpg\" title=\"walking_tour\" alt=\"walking_tour\" rel=\"225x255\" width=\"152\" height=\"117\" class=\"add-caption\" style=\"float:right;\" /></p>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_09_33_217_Map_of_Dayton.pdf?iframe=true&width=1000&height=1200\" title=\"Map Of Dayton\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Map of Dayton\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" />\r\n</a>\r\n<p><a href=\"/system/resources/2012/08/22/01_09_33_217_Map_of_Dayton.pdf?iframe=true&width=1000&height=1200\" title=\"Map Of Dayton\" target=\"_blank\"></a>\r\n<a href=\"/system/resources/2012/08/22/01_09_33_217_Map_of_Dayton.pdf?iframe=true&width=1000&height=1200\" title=\"Map Of Dayton\" target=\"_blank\">(open PDF) Map Of Dayton</a>\r\n</p>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n<p>Dayton is one of the most distinctive of several small towns lining the Harrisonburg - Warm Springs Turnpike. The Initial settlement goes back to about 1745 when Daniel Harrison moved to this area, probably building his stone house about 1749. By the time of the Revolution a road was constructed through the Harrison property. With an increased demand for iron and the growth of Miller\'s Iron Works at Mossy Creek, several miles south of the Harrison\'s\' house, the road was extended increasing the travel through the small community. In 1828, Daniel Rife began to sell lots along the then main road, now College Street. In 1831-32, the present Main Street was opened as part of the Harrisonburg-Warm Springs Turnpike. A post office, Rifesville, was established in 1832. On March 6, 1833, an Act of the Virginia Legislature established the town of Dayton. The town prospered, although it was seriously threatened by the Civil War. In 1878, a publishing firm, first established in Singers Glen by Joseph Funk, was moved to Dayton by Funk\'s grandsons, Ephraim Reubush and Aldine Kieffer. They Specialized in Shaped note music and by the turn-of the-century were the largest music publishing house in Virginia. From 1875 until 1960, Shenandoah College and Conservatory of Music was located in Dayton, further farming and poultry center with many Old Order Mennonites living in the area. New sections have sprung up in the west, but the older part of town is largely unchanged. Throughout the quiet streets some very picturesque and richly decorated buildings can be found. </p>\r\n<p>Directions for the Walking Tour of Dayton begin at the Shenandoah Valley Folk Art and Heritage Center, located at 382 High Street. The Heritage Center offers exhibits relating to the history and folk life of the Shenandoah Valley. Parking is available at the museum.<strong> It may be helpful to view a Map of Dayton while you read. </strong>\r\n</p>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_09_33_217_Map_of_Dayton.pdf?iframe=true&width=1000&height=1200\" title=\"Map Of Dayton\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Map of Dayton\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" />\r\n</a>\r\n<p><a href=\"/system/resources/2012/08/22/01_09_33_217_Map_of_Dayton.pdf?iframe=true&width=1000&height=1200\" title=\"Map Of Dayton\" target=\"_blank\"></a>\r\n<a href=\"/system/resources/2012/08/22/01_09_33_217_Map_of_Dayton.pdf?iframe=true&width=1000&height=1200\" title=\"Map Of Dayton\" target=\"_blank\">(open PDF) Map Of Dayton</a>\r\n</p>\r\n</div>\r\n<h3>FROM THE HERITAGE CENTER PARKING LOT, MAKE A RIGHT ON HIGH ST., THEN MAKE THE FIRST RIGHT ON TO BOWMAN RD. </h3>\r\n<p><strong>1.  215 Bowman Road (Cromer-Trumbo House) </strong>\r\n<br /> The Cromer-Trumbo House and Property now houses the Harrisonburg Rockingham Historical Society/Heritage Center Built about 1840 of brick, this is one of a cluster of early brick houses built at the north end of town. The rear ell has a log core which predates the brick portion. The small house in front served as a shoe repair shop for many years. </p>\r\n<p> Across the meadow is the Daniel Harrison House, a 1749 stone structure open as a house museum. This strongly built house served as a place of refuge for residents of the area fleeing from the marauding Indians during the 1750\'s and 1760\'s. It is a national and Virginia registered historic landmark. </p>\r\n<h3>FOLLOW BOWMAN RD. TO COLLEGE ST. (Rt. 701 on the map).  MAKE A RIGHT ONTO COLLEGE ST. </h3>\r\n<p><strong>2.  377 College Street (Boyers House) </strong>\r\n<br />This mid-19th century structure is one of the few surviving log houses in Dayton and certainly is the best preserved. It is probably typical of domestic building in Dayton at this time. </p>\r\n<p><strong>3.  363 College Street (Dr. Elmer U. Hoenshal House)</strong>\r\n<br />The \"Bird Cage House\" was built by a Shenandoah College president in 1902. This picturesque cottage design is one of the finest examples of the Queen Anne style in Dayton. This house has a wrap-around porch, gingerbread trim, gables, and metal spires. </p>\r\n<p><strong>4.  355 College Street (Shenandoah College Building) </strong>\r\n<br />Currently serving as an apartment building, this 1930 Colonial Revival structure was built to serve as the College\'s administration building.</p>\r\n<p><img src=\"/system/images/BAhbBlsHOgZmSSIvMjAxMi8wOC8yMi8yMF8wNF8zNF85MzJfY29sbGVnZV9zdHJlZXQuanBnBjoGRVQ/college_street.jpg\" title=\"college_street\" alt=\"college_street\" rel=\"225x255\" width=\"206\" height=\"154\" style=\"float:left; margin:0px;\" /></p>\r\n<div style=\"clear:both;\"></div>\r\n<br />\r\n<p><strong>5.  340 College Street (pictured above) </strong>\r\n<br />Across the street is Howe Memorial Hall, the oldest building constructed by the college in 1899-1901. It is an excellent example of the Italianate-Gothic style used for many turn-of-the-century collegiate buildings. The construction includes heavy dark, castle like cornerstone and slit windows. </p>\r\n<p><strong>6.  325 College Street </strong>\r\n<br />The Kieffer Memorial Gymnasium and Auditorium of 1930 was also constructed in the Colonial Revival Style. The construction includes dark brick and stucco cornice. </p>\r\n<p><strong>7.  315 and 305 College Street (J. H. Ruebush and Professor J. H. Hall Houses) </strong>\r\n<br />These two Victorian homes built by Shenandoah College faculty in 1904 and 1898 respectively are very stylish structures built at the height of Dayton\'s fame as a musical center. Professor Hall was also involved with the Ruebush Kieffer Company for many years, and James Ruebush served as a head of the Music Department and late as a president of the Shenandoah College. Take special note on house 315 of the stained glass windows, border, star pattern, the rail on roof ridges, and the stone window sills. </p>\r\n<h3>CONTINUE DOWN COLLEGE ST. TO MILL ST.  MAKE A LEFT ONTO MILL ST., FOLLOWING IT TO MAIN ST. (Business Rt. 42 on the map). </h3>\r\n<p><strong>8.  Corner of Mill Street and Main Street (Cannon and Markers) </strong>\r\n<br />On this corner sits a World War I German artillery piece and memorial placards. The cannon was the largest field piece brought back from Europe by the United States Government after WWI. The cannon was given to Dayton in honor of it being the smallest town that sent a complete regimental band to Europe during the war. It was restored in 1990 and a marker was dedicated to area veterans of all wars. </p>\r\n<p>On the memorial is one of the few markers in the South dedicated to a Union Army officer, Lt. Col. Thomas R. Wildes of the 116th Ohio. In 1864, one of Sheridan\'s engineers was killed by a Confederate scout. As a reprisal, Sheridan ordered the burning of the town of Dayton. While citizens moved their household goods from their homes into the fields, Wildes sent a messenger to Sheridan pleading their cause. Just before the homes were torched, the countermanding order arrived. </p>\r\n<h3>PROCEED SOUTH DOWN MAIN ST. </h3>\r\n<p><strong>9.  229 Main Street (Shepherd of the Valley Lutheran Church)</strong>\r\n<br />Formerly the Dayton United Brethren Church, this 1904 Gothic Revival Church is a major landmark on Dayton\'s commercial triangle. It was built after a 1903 fire burned the original church. Like many buildings in this area, the Eustler Brothers of Grottoes were the contractors and the brick was made and laid by the Shrum Brothers of Dayton. The church has a fine example of a four manual Moller Pipe Organ, from circa 1928. </p>\r\n<h3>CROSS MAIN ST. AND CONTINUE SOUTH ON MAIN ST. </h3>\r\n<p><strong>10.  250 Main Street (William H. Carpenter\' Cash and Trade)</strong>\r\n<br />On your left, next to the Post Office, is one of Dayton\'s finest examples of a late 19th century commercial building. It has a frame structure with a high fake front and elaborate cornice. This 1888 store retains its original porch. </p>\r\n<p><strong>11. 222 and 218 Main Street (the Thomas and Samuel Shrum Houses) </strong>\r\n<br />The triangle houses lining the east side of Main Street are Dayton\'s early brick structures dating to the mid-19th century. They survived the early 20th century fires that destroyed much in the center area of Dayton. </p>\r\n<p><strong>12.  150 Main Street (Coffman House)</strong>\r\n<br />This is the oldest house on the south end of Main Street, perhaps dating as early as 1820. It was initially part of the Coffman farm. In the early 20th century, the house was owned and enlarged by the Shrum family who operated a brickyard on adjoining lots. It is the only early 19th century Dayton house with a full basement containing a kitchen. </p>\r\n<h3>REMAINING ON MAIN ST. (Business Rt. 42 on the map), CROSS MASON ST. </h3>\r\n<p><strong>13.  95 Main Street (Michael Hollar House)</strong>\r\n<br />This 1906 house is an excellent and large example of the Queen-Anne -inspired style in Dayton. Among the fine details are the stained glass windows. Johnson Burtner was the builder of this house. </p>\r\n<h3>RETURN ALONG MAIN ST. (Business Rt. 42 on the map). </h3>\r\n<p><strong>14.  175 Main Street (Aldine Kieffer House)</strong>\r\n<br />Dating to the 1860\'s this brick structure with a richly decorated porch was owned by Aldine Kieffer, one of the founders of Ruebush-Kieffer Company, and probably the best known for the local group of song writers.</p>\r\n<p><strong>15.  201 Main Street (George W. Hedrick House)</strong>\r\n<br />This is one of the largest and most stylish Victorian houses dating to the 1870\'s in Dayton. A prominent local businessman G. W. Hedrick owned a prosperous buggy factory in Dayton. </p>\r\n<p><strong>16.  213 Main Street (Specialty Harness Company)</strong>\r\n<br />A large well-lighted structure, it was built a year after the 1911 town fire. It is an excellent example of early 20th Century factory architecture. </p>\r\n<h3>FOLLOW THE LEFT FORK OF THE TRIANGLE ONTO COLLEGE ST. (Rt. 701 on the map). </h3>\r\n<p><strong>17.  255 College Street (Ruebush-Kieffer Company)</strong>\r\n<br />The second of Ruebush-Kieffer Co.\'s printing offices in Dayton, this building has been altered very little since its construction and still houses a printing firm. The Ruebush Kieffer Company was one of the largest and most successful music printing houses in the south specializing in the preservation of the character-note form of musical instruction. </p>\r\n<h3>MAKE A LEFT ON TO CHERRY LN., CONTINUING PAST THREE STREETS TO EASTVIEW ST.  MAKE A RIGHT ONTO EASTVIEW ST. </h3>\r\n<p><strong>18.  285 and 275 Eastview Street </strong>\r\n<br />Along this street one can see typical early 20th Century Dayton homes. The first, 265 East View, was built about 1891 by the developer of this area, George W. Hedrick, for his own use. (He was also responsible for 201 Main Street-- see above.) The second, 275 East View Street, the Staugger House, dates to about 1910. </p>\r\n<h3>PROCEED TO THE BID OF EASTVIEW ST. TO MILL ST.  MAKE A RIGHT ONTO MILL ST. </h3>\r\n<p><strong>19.  290 Mill Street (Dayton Elementary and High School) </strong>\r\n<br />Now the Dayton Learning Center, the elementary and high schools were located there from 1914-1956. It remained and elementary school until 1989. </p>\r\n<p>Charles M. Robinson of Richmond was the architect of this building. He is responsible for a number of schools in Harrisonburg and Rockingham County, including the initial plans for what is now James Madison University. This Colonial Revival structure used the Corinthian order with a very fine cornice. It was one of the earliest of the brick consolidated schools in Rockingham County. The exterior has been restored. </p>\r\n<h3>CONTINUE DOWN MILL ST. TO THE HIGH ST. INTERSECTION </h3>\r\n<p><strong>20.  190 Mill Street</strong>\r\n<br />Johnson Burtner was the builder of this 1889 home. The corner lot shows to advantage his elaborate gable screens with arched sawn trim and wooden finials. </p>\r\n<h3>MAKE A LEFT ONTO HIGH ST. </h3>\r\n<p><strong>21.  322 High Street (Johnson Burtner House) </strong>\r\n<br />This 1895 Victorian home was the work of the local contractor, Johnson Burtner, and displays very fine woodwork on the elaborate front porch and gable decoration. </p>\r\n<p><strong>22.  340 High Street (C.A. Funkhouser House) </strong>\r\n<br />With its bay windows and a turret-style porch, this is one of the most stylish houses in Dayton. A large Palladian window pierces the front and a variation of this Palladian motif with leaded diamond panes embellishes the south side. </p>\r\n<p><strong>23. 363 High Street (Former Dayton Presbyterian Church) </strong>\r\n<br />Built around 1902 with Gothic revival detailing, this church has some very fine stained glass windows. </p>\r\n<h3>PROCEED DOWN HIGH ST. TO RETURN TO THE HERITAGE CENTER. </h3>',0,'2012-08-19 18:36:31','2012-08-22 17:37:41'),(91,46,'Side Body','<h4>The History of Dayton</h4>\r\n<br /> <ul><br /> <li> <a href=\"#top\">History</a> </li>\r\n<br /> <li> <a href=\"#walking\">A Walking Tour of Dayton</a> </li>\r\n<br /> </ul>',1,'2012-08-19 18:36:31','2012-08-22 17:37:41'),(92,47,'Body','',0,'2012-08-19 18:36:57','2012-08-21 19:35:22'),(93,47,'Side Body','<p>{{ content_holder_115 }}</p>',1,'2012-08-19 18:36:57','2012-08-21 19:35:22'),(94,48,'Body','<h1>Town of Dayton Government</h1>\r\n<a name=\"mayor-council\"></a>\r\n<h2>Mayor and Council</h2>\r\n<p>The Dayton Town Council invites you to attend its meetings held in the Council Chambers (north entrance adjacent to the drive-thru window) at the Dayton Municipal Building, 125 Eastview Street, on the second Monday of each month at 7:00 P.M. (unless otherwise announced). Called Council meetings and committee meetings are also open to the public and are posted at the Municipal Building and on the Town’s website as they are scheduled; Public Hearings are also advertised in The Daily News-Record.</p>\r\n<p>Elections for Council Members are held every two years. Term of office for the Mayor is two years, and four years for Council Members. Elections for Mayor and Council are held on Election Day, the first Tuesday in November (see <strong><a href=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=69\" title=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=69\" target=\"_blank\">Rockingham County Voter Registrar for additional information</a>\r\n</strong>). The voting precinct for Town of Dayton residents is located in the Council Chambers at the Dayton Municipal Building for all elections.  </p>\r\n<p><strong>Mayor</strong>:  <a href=\"mailto:[email protected]\" title=\"[email protected]\">Charles T. Long</a> (term ends 12/31/12)</p>\r\n<p><strong>Vice Mayor</strong>: <a href=\"mailto:[email protected]\" title=\"mailto:[email protected]\">Jeffrey S. McNeal</a>\r\n (term ends 12/31/14)</p>\r\n<p><strong><a href=\"/system/resources/2012/08/22/01_17_30_154_Budget_FY2013.pdf?iframe=true&width=1000&height=1200\" title=\"Budget Fy2013\"></a>Council Members</strong>: <br /><a href=\"mailto:[email protected]\" title=\"[email protected]\">Laura J. Daily</a> (term ends 12/31/12)<br /> <a href=\"mailto:[email protected]\" title=\"[email protected]\">Steven J. Dean</a> (term ends 12/31/14)<br /> <a href=\"mailto:[email protected]\" title=\"[email protected]\">Josh O. Lyons</a> (term ends 12/31/12) <br /> <a href=\"mailto:[email protected]\" title=\"[email protected]\">Gregory L. Trissel</a> (term ends 12/31/12)<br /> <a href=\"mailto:[email protected]\" title=\"mailto:[email protected]\">Jerry R. Critcher</a> (term ends 12/31/12) </p>\r\n<hr />\r\n<a name=\"council-committees\"></a>\r\n<h2>Council Committees</h2>\r\n<br />\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/18_42_12_945_Council_Committees_2012.pdf?iframe=true&width=1000&height=1200\" title=\"Council Committees 2012\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" title=\"Council Committees 2012\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" /></a>\r\n<a href=\"/system/resources/2012/08/22/18_42_12_945_Council_Committees_2012.pdf?iframe=true&width=1000&height=1200\" title=\"Council Committees 2012\" target=\"_blank\">(open PDF) Council Committees</a>\r\n<div style=\"clear:both\"></div>\r\n<hr />\r\n<a name=\"council-minutes\"></a>\r\n<h2>Council Minutes</h2>\r\n<p>2011 Council Minutes (Combined)</p>\r\n<a href=\"/system/resources/2012/08/22/18_44_19_111_Council_Minutes_2011_Combined.pdf?iframe=true&width=1000&height=1200\" title=\"Council Minutes 2011 Combined\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" /></a>\r\n<a href=\"/system/resources/2012/08/22/18_44_19_111_Council_Minutes_2011_Combined.pdf?iframe=true&width=1000&height=1200\" title=\"Council Minutes 2011 Combined\" target=\"_blank\">(open PDF) 2011 Council Minutes (Combined)</a>\r\n<div style=\"clear:both\"></div>\r\n<p>2012 Council Minutes (Separately)</p>\r\n<div style=\"padding-left:50px;\">\r\n<a href=\"/system/resources/2012/08/22/18_44_34_43_DTC_Minutes_1_9_12.pdf?iframe=true&width=1000&height=1200\" title=\"Dtc Minutes 1 9 12\" target=\"_blank\">DTC Minutes (1-9-12)</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/18_44_34_179_DTC_Minutes_2_6_12_Called_Mtg.pdf?iframe=true&width=1000&height=1200\" title=\"Dtc Minutes 2 6 12 Called Mtg\" target=\"_blank\">DTC Minutes (2-6-12)</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/18_44_34_200_DTC_Minutes_2_13_12.pdf?iframe=true&width=1000&height=1200\" title=\"Dtc Minutes 2 13 12\" target=\"_blank\">DTC Minutes (2-13-12)</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/18_44_34_221_DTC_Minutes_3_12_12.pdf?iframe=true&width=1000&height=1200\" title=\"Dtc Minutes 3 12 12\" target=\"_blank\">DTC Minutes (3-12-12)</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/18_44_34_243_DTC_Minutes_4_9_12.pdf?iframe=true&width=1000&height=1200\" title=\"Dtc Minutes 4 9 12\" target=\"_blank\">DTC Minutes (4-9-12)</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/18_44_34_262_DTC_Minutes_5_14_12.pdf?iframe=true&width=1000&height=1200\" title=\"Dtc Minutes 5 14 12\" target=\"_blank\">DTC Minutes (5-14-12)</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/18_44_34_280_DTC_Minutes_6_11_12.pdf?iframe=true&width=1000&height=1200\" title=\"Dtc Minutes 6 11 12\" target=\"_blank\">DTC Minutes (6-11-12)</a>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n<hr />\r\n<a name=\"code-of-ordinances\"></a>\r\n<h2>Charter and Code of Ordinances | Budget</h2>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/18_44_59_754_Town_of_Dayton_Charter_and_Code_of_Ordinances.pdf?iframe=true&width=1000&height=1200\" title=\"Town Of Dayton Charter And Code Of Ordinances\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/18_44_59_754_Town_of_Dayton_Charter_and_Code_of_Ordinances.pdf?iframe=true&width=1000&height=1200\" title=\"Town Of Dayton Charter And Code Of Ordinances\" target=\"_blank\">(open PDF) Town of Dayton Charter and Code of Ordinances</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_154_Budget_FY2013.pdf?iframe=true&width=1000&height=1200\" class=\"page_link pdf\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_154_Budget_FY2013.pdf?iframe=true&width=1000&height=1200\" class=\"page_link pdf\" target=\"_blank\">(open PDF) Budget 2012-2013</a>\r\n</p>\r\n<hr />\r\n</div>\r\n<div style=\"clear:both\"></div>\r\n<a name=\"dayton-planning-commision\"></a>\r\n<h2>Dayton Planning Commission</h2>\r\n<p>Planning Commission Members are appointed by the Council and serve a four year term.  The Planning Commission invites you to attend their meetings held in the Council Chambers (north entrance adjacent to the drive-thru window) at the Dayton Municipal Building, 125 Eastview Street, on the third Thursday of the month at 7:00 P.M. (unless otherwise announced). </p>\r\n<p><strong> Chairman</strong>:  Gerald R. Lehman (term ends 06/30/14) <br /> Rebecca S. Eberly (term ends 06/30/11) <br /> Kehris A. Snead (term ends 06/30/12) <br /> Gary W. Bowman, Jr. (term ends 06/30/13)<br /> Council Representative:  Charles T. Long</p>\r\n<div class=\"pdf\">\r\n<p><a href=\"/system/resources/2012/08/22/19_36_46_813_Planning_Commission_Minutes_2011_Combined.pdf?iframe=true&width=1000&height=1200\" title=\"Planning Commission Minutes 2011 Combined\" target=\"_blank\"><img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<a href=\"/system/resources/2012/08/22/19_36_46_813_Planning_Commission_Minutes_2011_Combined.pdf?iframe=true&width=1000&height=1200\" title=\"Planning Commission Minutes 2011 Combined\" target=\"_blank\">(open PDF Planning Commission Minutes 2011 (Combined)</a>\r\n</p>\r\n<div style=\"clear:both;\"></div>\r\n<p><a href=\"/system/resources/2012/08/22/19_36_32_537_DPC_Mintues_2012_Combined.pdf?iframe=true&width=1000&height=1200\" title=\"Dpc Mintues 2012 Combined\" target=\"_blank\"><img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<a href=\"/system/resources/2012/08/22/19_36_32_537_DPC_Mintues_2012_Combined.pdf?iframe=true&width=1000&height=1200\" title=\"Dpc Mintues 2012 Combined\" target=\"_blank\">(open PDF) Planning Commission Minutes 2012 (Combined)</a>\r\n</p>\r\n<div style=\"clear:both;\"></div>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_236_Comprehensive_Plan_2007_Website.pdf?iframe=true&width=1000&height=1200\" title=\"Comprehensive Plan 2007 Website\" target=\"_blank\"><img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_236_Comprehensive_Plan_2007_Website.pdf?iframe=true&width=1000&height=1200\" title=\"Comprehensive Plan 2007 Website\" target=\"_blank\">(open PDF) Dayton Comprehensive Plan</a>\r\n</p>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n<hr />\r\n<a name=\"zoning-boa\"></a>\r\n<h2>Board of Zoning Appeals</h2>\r\n<p>Members of the Board of Zoning Appeals are appointed by the Circuit Court of Rockingham County and serve a five year term. </p>\r\n<p><strong>Chairman</strong>: Roger C. Shoemaker <br /> Timothy C. Bocock<br /> Kitty H. Purcell<br /> Byron \"Dan\" Lee <br /> Kehris A. Snead<br />For more information on Zoning, see <strong><a href=\"/system/resources/2012/08/22/01_15_13_855_Town_Code_Title_9_Zoning.pdf?iframe=true&width=1000&height=1200\" title=\"Town Code Title 9 Zoning\">Town Code, Title 9, Zoning</a>\r\n</strong>\r\n<a href=\"/system/resources/2012/08/22/01_15_13_855_Town_Code_Title_9_Zoning.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Town Code Title 9 Zoning\">\r\n</a> (open PDF in web browser)</p>\r\n<hr />\r\n<a name=\"foia-requests\"></a>\r\n<h2>Freedom of Information Acts (FOIA) Requests</h2>\r\n<h3>Rights Responsibilities</h3>\r\n<p>The Virginia Freedom of Information Act (FOIA), located at § 2.2-3700 et seq. of the Code of Virginia, guarantees citizens of the Commonwealth and representatives of the media access to public records held by public bodies, public officials, and public employees.</p>\r\n<p>A public record is any writing or recording, regardless of whether it is a paper record, an electronic file, an audio or video recording, or any other format, that is prepared or owned by, or in the possession of a public body or its officers, employees or agents in the transaction of public business. All public records are presumed to be open, and may only be withheld if a specific, statutory exemption applies.</p>\r\n<p>The policy of FOIA states that the purpose of FOIA is to promote an increased awareness by all persons of governmental activities. In furthering this policy, FOIA requires that the law be interpreted liberally, in favor of access, and that any exemption allowing public records to be withheld must be interpreted narrowly.</p>\r\n\r\n<h3>Your FOIA Rights</h3>\r\n<ul><li>You have the right to request to inspect or receive copies of public records, or both.</li>\r\n<li>You have the right to request that any charges for the requested records be estimated in advance.</li>\r\n<li>If you believe that your FOIA rights have been violated, you may file a petition in district or circuit court to compel compliance with FOIA.</li>\r\n</ul>\r\n\r\n<h3>Making a Request for Records from the Town of Dayton</h3>\r\n<ul><li>You may request records by in person, U.S. Mail, fax, e-mail or over the phone. FOIA does not require that your request be in writing, nor do you need to specifically state that you are requesting records under FOIA.</li>\r\n<li>FOIA requests should be made by calling the Dayton Town Office at 540-879-2241 or by email at <a href=\"mailto:[email protected]\" title=\"[email protected]\">[email protected]</a>\r\n</li>\r\n<li>It may be helpful to both you and the person receiving your request to put your request in writing. This allows you to create a record of your request. It also gives us a clear statement of what records you are requesting, so that there is no misunderstanding over a verbal request. However, we cannot refuse to respond to your FOIA request if you elect to not put it in writing.</li>\r\n<li>Requests must identify the records you are seeking with \"reasonable specificity.\" It does not refer to or limit the volume or number of records that you are requesting; instead, it requires that you be specific enough in order to identify and locate the records that you are seeking, and also to determine an estimated cost to you for providing the requested information.</li>\r\n<li>Requests must ask for existing records or documents. FOIA allows you the right to inspect or copy records; however, it does not require the Town of Dayton to create a record that does not exist, nor does it apply to a situation where you are asking general questions about the the Town of Dayton.</li>\r\n<li>You may choose to receive records in printed form or electronically (via email or computer disk) in any existing format used by the Town of Dayton in the regular course of business.</li>\r\n</ul>',0,'2012-08-19 18:37:17','2012-08-22 18:24:49'),(95,48,'Side Body','<p>{{ content_holder_117 }}</p>',1,'2012-08-19 18:37:17','2012-08-22 18:24:49'),(96,49,'Body','<h1>Community Resources</h1>\r\n<a name=\"dayton-discovery\"></a>\r\n<h2>Dayton Discovery Newsletter</h2>\r\n<ul><li>Current and Past Newsletters (open each PDF in web browser).</li>\r\n<div class=\"pdf\">\r\n<div style=\"padding-left: 50px;\">\r\n<a href=\"/system/resources/2012/08/22/01_12_27_191_Summer_2012.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Summer 2012\">Summer Newsletter 2012</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/01_12_27_175_Spring_2012.pdf?iframe=true&width=1000&height=1200\" title=\"Spring 2012\" target=\"_blank\">Spring Newsletter 2012</a>\r\n\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/01_12_06_104_Winter_2011.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Winter 2011\">Winter Newsletter 2011</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/01_12_06_50_Fall_2011.pdf?iframe=true&width=1000&height=1200\" title=\"Fall 2011\" target=\"_blank\">Fall Newsletter 2011</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/01_12_06_85_Summer_2011.pdf?iframe=true&width=1000&height=1200\" title=\"Summer 2011\" target=\"_blank\">Summer Newsletter 2011</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/01_12_06_67_Spring_2011.pdf?iframe=true&width=1000&height=1200\" title=\"Spring 2011\" target=\"_blank\">Spring Newsletter 2011</a>\r\n<br />\r\n</div>\r\n</div>\r\n<li><span class=\"green\">Go Green—Go Paperless!</span> Receive the Dayton Discovery Newsletter electronically by sending an email to <a href=\"mailto:[email protected]\" title=\"[email protected]\">[email protected]</a>. In order to avoid duplication of mailing a paper copy, please include your name and service address along with the email address of where you would like the newsletter sent. Your email address will be kept private and only used for Town purposes.</li>\r\n<li>For newsletter comments and suggestions, email <a href=\"mailto:[email protected]\" title=\"[email protected]\">[email protected]</a> or call the Dayton Town Office at 540-879-2241.</li>\r\n</ul>\r\n<a name=\"dog-ordinance\"></a>\r\n<h3>Dog Ordinance </h3>\r\n<p>Town Code §1-68, states that no person shall permit any fowl or dog to be at large within the corporate limits of the town. For the purposes of this section, an animal may be deemed to be at large whenever it is off the property of its owner or custodian, and not under its owner’s or custodian’s immediate control. Any owner or custodian violating this section shall be guilty of a class 3 misdemeanor and a fine of not more than $500. The animal warden of Rockingham County is authorized to enforce all dog laws applicable within the town. </p>\r\n<a name=\"emergency\"></a>\r\n<h2>Emergency Awareness and Preparedness</h2>\r\n\r\n<p><a href=\"http://www.em.rockinghames.org\" title=\"http://www.em.rockinghames.org\" target=\"_blank\">Rockingham County Emergency Management</a>\r\n</p>\r\n<p><a href=\"http://www.vaemergency.gov\" title=\"http://www.vaemergency.gov\" target=\"_blank\">Virginia Department of Emergency Management</a>\r\n</p>\r\n<p><a href=\"http://www.fema.gov\" title=\"http://www.fema.gov\" target=\"_blank\">Federal Emergency Management Administration (FEMA)</a>\r\n</p>\r\n<p><a href=\"http://www.redcross.org\" title=\"http://www.redcross.org\" target=\"_blank\">American Red Cross</a>\r\n</p>\r\n<a name=\"employment\"></a>\r\n<h2>Employment Applications </h2>\r\n<p>The policy of the Town of Dayton is to provide equal employment opportunity without regard to race, color, religion, sex, age, marital status, veteran status, national origin, disability or political affiliation</p>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_441_Employment_Application.pdf?iframe=true&width=1000&height=1200\" title=\"Employment Application\">Employment applications</a> may be printed here or obtained at the Dayton Municipal Building during normal business hours. To request an application by mail, please call the Dayton Town Office at 540-879-2241. (open PDF in web browser)</p>\r\n<a name=\"open-fires\"></a>\r\n<h2>Open Fires</h2>\r\n<p>In accordance with the Town Code §1-58, no open fires shall be kindled or maintained before 4:00 p.m. or within 50 feet of any structure; nor shall any open fire be left unattended. In addition, it is <strong>required</strong> that a <a href=\"http://www.rockinghamcountyva.gov/search.aspx?criteria=burn+permit\" title=\"http://www.rockinghamcountyva.gov/search.aspx?criteria=burn+permit\" target=\"_blank\">burn permit</a> be obtained from Rockingham County for all open fires. </p>\r\n<a name=\"snow-removal\"></a>\r\n<h2>Snow Removal</h2>\r\n<p>Town Code §2-64 requires that all persons occupying, owning or having charge of any property within the town shall be required to remove the snow from the entire sidewalk in front of such property, within six daylight hours after the snow has ceased to fall. Failure to comply with these requirements will result in a fine of $5.00 for each offense, and the Town Superintendent may have the snow cleaned off at the expense of the owner or tenant. </p>\r\n<a name=\"miss-utility\"></a>\r\n<h2>Miss Utility of Virginia</h2>\r\n<p><a href=\"http://va811.com/\" title=\"http://va811.com/\" target=\"_blank\">\"Call Before You Dig\"</a>\r\n</p>\r\n<a name=\"dayton-map\"></a>\r\n<h2>Map of Dayton</h2>\r\n<div class=\"pdf\">\r\n<img src=\"/system/images/BAhbBlsHOgZmSSItMjAxMi8wOC8yMi8yMF8wMV8wN180NTVfd2Fsa2luZ190b3VyLmpwZwY6BkVU/walking_tour.jpg\" title=\"walking_tour\" alt=\"walking_tour\" rel=\"225x255\" width=\"152\" height=\"117\" class=\"add-caption\" style=\"float:right;\" />\r\n<a href=\"/system/resources/2012/08/22/01_09_33_217_Map_of_Dayton.pdf?iframe=true&width=1000&height=1200\" title=\"Map Of Dayton\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Map of Dayton\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" />\r\n</a>\r\n<p><a href=\"/system/resources/2012/08/22/01_09_33_217_Map_of_Dayton.pdf?iframe=true&width=1000&height=1200\" title=\"Map Of Dayton\" target=\"_blank\"></a>\r\n<a href=\"/system/resources/2012/08/22/01_09_33_217_Map_of_Dayton.pdf?iframe=true&width=1000&height=1200\" title=\"Map Of Dayton\" target=\"_blank\">(open PDF) Map Of Dayton</a>\r\n</p>\r\n</div>',0,'2012-08-19 18:37:38','2012-08-22 20:37:19'),(97,49,'Side Body','<p>{{ content_holder_116 }} \r\n</p>',1,'2012-08-19 18:37:38','2012-08-22 20:37:19'),(98,50,'Body','<h1>ADMINISTRATIVE</h1>\r\n<br />\r\n<h3>Town Superintendent | John D. Crim</h3>\r\n<p>Phone: (540) 879-2241, ext. 307 / Fax: (540) 879-2243</p>\r\n<p>125-B Eastview Street<br />Dayton, VA 22821</p>\r\n<p>Email: <a href=\"mailto:[email protected]\" title=\"[email protected]\">[email protected]</a> </p>',0,'2012-08-19 18:38:05','2012-08-21 19:38:30'),(99,50,'Side Body','<p>{{ content_holder_115 }}</p>',1,'2012-08-19 18:38:05','2012-08-21 19:38:30'),(100,51,'Body','<h1>Park Locations in Dayton, VA</h1>\r\n<p><img src=\"/system/images/BAhbBlsHOgZmSSI1MjAxMi8wOC8yNy8xOF8wN181MF8yNTBfU3Vuc2V0X1Bhcmtfd2ViX3NpdGUuanBnBjoGRVQ/Sunset_Park_web_site.jpg\" title=\"Sunset-Park-web-site\" alt=\"Sunset-Park-web-site\" rel=\"225x255\" width=\"400\" height=\"160\" class=\"add-caption\" /></p>\r\n<div style=\"clear:both\"></div>\r\n<p><strong>The Town of Dayton provides three parks for the community.   </strong>\r\n</p>\r\n<ul><li><strong>Cooks Creek Park:  </strong>230 Bowman Road</li>\r\n<li><strong>Phibbs Park:</strong>  Located Dayton United Methodist Church, on the corner of Thompson and Westview streets</li>\r\n<li><strong>Sunset Park:</strong>  145 Sunset Drive</li>\r\n</ul>\r\n<br />\r\n<br />\r\n<a name=\"shelter-reservations\"></a>\r\n<h2>Shelter Reservations and Information</h2>\r\n<br />\r\n<ul>\r\n<li>Shelters may be reserved at any of the Town parks for a fee of $10.00 (no fee for non-profit organizations).  Reservations may be made by calling the Dayton Municipal Building at 540-879-2241.</li>\r\n<li>Parks are open during daylight hours only.</li>\r\n<li>No alcoholic beverages or illegal drugs are allowed on park property.</li>\r\n<li>Dogs must be on a leash at all times.</li>\r\n<li>Doggie Waste Stations are available at Sunset and Cooks Creek parks for convenient pickup and disposal of pet waste.</li>\r\n<li>No loud music or noise—please be respectful of neighboring residents.</li>\r\n<li>Park restrooms are closed from fall until spring while the water is turned off to prevent frozen pipes.</li>\r\n</ul>\r\n\r\n<p>For information on sports and other recreational activities for all ages provided by the county, see <a href=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=304\" title=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=304\" target=\"_blank\">Rockingham County Recreation Department</a>. </p>',0,'2012-08-19 18:38:20','2012-08-27 14:08:36'),(101,51,'Side Body','<p>{{ content_holder_115 }}</p>',1,'2012-08-19 18:38:20','2012-08-27 14:08:36'),(102,52,'Body','<h1>POLICE DEPARTMENT</h1>\r\n<a name=\"dept-contact\"></a>\r\n<h3>Contact Information</h3>\r\n<p>125-A Eastview Street<br />Dayton, VA 22821</p>\r\n\r\n<h3>Need to speak with a police officer?\r\n</h3>\r\n<p><strong>EMERGENCY—CALL 911</strong>\r\n\r\nAll too often we are afraid to call 911 because we aren’t real sure that the situation requires an emergency response.  Don’t worry!  The emergency dispatchers will place your call on a priority list.  911 calls should be made for ANY situation that involves the safety or welfare of another.  Situations for 911 may include, but are not confined to:</p>\r\n<ul><li>Any act of violence</li>\r\n<li>A suspicious event or suspicious person.  </li>\r\n<li>Any medical emergency. </li>\r\n<li>Any road obstruction, such as broken water lines, power lines, or livestock in the road.</li>\r\n<li>A witnessed reckless driving event (try to get the tag!), or car crash.</li>\r\n</ul>\r\n\r\n<h3>NON-emergency calls pertaining to Dayton 540-879-2161</h3>\r\n<p>While Dayton provides police coverage 24 hours a day, 365 days a year, calling our office IS NOT the fastest way to reach a police officer when you need one right away.    Remember, for emergencies call 911.  If you simply have a question you can call 879-2161and speak with our administrative assistant, or leave a message with the individual officer’s voicemail. </p>\r\n<h3>Non-emergency calls 540-434-4436</h3>\r\n<p>You can call 434-4436 to have a dispatcher contact the on duty Dayton Police Officer if you feel your question needs immediate attention.  You may also use this number for dispatching our units to aggravations such as:</p>\r\n<ul><li>You’d like to ask a policeman a question, but don’t want to leave a message on their voicemail.</li>\r\n<li>Barking dogs</li>\r\n<li>Town Park bathrooms not being unlocked</li>\r\n<li>Loud music complaints or any other non-emergency situation.</li>\r\n</ul>\r\n<a name=\"police-chief\"></a>\r\n<h2>Chief of Police | Donald L. Conley</h2>\r\n<p>Phone: (540) 879-2161, ext. 320 / Fax: (540) 879-2824</p>\r\n<p>125-A Eastview Street<br />Dayton, VA 22821</p>\r\n<p>Email: <a href=\"mailto:[email protected]\" title=\"[email protected]\">[email protected]</a> </p>\r\n<p><img src=\"/system/images/BAhbBlsHOgZmSSItMjAxMi8wOC8yMi8yMF8xNl81MV83MTdfZGlua3lfY29ubGV5LmpwZwY6BkVU/dinky_conley.jpg\" title=\"dinky_conley\" alt=\"dinky_conley\" rel=\"225x255\" width=\"359\" height=\"242\" class=\"add-caption\" /></p>\r\n<p>\r\nChief Donald “Dinky” Conley graduated from Page County High School in 1981, and joined the U.S. Army’s 82nd Airborne. After an honorable discharge, he turned his attention to law enforcement. Like the best of ranking officers, Chief Conley began his career in patrol and worked his way to his present station. In 1987, Chief Conley joined the Massanutten Police Department, and in November of the same year, he became a deputy with the Greene County Sheriff’s Office.  After five years with Green County, he joined the Madison County Sheriff’s Office before joining the Dayton Police Department on July 1, 1998.   </p>\r\n<h2>Lieutenant | Daniel Hanlon</h2>\r\n<p>Lt. Daniel Hanlon began his law enforcement career with the Rockingham County Sheriff’s Office in 1998 where he served six months as a jailor before becoming a patrol deputy.  Lt. Hanlon joined the Rockingham County S.W.A.T. team in addition to his patrol assignment.  He also became a Department of Criminal Justice general instructor and specializes in teaching defensive tactics and firearms skills.  Lt. Hanlon joined the Dayton Police Department in 2001 as a patrolman, and has since added many more training certificates to his credentials.  Prior to becoming a policeman, Lt. Hanlon served with the United States Marine Corps during Desert Shield/Storm and achieved the rank of Sgt. before his honorable discharge in 1994.</p>\r\n<h2>Officer Aaron Will</h2>\r\n<p><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8yMF8xN18zMV84NzhfYWFyb25fd2lsbC5qcGcGOgZFVA/aaron_will.jpg\" title=\"aaron_will\" alt=\"aaron_will\" rel=\"225x255\" width=\"374\" height=\"267\" class=\"add-caption\" /></p>\r\n<p>Officer Aaron Will began his law enforcement career in May of 2004 with the Harrisonburg Police Department before joining the Dayton Police Department in May of 2006.  Officer Will holds a certificate in Administrative Justice from Blue Ridge Community College as well as multiple training courses, some of which include: Reed School of Interview and Interrogation, Basic Crime Scene Investigation, Highway Drug Interdiction, Basic Commercial Vehicle School, General Law Enforcement Instructor, Basic Gang Identification, Patrol Carbine Operator, Enhanced Active Shooter Course, Police Patrol Mountain Bike School, AR15/M4 Carbine Armorer School, and Child Safety Seat Technician.  Officer Will is also a member of the Virginia Gang Investigators Association and has twice received awards of excellence from Virginia MADD/ASAP – 2007/2008. Officer Will has enjoyed his involvement with department fundraisers for Special Olympics, University of Virginia Children’s Hospital, Christmas Giving Tree with Dayton Neighborhood Watch, and currently assists outside of patrol as an assistant grant writer/manager and Director of Dayton Operation Care.</p>\r\n<h2>Officer Phillip Cross</h2>\r\n<p><img src=\"/system/images/BAhbB1sHOgZmSSInMjAxMi8wOC8yNC8wMV8zM180N183ODJfUGhpbDAyLmpwZwY6BkVUWwg6BnA6CnRodW1iSSINMjI1eDI1NT4GOwZU/Phil02.jpg\" title=\"Phil02\" alt=\"Phil02\" rel=\"225x255\" width=\"356\" height=\"238\" class=\"add-caption\" /></p>\r\n<p>Officer Phillip Cross began his law enforcement career in 2005 when he went to work at the Middle River Regional Jail.  He next graduated from the Police Academy in 2006 and served with the Elkton Police Department until 2007 when he was hired by the Dayton Police Department.  Officer Cross is certified as an instructor for active shooter, radar/lidar, and Taser. Officer Phillip Cross has a Bachelors Degree in Biblical Studies through the International School of Ministry, and is currently an active member of the Potter’s House Worship Center.  Officer Cross has been part of three life changing missions’ trips to El Salvador, and has a Human Video Ministry through his church.</p>\r\n<h2>Officer David Moran</h2>\r\n<p><img src=\"/system/images/BAhbBlsHOgZmSSIsMjAxMi8wOC8yMi8yMF8xN181Ml85NjVfZGF2aWRfbW9yYW4uanBnBjoGRVQ/david_moran.jpg\" title=\"david_moran\" alt=\"david_moran\" rel=\"225x255\" width=\"356\" height=\"255\" class=\"add-caption\" /></p>\r\n<p>Officer David Moran is on his fifth year of service with the Dayton Police Department. He has prior experience in both Adult and Juvenile Corrections, and prior police experience with the Town of Grottoes. Officer Moran carries a number of certifications, some of which include: Crime Scene Investi-gations, Hostage Negotiations, Schools Resource Officer and Bike Certified. His personal hobbies include weight lifting, boxing and music.</p>\r\n<h2>Officer Reggie Dollar</h2>\r\n<p><img src=\"/system/images/BAhbBlsHOgZmSSIuMjAxMi8wOC8yMi8yMF8xOF8yMF8zODdfcmVnZ2llX2RvbGxhci5qcGcGOgZFVA/reggie_dollar.jpg\" title=\"reggie_dollar\" alt=\"reggie_dollar\" rel=\"225x255\" width=\"355\" height=\"254\" class=\"add-caption\" /></p>\r\n<p>Officer Reggie Dollar graduated from Southwest law enforcement academy in 1999. He worked at the Washington County, Virginia, Sheriff’s Office as a Deputy Sheriff in the patrol division and Sheriff’s tactical squad until relocating to Augusta County. Officer Dollar joined the Dayton Police Department in July 2010. He holds several training certification that help him provide professional service to the town.  Some of the training certificates held are Field Training Officer, Child Safety Seat Tech, Counterfeit and Money Laundering Investigation, and the Virginia HEAT (Help Eliminate Auto Theft) Program. Officer Dollar looks forward to serving the citizens of Dayton for years to come.</p>\r\n<h2>Officer Mandy Robles</h2>\r\n<p><img src=\"/system/images/BAhbBlsHOgZmSSItMjAxMi8wOC8yMi8yMF8xOF8zN182NDFfbWFuZHlfcm9ibGVzLmpwZwY6BkVU/mandy_robles.jpg\" title=\"mandy_robles\" alt=\"mandy_robles\" rel=\"225x255\" width=\"360\" height=\"256\" class=\"add-caption\" /></p>\r\n<p>Officer Mandy Robles graduated from the Central Shenandoah Criminal Justice Training Academy in 2010, and has served with the Massanutten Police Department before being hired with the Dayton Police Department in March of 2011. Officer Robles is certified as a Breath Alcohol Test Operator, as well as, a Basic Instructor. She has an Associate’s Degree in Criminal Justice with a minor in Computer Sciences. Prior to law enforcement, she was employed at South Eastern Physical Therapy in Virginia Beach, Virginia, where she was a Physical Therapy Technician for six years. However, in 2009, she decided to follow in her father’s footsteps and share his love for police work. Officer Robles enjoys all aspects of being a police officer, especially getting to know the community she serves and protects.</p>\r\n<h2>Administrative Assistant | Lorie Curry</h2>\r\n<p><img src=\"/system/images/BAhbBlsHOgZmSSIsMjAxMi8wOC8yMi8yMF8xOF81M182NzZfbG9yaWVfY3VycnkuanBnBjoGRVQ/lorie_curry.jpg\" title=\"lorie_curry\" alt=\"lorie_curry\" rel=\"225x255\" width=\"360\" height=\"257\" class=\"add-caption\" /></p>\r\n<p>Administrative Assistant Lorie Curry graduated from Broadway High School in 1991. Mrs. Curry worked for the Harrisonburg-Rockingham General District Courts, and ran a successful business prior to coming to work for the Town of Dayton in November of 2007. Mrs. Curry is also a Certified Technician with National Child Passenger Safety Certification Training Program.  </p>\r\n<a name=\"dayton-codes\"></a>\r\n<div>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_13_56_778_Security_Check_Form.pdf?iframe=true&width=1000&height=1200\" title=\"Security Check Form\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Security Check Form\" alt=\"Security Check Form\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_13_56_778_Security_Check_Form.pdf?iframe=true&width=1000&height=1200\" title=\"Security Check Form\" target=\"_blank\">(open PDF) Security Check Form</a> </p>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_13_56_738_Dayton_General_Criminal_Code.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton General Criminal Code\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Dayton General Criminal Code\" alt=\"Dayton General Criminal Code\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_13_56_738_Dayton_General_Criminal_Code.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton General Criminal Code\" target=\"_blank\">(open PDF) Dayton General Criminal Code</a> </p>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_13_56_759_Dayton_Traffic_Streets_Motor_Vehicle_License_Code.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Traffic, Streets & Motor Vehicle License Code\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Dayton Traffic, Streets & Motor Vehicle License Code\" alt=\"Dayton Traffic, Streets & Motor Vehicle License Code\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_13_56_759_Dayton_Traffic_Streets_Motor_Vehicle_License_Code.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Traffic, Streets & Motor Vehicle License Code\" target=\"_blank\">(open PDF) Dayton Traffic and Streets; Motor Vehicle License Code </a>\r\n</p>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n</div>\r\n',0,'2012-08-19 18:38:35','2012-08-23 21:39:07'),(103,52,'Side Body','<p>{{ content_holder_115 }}</p>',1,'2012-08-19 18:38:35','2012-08-23 21:39:07'),(104,53,'Body','<h1>PUBLIC WORKS</h1>\r\n\r\n<h2>Contact Information | Staff</h2>\r\n<p>125-B Eastview Street<br />Dayton, VA 22821<br />Phone: (540) 879-2241 | Fax: (540) 879-2243</p>\r\n<p><strong>Risk Management Coordinator:</strong> <a href=\"mailto:[email protected]\" title=\"[email protected]\">Brenda P. Stearn</a>\r\n</p>\r\n<p><strong>Water Operations:</strong> <a href=\"mailto:[email protected]\" title=\"[email protected]\">Lelan Siler</a>\r\n</p>\r\n<p><strong>Projects: </strong> <a href=\"mailto:[email protected]\" title=\"[email protected]\">Kevin M. Burgoon</a>\r\n</p>\r\n<p><strong>Streets:</strong> Conrad T. Eye, Russell D. Bailey </p>\r\n<h2>Water and Sewer</h2>\r\n\r\n<h3>Water and Sewer Deposit for New Customers</h3>\r\n<p>A deposit of $75.00 is required for customers renting an apartment or house.  The deposit is to be paid before water and sewer service is connected. Upon termination of water service, the deposit will be applied to the final billing and the difference will be billed or refunded to the customer.  No deposit is required for customers owning or buying a home.  The Treasurer’s Office is to be notified as soon as possible for water and sewer connection or disconnection. </p>\r\n<h3>Water and Sewer Connection Fees</h3>\r\n<p>Water and sewer connection fees must be paid before connection is made to the Town’s water and/or sewer system. Connection fees must be also be paid before a zoning permit is issued for new dwellings, which is required in order to obtain a building permit from Rockingham County. <strong>See Water and Sewer Connection Fees: </strong>\r\n</p>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_14_13_716_Water_Sewer_Connection_Fees.pdf?iframe=true&width=1000&height=1200\" title=\"Water & Sewer Connection Fees\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Water and Sewer Connection Fees\" alt=\"Water and Sewer Connection Fees\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" />\r\n</a>\r\n<p><a href=\"/system/resources/2012/08/22/01_14_13_716_Water_Sewer_Connection_Fees.pdf?iframe=true&width=1000&height=1200\" title=\"Water & Sewer Connection Fees\" target=\"_blank\">(open PDF) Water and Sewer Connection Fees</a>\r\n</p>\r\n</div>\r\n<a name=\"water-schedule\"></a>\r\n<div style=\"clear:both;\"></div>\r\n<table style=\"font-size: 12px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; \"><caption>WATER & SEWER RATE SCHEDULE Effective July 1, 2011 (no change for 2012)</caption>\r\n<tbody><tr class=\"alt\"><td>Water</td>\r\n<td>Monthly Rate</td>\r\n</tr>\r\n<tr><td>0 - 2,000 gallons</td>\r\n<td>$6.00 minimum</td>\r\n</tr>\r\n<tr class=\"alt\"><td>2,001 - 350,000 gallons</td>\r\n<td>$3.40 per 1,000 gallons</td>\r\n</tr>\r\n<tr><td>350,001 gallons and up</td>\r\n<td>$2.55 per 1,000 gallons</td>\r\n</tr>\r\n<tr class=\"alt\"><td>Sewer</td>\r\n<td>Monthly Rate</td>\r\n</tr>\r\n<tr><td>0 - 2,000 gallons</td>\r\n<td>$8.00 minimum</td>\r\n</tr>\r\n<tr class=\"alt\"><td>2,001 - 350,000 gallons</td>\r\n<td>$4.85 per 1,000 gallons</td>\r\n</tr>\r\n<tr><td>350,001 gallons and up</td>\r\n<td>$4.10 per 1,000 gallons</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>Minimum Monthly Charge for Water & Sewer - $14.00</p>\r\n<h3>Bill Payment, Penalties and Disconnection Policies </h3>\r\n<p>Water, sewer and trash bills are to be paid at the Treasurer\'s Office in the Dayton Municipal Building, or checks may be mailed.  A payment drop box is located near the drive-thru window on the north side of the building for your convenience.  </p>\r\n<p>Please make checks payable to: <strong>Town of Dayton, 125-B Eastview St., Dayton, VA 22821</strong>\r\n</p>\r\n<p>Water meters are read around the 20th day of each month.  Water, sewer and trash bills are mailed out within the first week of each month.  All bills are to be paid on or before the 20th day following the billing date (if the due date falls on a Saturday, Sunday or a <a href=\"/about/town-departments/treasurer\" title=\"Treasurer\">holiday observed by the Town</a>, a grace period is allowed through the next business day).  If payment is not received within 20 days of the billing date, a penalty shall be added to the bill equal to $1.50 or 10% of the amount of the bill, whichever is greater.  If either the bill or penalty shall remain unpaid on the 25th day after the billing date, notices will be sent informing that water service will be disconnected in 14 days.  Service shall be reinstated upon full payment of the current balance plus a $35.00 reconnection fee. <strong>Water meters are not to be turned on or off except by authority of the Town Superintendent.</strong>\r\n</p>\r\n<h3>Cross-Connection\r\n</h3>\r\n<p>TOWN OF DAYTON CODE OF ORDINANCES, TITLE 6. WATER AND SEWER, CHAPTER 2, CROSS-CONNECTION</p>\r\n<p><strong>§ 6-9. Incorporation of Waterworks Regulations.</strong>\r\n Article 3 of 12 VAC 5-590 enacted by the State Board of Health pursuant to § 32.1-170 of the Code of Virginia is hereby incorporated into this title. (See Code of Virginia, §15.1-854.) (Amended Month Day, 2007)\r\n</p>\r\n<p><strong>§ 6-9.1 Cross-Connection Control Program.</strong> The Town Superintendent shall adopt and implement a cross-connection control and backflow prevention program in accordance with § 12 VAC-5-590-600 (B.) (Added Month, Day, 2007.) Open PDF in web browser</p>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_14_13_675_Dayton_Cross_Connection_Control_Program_Rev._6_25_12.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Cross Connection Control Program Rev. 6 25 12\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Cross Connection Control Program\" alt=\"Cross Connection Control Program\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_14_13_675_Dayton_Cross_Connection_Control_Program_Rev._6_25_12.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Cross Connection Control Program Rev. 6 25 12\" target=\"_blank\">(open PDF) Cross-Connection Control Program</a>\r\n</p>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n<p><strong>§ 6-10. Discontinuance of Service.</strong> (a) The Town may deny or discontinue the water service to a consumer if a backflow prevention device is not installed. If it is found that any such device has been removed or bypassed or if a cross-connection exists on the premises, or if the pressure in the waterworks is lowered below 10 psi gauge, the Town shall take positive action to insure that the waterworks is adequately protected at all times. Water service to such premises shall not be restored until the deficiencies have been corrected or eliminated in accordance with Commonwealth of Virginia Waterworks Regulations and to the satisfaction of the Town. <a href=\"http://lis.virginia.gov/cgi-bin/legp604.exe?000+cod+15.2-2144\" title=\"http://lis.virginia.gov/cgi-bin/legp604.exe?000+cod+15.2-2144\" target=\"_blank\">(See Code of Virginia, §15.1-2144.)</a>\r\n</p>\r\n<p><strong>§ 6-11. Protection of Potable Water Supplies.</strong> The potable water made available on the properties served by the waterworks shall be protected from possible contamination or pollution by enforcement of this title. Any water outlet which could be used for potable or domestic purposes and is not supplied by the potable system must be labeled as “Water Unsafe for Drinking” in a conspicuous manner. (See Code of Virginia, § 15.1-854.)</p>\r\n<a name=\"water-quality\"></a>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_14_13_734_Water_Quality_Report.pdf?iframe=true&width=1000&height=1200\" title=\"Water Quality Report\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Water Quality Report\" alt=\"Water Quality Report\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_14_13_734_Water_Quality_Report.pdf?iframe=true&width=1000&height=1200\" title=\"Water Quality Report\" target=\"_blank\">(open PDF) Water Quality Report</a> </p>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_14_13_633_Dayton_Code_Title_6_Water_Sewer.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Code Title 6 Water & Sewer\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Town Code, Title 6, Water and Sewer Code\" alt=\"Town Code, Title 6, Water and Sewer Code\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_14_13_633_Dayton_Code_Title_6_Water_Sewer.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Code Title 6 Water & Sewer\" target=\"_blank\">(open PDF) Town Code, Title 6, Water and Sewer Code</a> </p>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_14_13_698_No_Wipes_in_the_Pipes.pdf?iframe=true&width=1000&height=1200\" title=\"No Wipes In The Pipes\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"No Wipes in the Pipes\" alt=\"No Wipes in the Pipes\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p> <a href=\"/system/resources/2012/08/22/01_14_13_698_No_Wipes_in_the_Pipes.pdf?iframe=true&width=1000&height=1200\" title=\"No Wipes In The Pipes\" target=\"_blank\">(open PDF) No Wipes in the Pipes</a>\r\n</p>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n<h2>Refuse Collection</h2>\r\n<p>(Trash, Recycling, Lawn Waste and Heavy / Large Items)</p>\r\n<table><caption>REFUSE COLLECTION FEES</caption>\r\n<tbody><tr class=\"alt\"><td>Residential</td>\r\n<td>$17.45 per month</td>\r\n</tr>\r\n<tr><td>Commercial</td>\r\n<td>$19.50 per month</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table><caption>MISCELLANEOUS FEES</caption>\r\n<tbody><tr class=\"alt\"><td>Tires - Small (off rim)</td>\r\n<td>$2.00 each</td>\r\n</tr>\r\n<tr><td>Tires - Large (off rim)</td>\r\n<td>$3.00 each</td>\r\n</tr>\r\n<tr class=\"alt\"><td>Tires (on rim)</td>\r\n<td>$5.00 each</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table><caption>REFUSE COLLECTION SCHEDULE</caption>\r\n<tbody><tr class=\"alt\"><td>Trash</td>\r\n<td>Fridays (weekly)</td>\r\n</tr>\r\n<tr><td>Recycling</td>\r\n<td>Thursdays (weekly)</td>\r\n</tr>\r\n<tr class=\"alt\"><td>Lawn Waste</td>\r\n<td>Wednesdays (weekly)</td>\r\n</tr>\r\n<tr><td>Heavy / Large Items</td>\r\n<td>First Tuesday (monthly)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3>Time of Placement:</h3>\r\n<p>All refuse must be placed out for collection by 7:00 a.m. on the day of collection, and no earlier than 4:00 p.m. on the day preceding collection day. Containers must be removed to the side or rear of the structure no later than 8:00 a.m. of the day following collection.</p>\r\n<h3>Holiday Collection:</h3>\r\n<p>See Dayton’s web site home page under “News” for holiday refuse collection schedules. Typically, during weeks with a holiday observed by each individual contractor, collection is moved forward one day (i.e. Recycling will be collected on Friday, and Trash will be collected on Saturday).</p>\r\n<h3>Refuse Containers: </h3>\r\n<p>Trash and recycling containers are provided by the Town. Containers shall not be placed in the street or on the sidewalk in a manner whereby they will interfere with vehicular or pedestrian traffic. These containers must remain with the property if the occupant moves out; otherwise, a fee will be imposed to cover the cost of replacement. Containers may be requested by calling the Dayton Public Works Department at 540-879-2241.</p>\r\n<a name=\"trash-collection\"></a>\r\n<h3>Trash Collection:</h3>\r\n<p>Trash is collected at curbside on Fridays of each week. All trash set out for collection must be placed in the trash containers provided by the Town’s trash contractor.  In the event there is more trash than the container can hold, it must be placed in plastic trash bags of adequate strength to contain the contents, and placed beside the trash container.  The Town will not be responsible for the collection of materials in plastic bags if such bags are torn or overloaded so as to prevent normal handling. Please call Dayton Public Works at 540-879-2241 for extra or replacement containers. </p>\r\n<h3>Type of Refuse Collected:</h3>\r\n<p>The Town will collect all garbage, rubbish and acceptable categories of refuse provided that the Town Superintendent shall have the right to determine what refuse is acceptable, depending upon its quantity and type, and shall have the right to decline to collect any material set out for regular collection.</p>\r\n<h3>Refuse NOT Acceptable for Regular Trash Collection: \r\n</h3>\r\n<ul><li>Dangerous materials or substance such as poisons, acids, caustics, infected materials, explosives, hot ashes or materials burning (hot ashes shall not be placed in any combustible container, or any container, which also contains combustible materials).</li>\r\n<li>Materials resulting from construction or demolition of buildings and structures or from the clearance of vacant or improved property in preparation for construction or occupancy. The Town Superintendent shall have the right to accept this refuse upon negotiating a fee for collection.</li>\r\n<li>All large and bulky materials, such as motor vehicles or parts of motor vehicles, tree trunks and stumps that may require special preparation and processing for disposal.</li>\r\n<li>Any materials, which create an unusually bad odor such as manure or rotten and unhatched eggs.</li>\r\n<li>Bodies of dead animals.</li>\r\n<li>No liquids shall be placed in containers for collection.</li>\r\n<li>Recycling Collection</li>\r\n<li>Recycling is collected at curbside on Thursdays of each week. Recycling bins are provided by the Town\'s recycling contractor.  All recycling materials set out for collection must be placed in the recycling bins, and in a manner so as to prevent scattering of the contents prior to collection. </li>\r\n</ul>\r\n<h3>Acceptable Materials for Recycling Collection: \r\n</h3>\r\n<p>The following materials are acceptable for recycling (all other items are to be placed in with household trash):</p>\r\n<ul><li>Plastic containers - all recycling codes (discard lids) - no plastic bags, plastic wrap or Styrofoam.</li>\r\n<li>Aluminum beverage cans & pie pans.</li>\r\n<li>Glass bottles and jars (clear, green & brown), non-shattering glass only - no windows, mirrors, picture frame glass, etc.</li>\r\n<li>Tin cans</li>\r\n<li>Paper (shredded also) - must be contained in a trash bag and put in the bin (separate from newspaper).</li>\r\n<li>Newspaper (no need to bag) - no phone books.</li>\r\n<li>Cardboard and paperboard (flatten) – must be no larger than the size of the bin when flattened and placed in the bin.</li>\r\n</ul>\r\n<h3>Yard Waste:</h3>\r\n<p>Yard Waste (i.e. grass, weeds, leaves, garden waste, small twigs, etc.) is collected on Wednesdays of each week by the Dayton Public Works Department. All yard waste must be placed in paper biodegradable bags only, and free of household trash, rocks, dirt or twigs larger than your finger. Yard waste placed in any other type of container will not be accepted. </p>\r\n<ul><li><strong>Tree Limbs/Bush Trimmings</strong> - must be tied in bundles not exceeding five feet in length and of reasonable size to allow convenient handling, with no limbs greater than six inches in diameter. Disposal of tree stumps, trunks or limbs larger than six inches in diameter is the responsibility of the property owner.</li>\r\n<li><strong>Fall Leaf Collection</strong> – the Town provides curbside leaf vacuum service during the month of November as time and weather permit (after this time, leaves must be bagged in paper biodegradable bags and will be picked up on Wednesdays). Leaves must be raked to the edge of the property line—do not put the leaves in the street or on top of graveled driveways. Ginkgo leaves or leaves with sticks, brush, rocks, gravels, nuts or other debris will not be vacuumed, as this may cause damage the vacuum equipment. </li>\r\n<li><strong>Christmas Trees</strong> - there is no scheduled time for Christmas tree collection—they will be picked up by Public Works as time and weather permit. </li>\r\n<li>If yard waste collection day falls on a <a href=\"/about/town-departments/treasurer\" title=\"Treasurer\">holiday observed by the Town</a>, collection will be the following day.</li>\r\n</ul>\r\n\r\n<h3>Heavy/Bulk Item Collection:</h3>\r\n<p>Heavy/bulk items are collected at curbside on the first Tuesday of each month by Dayton Public Works. There is no additional charge for heavy/bulk item collection, with the exception of tires (see Refuse Collection Fees). </p>\r\n<p><strong>The following items are acceptable for heavy/bulk item collection</strong>:</p>\r\n<ul><li>Appliances</li>\r\n<li>Furniture</li>\r\n<li>Electronics</li>\r\n<li>Bicycles</li>\r\n<li>Small lawn mowers (must remove gas & oil)</li>\r\n<li>Tires (fee imposed)</li>\r\n</ul>\r\n<p>If heavy/bulk item collection day falls on a <a href=\"/about/town-departments/treasurer\" title=\"Treasurer\">holiday observed by the Town</a>, collection will be the following day.</p>\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_14_13_654_Dayton_Code_Title_7_Refuse.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Code Title 7 Refuse\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Dayton Code Title 7\" alt=\"Dayton Code Title 7\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_14_13_654_Dayton_Code_Title_7_Refuse.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Code Title 7 Refuse\" target=\"_blank\">(open PDF) Town Code, Title 7, Refuse (open PDF)</a>\r\n</p>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n<p><strong>Rockingham County Landfill</strong>\r\n<br />Town of Dayton residents may also dispose of refuse at the Rockingham County Landfill. For information, visit their website: <a href=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=106\" title=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=106\" target=\"_blank\">Rockingham County Landfill</a>. </p>\r\n',0,'2012-08-19 18:38:49','2012-08-23 13:44:44'),(105,53,'Side Body','<p>{{ content_holder_115 }}</p>',1,'2012-08-19 18:38:49','2012-08-23 13:44:44'),(106,54,'Body','<h1>Treasurer</h1>\r\n\r\n<h2>Town Treasurer | Justin S. Moyers</h2>\r\n<p>Phone: (540) 879-2241, ext. 306 / Fax: (540) 879-2243</p>\r\n<p>125-B Eastview Street<br />Dayton, VA 22821<br />Email: <a href=\"mailto:[email protected]\" title=\"[email protected]\">[email protected]</a>\r\n</p>\r\n<h3>Treasurer’s Office Staff</h3>\r\n<p>Deputy Treasurer/Zoning Administrator: <a href=\"mailto:[email protected]\" title=\"[email protected]\">Susan D. Smith</a> 540-879-2241, ext. 308</p>\r\n<p>Clerk: <a href=\"mailto:[email protected]\" title=\"[email protected]\">Wendy S. Papotnik</a> 540-879-2241, ext. 301</p>\r\n<p>Clerk: <a href=\"mailto:[email protected]\" title=\"[email protected]\">Deborah A. Eye </a> 879-2241, ext. 319</p>\r\n<h2>Business Hours and Holiday Closings</h2>\r\n<p>Office and Drive-Thru: Monday – Friday, 8:00 a.m. – 4:30 p.m.</p>\r\n<p>Municipal offices will be closed for the following holidays:</p>\r\n<table>\r\n<tbody><tr><td>New Year’s Eve</td>\r\n<td>Labor Day</td>\r\n</tr>\r\n<tr class=\"alt\"><td>New Years Day</td>\r\n<td>Veteran’s Day</td>\r\n</tr>\r\n<tr><td>Martin Luther King, Jr. Day</td>\r\n<td>Thanksgiving Day</td>\r\n</tr>\r\n<tr class=\"alt\"><td>President’s Day</td>\r\n<td>Day after Thanksgiving</td>\r\n</tr>\r\n<tr><td>Good Friday</td>\r\n<td>Christmas Eve</td>\r\n</tr>\r\n<tr class=\"alt\"><td>Memorial Day</td>\r\n<td>Christmas Day</td>\r\n</tr>\r\n<tr><td>Independence Day</td>\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p><em>(Note: Holidays falling on Saturday or Sunday will be observed on Friday before the holiday or Monday after the holiday respectively, unless otherwise announced by the Town).</em>\r\n</p>\r\n<div class=\"pdf\"><a href=\"/system/resources/2012/08/22/01_17_30_154_Budget_FY2013.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Budget Fy2013\">\r\n<img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" title=\"Budget 2012-2013\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" />\r\n</a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_154_Budget_FY2013.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Budget Fy2013\">(open PDF) Budget 2012-2013</a>\r\n</p>\r\n</div>\r\n<div style=\"clear:both\"></div>\r\n<h2>Business License Tax</h2>\r\n<p>As provided in the <strong><a href=\"/system/resources/2012/08/22/01_14_38_600_Town_Code_Title_3_3.1_License_Taxes.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Town Code Title 3, 3.1 License Taxes\">Town Code, Title 3.1, License Taxes</a>\r\n</strong>, it is required that any person engaged in a business within the Town must procure a business license. This includes all phases of business, profession, trade, occupation or rentals conducted in the Town. Cost of the license varies according to type of occupation and amount of gross receipts in a given year. (open PDF of section above in web browser)</p>\r\n<p>To avoid a penalty fee, please observe the following:</p>\r\n<ul>\r\n<li>A business license is required to operate a business in Dayton. </li>\r\n<li>Current business license holders will be mailed a business license application in January of each year.</li>\r\n<li>All existing businesses must renew their license by March 1st of each year.</li>\r\n<li>Any new business must obtain a license before proceeding with establishing their enterprise.</li>\r\n</ul>\r\n<a name=\"business-application\"></a>\r\n<h2>Business Classification Fee</h2>\r\n<p><strong> #1 Retail Sales </strong>\r\n<br /> @ $0.15 per $100 of Gross Receipts BUT NOT LESS THAN $20.00 <br /> Total Gross Receipts for Past Calendar Year </p>\r\n<p><strong> #2 Contractors </strong>\r\n<br /> @ $0.12 per $100 of Gross Receipts BUT NOT LESS THAN $20.00<br /> Total Gross Receipts for Past Calendar Year </p>\r\n<p><strong> #3 Financial, Real Estate, & Professional Services </strong>\r\n<br /> @ $0.30 per $100 of Gross Receipts BUT NOT LESS THAN $20.00<br /> Total Gross Receipts for Past Calendar Year </p>\r\n<p><strong> #4 Repair, Personal, Lessor of Real Estate Property, Business & Other Services</strong>\r\n<br /> @ $0.20 per $100 of Gross Receipts BUT NOT LESS THAN $20.00<br /> Total Gross Receipts for Past Calendar Year </p>\r\n\r\n<div class=\"pdf\"><a href=\"/system/resources/2012/08/22/01_17_30_218_Business_License_Application_Regular_2012.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Business License Application Regular 2012\">\r\n<img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" title=\"Business License Application Regular 2012\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" />\r\n</a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_218_Business_License_Application_Regular_2012.pdf?iframe=true&width=1000&height=1200\" title=\"Business License Application Regular 2012\" target=\"_blank\">(open PDF) Business License Application (Regular)</a>\r\n</p>\r\n<div style=\"clear:both\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_192_Business_License_Application_Contractors_2012.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Business License Application Contractors 2012\">\r\n<img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" title=\"Business License Application Contractors 2012\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" />\r\n</a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_192_Business_License_Application_Contractors_2012.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Business License Application Contractors 2012\">(open PDF) Business License Application (Contractors)</a>\r\n</p>\r\n</div>\r\n<div style=\"clear:both\"></div>\r\n<h2>Meals Tax</h2>\r\n\r\n<p>The Town imposes a meals tax rate of 5% on the amount paid for meals purchased from any food establishment, whether prepared in such food establishment or not, and whether consumed on the premises or not. The tax is collected at the end of each quarter. For additional details, see <strong><a href=\"/system/resources/2012/08/22/01_14_38_636_Town_Code_Title_13_Meals_Tax.pdf?iframe=true&width=1000&height=1200\" title=\"Town Code Title 13 Meals Tax\" target=\"_blank\">Town Code, Title 13, Meals Tax</a>\r\n</strong>. (open PDF in web browser)</p>\r\n\r\n<div class=\"pdf\">\r\n<a href=\"/system/resources/2012/08/22/01_17_30_482_Meals_Tax_Report_Form.pdf?iframe=true&width=1000&height=1200\" title=\"Meals Tax Report Form\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" title=\"Meals Tax Report Form\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" />\r\n</a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_482_Meals_Tax_Report_Form.pdf?iframe=true&width=1000&height=1200\" title=\"Meals Tax Report Form\" target=\"_blank\">Meals Tax Report Form (open PDF in web browser)</a>\r\n</p>\r\n</div>\r\n<div style=\"clear:both\"></div>\r\n\r\n<h2>Real Estate Tax</h2>\r\n<p>The Town of Dayton’s Real Estate Tax rate is $0.08 per $100 of Rockingham County assessment value. Real Estate Taxes are paid to Dayton semi-annually. The first payment is due June 5 and the second payment is due December 5. A penalty of 5% is charged for late payments. After a bill is delinquent a month, interest is also charged. The tax bills are usually mailed the month preceding the due date. For additional information, see <strong><a href=\"/system/resources/2012/08/22/01_14_38_618_Town_Code_Title_12_Real_Estate_Taxation.pdf?iframe=true&width=1000&height=1200\" title=\"Town Code Title 12 Real Estate Taxation\" target=\"_blank\">Town Code, Title 12, Real Estate Taxation</a>\r\n</strong>\r\n<a href=\"/system/resources/2012/08/22/01_14_38_618_Town_Code_Title_12_Real_Estate_Taxation.pdf?iframe=true&width=1000&height=1200\" title=\"Town Code Title 12 Real Estate Taxation\" target=\"_blank\">\r\n</a>. (open PDF in web browser) </p>\r\n<h2>Vehicle License Tax</h2>\r\n<p>The Town of Dayton imposes a vehicle license tax upon every motor vehicle, trailer and semi-trailer regularly garaged, stored, or parked in the Town of Dayton, and used on the streets and highway of this town. The Town Vehicle License Tax expires on April 15th each year. The fee may be paid at the Town Treasurer\'s Office. Persons moving to Dayton after April 15th are required to pay the fee immediately upon assuming residency unless they have paid a fee from anywhere in Virginia. Those purchasing vehicles have a grace period of 10 days to pay the fee. Any change of vehicle ownership requires you contact the Treasurer\'s Office in order to transfer it to another vehicle. On October 1st, the vehicle license fee is one-half the cost, and on January 15th, it is one-third the cost. </p>\r\n<p>The Town of Dayton will utilize the DMV VRW Program to enforce non-payment of the vehicle license tax. This program allows the Town to notify the DMV of any residents that have not paid the vehicle license tax. Once notified, the program will not allow a resident to conduct business with the DMV until payment is received by the Town of Dayton for the vehicle license.</p>\r\n<table><caption>Vehicle License Tax</caption>\r\n<tbody><tr><td>HV - Heavy Vehicle</td> \r\n<td>$30.00</td>\r\n<td>MC - Motorcycle</td>\r\n<td>$10.00</td>\r\n</tr>\r\n<tr class=\"alt\"><td>MH - Motor Home</td>\r\n<td>$30.00</td>\r\n<td>PC - Pull Camper (single axle)</td>\r\n<td>$10.00</td>\r\n</tr>\r\n<tr><td>HT - Heavy Trailer (double axel)</td>\r\n<td>$30.00</td>\r\n<td>AV - Antique Vehicle</td>\r\n<td>$0.00</td>\r\n</tr>\r\n</tbody>\r\n</table>',0,'2012-08-19 18:39:05','2012-08-22 20:25:08'),(107,54,'Side Body','<p>{{ content_holder_115 }}</p>',1,'2012-08-19 18:39:05','2012-08-22 20:25:08'),(108,55,'Body','<h1>ZONING</h1>\r\n<p>Zoning Administrator | Susan D. Smith</p>\r\n<p>Phone: (540) 879-2241, ext. 308 / Fax: (540) 879-2243</p>\r\n<p>125-B Eastview Street<br />Dayton, VA 22821<br />Email: <a href=\"mailto:[email protected]\" title=\"[email protected]\">Susan D. Smith</a>\r\n</p>\r\n<h3>Zoning Permits</h3>\r\n<p>Zoning permits are required in order to erect, construct, enlarge, alter, repair, or improve any building, structure, or signs—if said activities require a building permit under the <a href=\"http://www.dhcd.virginia.gov/StateBuildingCodesandRegulations/PDFs/2009/Code%20-%20VCC.pdf\" title=\"http://www.dhcd.virginia.gov/StateBuildingCodesandRegulations/PDFs/2009/Code%20-%20VCC.pdf\" target=\"_blank\">Uniform Statewide Building Code</a>. For new dwellings, water and sewer connection fees must be paid before a zoning permit is issued. Zoning permits must be obtained from the Town of Dayton before a Building Permit is issued by Rockingham County.</p>\r\n<h3>Zoning Permit Fees</h3>\r\n<p> Effective February 5, 2007</p>\r\n<ul><li>$20.00 minimum or $2.00 per 100 square feet for new construction or remodel. Cost will be the greater amount.</li>\r\n<li>$20.00 flat fee for signs and/or accessory buildings.</li>\r\n</ul>\r\n<div class=\"pdf\"><a href=\"/system/resources/2012/08/22/01_17_30_527_Zoning_Permit_Application.pdf?iframe=true&width=1000&height=1200\" title=\"Zoning Permit Application\" target=\"_blank\"><img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_17_30_527_Zoning_Permit_Application.pdf?iframe=true&width=1000&height=1200\" title=\"Zoning Permit Application\" target=\"_blank\">(open PDF) Zoning Permit Application</a>\r\n</p>\r\n<a href=\"/system/resources/2012/08/22/01_17_30_527_Zoning_Permit_Application.pdf?iframe=true&width=1000&height=1200\" title=\"Zoning Permit Application\" target=\"_blank\">\r\n</a>\r\n<div style=\"clear:both;\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_15_13_941_Town_Zoning_Map.pdf?iframe=true&width=1000&height=1200\" title=\"Town Zoning Map\" target=\"_blank\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_15_13_941_Town_Zoning_Map.pdf?iframe=true&width=1000&height=1200\" title=\"Town Zoning Map\" target=\"_blank\">(open PDF) Town Zoning Map</a>\r\n</p>\r\n<a href=\"/system/resources/2012/08/22/01_15_13_941_Town_Zoning_Map.pdf?iframe=true&width=1000&height=1200\" title=\"Town Zoning Map\" target=\"_blank\">\r\n</a>\r\n<div style=\"clear:both;\"></div>\r\n<a href=\"/system/resources/2012/08/22/01_15_13_855_Town_Code_Title_9_Zoning.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Town Code Title 9 Zoning\">\r\n<img src=\"/system/images/BAhbB1sHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/adobe_logo.png\" title=\"Town Code Title 9 Zoning\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<p><a href=\"/system/resources/2012/08/22/01_15_13_855_Town_Code_Title_9_Zoning.pdf?iframe=true&width=1000&height=1200\" title=\"Town Code Title 9 Zoning\" target=\"_blank\">(open PDF) Town Code, Title 9, Zoning</a>\r\n</p>\r\n<a href=\"/system/resources/2012/08/22/01_15_13_855_Town_Code_Title_9_Zoning.pdf?iframe=true&width=1000&height=1200\" title=\"Town Code Title 9 Zoning\" target=\"_blank\">\r\n</a>\r\n</div>\r\n<div style=\"clear:both;\"></div>\r\n<h3>Accumulation of Grass and Weeds</h3>\r\n<p>For questions or concerns regarding the accumulation of grass/weeds, call Susan Smith at 540-879-2241, ext. 308, or email her at <a href=\"mailto:[email protected]\" title=\"[email protected]\">[email protected]</a>. (See <strong><a href=\"/system/resources/2012/08/22/01_13_56_738_Dayton_General_Criminal_Code.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton General Criminal Code\" target=\"_blank\">Town Code, Title 1, General Criminal Code, §1-48</a>\r\n</strong><a href=\"/system/resources/2012/08/22/01_13_56_738_Dayton_General_Criminal_Code.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton General Criminal Code\" target=\"_blank\">\r\n</a>) Open Code section in web browser</p>',0,'2012-08-19 18:39:22','2012-08-22 14:30:41'),(109,55,'Side Body','<p>{{ content_holder_115 }}</p>',1,'2012-08-19 18:39:22','2012-08-22 14:30:41'),(110,56,'Body','<a name=\"dayton-discovery\"></a>\r\n<h2>Dayton Discovery Newsletter</h2>\r\n<ul><li>Current and Past Newsletters (open each PDF in web browser).</li>\r\n<div class=\"pdf\">\r\n<div style=\"padding-left: 50px;\">\r\n<a href=\"/system/resources/2012/08/22/01_12_27_191_Summer_2012.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Summer 2012\">Summer Newsletter 2012</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/01_12_27_175_Spring_2012.pdf?iframe=true&width=1000&height=1200\" title=\"Spring 2012\" target=\"_blank\">Spring Newsletter 2012</a>\r\n\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/01_12_06_104_Winter_2011.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\" title=\"Winter 2011\">Winter Newsletter 2011</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/01_12_06_50_Fall_2011.pdf?iframe=true&width=1000&height=1200\" title=\"Fall 2011\" target=\"_blank\">Fall Newsletter 2011</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/01_12_06_85_Summer_2011.pdf?iframe=true&width=1000&height=1200\" title=\"Summer 2011\" target=\"_blank\">Summer Newsletter 2011</a>\r\n<br />\r\n<a href=\"/system/resources/2012/08/22/01_12_06_67_Spring_2011.pdf?iframe=true&width=1000&height=1200\" title=\"Spring 2011\" target=\"_blank\">Spring Newsletter 2011</a>\r\n<br />\r\n</div>\r\n</div>\r\n<li><span class=\"green\">Go Green—Go Paperless!</span> Receive the Dayton Discovery Newsletter electronically by sending an email to <a href=\"mailto:[email protected]\" title=\"[email protected]\">[email protected]</a>. In order to avoid duplication of mailing a paper copy, please include your name and service address along with the email address of where you would like the newsletter sent. Your email address will be kept private and only used for Town purposes.</li>\r\n<li>For newsletter comments and suggestions, email <a href=\"mailto:[email protected]\" title=\"[email protected]\">[email protected]</a> or call the Dayton Town Office at 540-879-2241.</li>\r\n</ul>',0,'2012-08-19 18:39:37','2012-08-22 20:42:45'),(111,56,'Side Body','<p>{{ content_holder_115 }}</p>',1,'2012-08-19 18:39:37','2012-08-22 20:42:45'),(62,32,'Body','<p><img src=\"/system/images/BAhbBlsHOgZmSSI4MjAxMi8wMi8yOC8xOV8yNl8yOV80ODRfc29saWNpdGF0aW9uX2Rpc2Nsb3N1cmUuanBnBjoGRVQ/solicitation_disclosure.jpg\" height=\"371\" width=\"613\" /></p>\r\n<h1>Solicitation Disclosure</h1>\r\n<h3>Our statement regarding solicitation of funds as required in various states:</h3>\r\n<p>Some states require charities soliciting funds within a state to register with the state agency responsible for regulating charities. Christian Aid Ministries is registered in each state where it is required to do so. As a faith-based, religious organization, several states exempt our ministry from solicitation registration.</p>\r\n<h2>State disclosure statements:</h2>\r\n<p>Colorado residents may obtain copies of registration and financial documents from the office of the Secretary of State, 303-894-2860,www.sos.state.co.us/ re: Reg. No. 20113021578.</p>\r\n<p>Florida residents: A COPY OF THE OFFICIAL REGISTRATION AND FINANCIAL INFORMATION MAY BE OBTAINED FROM THE DIVISION OF CONSUMER SERVICES BY CALLING TOLL-FREE, 1-800-435-7352 WITHIN THE STATE. REGISTRATION DOES NOT IMPLY ENDORSEMENT, APPROVAL, OR RECOMMENDATION BY THE STATE. REGISTRATION NUMBER CH35002.</p>\r\n<p>Georgia residents: A full and fair description of Christian Aid Ministries and its financial statements are available upon request from Christian Aid Ministries, P.O. Box 360, Berlin, OH 44610.</p>\r\n<p>Illinois residents: Contracts and reports regarding Christian Aid Ministries are on file with the Illinois Attorney General.</p>\r\n<p>Maryland residents: For the cost of postage and copying, documents and information filed under the Maryland charitable organizations laws can be obtained from the Secretary of State, Charitable Division, State House, Annapolis, MD 21401, 800-825-4510.</p>\r\n<p>Michigan residents: The registration number of Christian Aid Ministries in the state of Michigan is CS 46826.</p>\r\n<p>New Jersey residents: Information filed with the Attorney General concerning this charitable solicitation may be obtained from the Attorney General of the State of New Jersey by calling 1-973-504-6215. Registration with the Attorney General does not imply endorsement.</p>\r\n<p>New York residents: A copy of the most recent annual report is available from the State of New York Department of Law, Charities Bureau, 120 Broadway, New York, New York, 10271.</p>\r\n<p>North Carolina residents: Financial information about this organization and a copy of its license are available from the State Solicitation Licensing Branch at 1-919-733-4510. The license is not an endorsement by the State.</p>\r\n<p>Pennsylvania residents: The official registration and financial information of Christian Aid Ministries may be obtained from the Pennsylvania Department of State by calling toll-free, within Pennsylvania, 1-800-732-0999. Registration does not imply endorsement.</p>\r\n<p>Virginia residents: A copy of the financial statement is available from the Division of Consumer Affairs, Department of Agricultural and Consumer Services, 1100 Bank Street, Richmond, VA 23219 or call 1-804-786-1343.</p>\r\n<p>Washington residents: Thank you for supporting Christian Aid Ministries. For additional information regarding the organization’s activities or financial information, Christian Aid Ministries is registered with the Washington State Charities Program as required by law and information may be obtained by calling 800-332-4483 or 360-725-0378.</p>\r\n<p>West Virginia residents: West Virginia residents may obtain a summary of the registration and financial documents from the Secretary of State, State Capital, Charleston, WV 25305. Registration does not imply endorsement.</p>',0,'2012-02-28 16:28:26','2012-02-28 20:35:52'),(58,30,'Body','<iframe style=\"width:100%;border:none\" src=\"http://christianaidministries.org/machform/embed.php?id=2\" title=\"Biblical Stewardship Services information\" frameborder=\"0\" height=\"1503\" scrolling=\"no\"><a href=\"http://christianaidministries.org/machform/view.php?id=2\" title=\"Biblical Stewardship Services information\">Biblical Stewardship Services information</a></iframe>',0,'2012-01-25 18:40:30','2012-04-24 15:52:40'),(59,30,'Side Body','',1,'2012-01-25 18:40:31','2012-04-24 15:52:40'),(22,12,'Body','',0,'2011-05-23 15:12:43','2011-08-16 18:50:23'),(23,12,'Side Body','<p>{{ content_holder_11 }}</p>\r\n<br />',1,'2011-05-23 15:12:43','2011-08-16 18:50:23'),(24,13,'Body',NULL,NULL,'2011-05-23 15:37:47','2011-05-23 15:37:47'),(25,13,'Side Body',NULL,NULL,'2011-05-23 15:37:47','2011-05-23 15:37:47'),(26,14,'Body',NULL,NULL,'2011-05-23 15:39:14','2011-05-23 15:39:14'),(27,14,'Side Body',NULL,NULL,'2011-05-23 15:39:14','2011-05-23 15:39:14'),(28,15,'Body',NULL,NULL,'2011-05-23 15:43:25','2011-05-23 15:43:25'),(29,15,'Side Body',NULL,NULL,'2011-05-23 15:43:25','2011-05-23 15:43:25'),(30,16,'Body','',0,'2011-05-23 15:50:18','2011-06-20 19:49:08'),(31,16,'Side Body','',1,'2011-05-23 15:50:18','2011-06-20 19:49:08'),(32,17,'Body','',0,'2011-05-23 16:18:50','2011-06-17 20:29:12'),(33,17,'Side Body','',1,'2011-05-23 16:18:50','2011-06-17 20:29:12'),(34,18,'Body','<p>{{ content_holder_8 }}</p>',0,'2011-05-24 17:39:45','2011-08-25 20:40:48'),(35,18,'Side Body','',1,'2011-05-24 17:39:45','2011-08-25 20:40:48'),(36,19,'Body','',0,'2011-05-24 17:50:32','2011-08-11 21:37:51'),(37,19,'Side Body','<p>{{ content_holder_11 }}</p>',1,'2011-05-24 17:50:32','2011-08-11 21:37:51'),(38,20,'Body','',0,'2011-05-26 14:15:37','2011-05-26 14:16:11'),(39,20,'Side Body','',1,'2011-05-26 14:15:37','2011-05-26 14:16:11'),(42,22,'Body','',0,'2011-06-21 15:23:51','2011-06-21 16:57:00'),(43,22,'Side Body','',1,'2011-06-21 15:23:51','2011-06-21 16:57:00'),(46,24,'Body','<br />\r\n<h1>CAM Training Videos</h1>\r\n<p>In the scrollable window below are training videos that I\'m producing for CAM internal usage.<br />\r\nThese videos will be used to train and cover 99% of the questions on how to administer the system\r\nsuch as content manged pages, news items, programs, articles, memberships, orders, files, images, et cetera. <br />\r\n<br />\r\nStreaming of the videos is available for modern browsers (Firefox 4+, Safari, IE8+, Chrome) but may be slow depending on internet connection. If you cannot adequately stream the video, a link is available below the video to download the file. Most videos are in either .MOV or .M4V file formats. These can be viewed in Windows Media Player natively on some versions and with a plugin on others. As well, iTunes or Quicktime will play these videos as they\'re its native format.<br />\r\n<br />\r\nI recommend downloading the videos to your local computer and putting them in a folder if your job is administration of the system or content editing as they will serve as a continued resource in its management.\r\n\r\nIf there is a topic that needs to be covered more in-depth, send an email to [email protected] or [email protected] and we\'ll put it on the screencasting schedule.<br /><br />\r\nI hope these videos are a beneficial resource in better understanding the system and making staff training much easier and more thorough. They sure are fun to produce.\r\n<br /><br />\r\n~Kevin Hopkins <br />\r\n<a title=\"[email protected]?subject=[CAM] Donation System Screencasts\" href=\"mailto:[email protected]?subject=[CAM]%20Donation%20System%20Screencasts\">[email protected] </a>\r\n<br />\r\nLead Developer @ Found\r\n\r\n\r\n<iframe src=\"/jwplayer/training_videos.html\" height=\"1200\" width=\"100%\"></iframe>\r\n\r\n</p>\r\n<p><img src=\"/system/images/BAhbBlsHOgZmSSIpMjAxMi8wMy8wMS8yM18zMV80Nl81NjVfdHlfbWFyXzMucG5nBjoGRVQ/ty_mar_3.png\" height=\"454\" width=\"344\" />\r\n\r\n</p>',0,'2011-08-22 16:38:31','2012-04-18 14:17:32'),(47,24,'Side Body','<p>{{ content_holder_108 }}\r\n</p>',1,'2011-08-22 16:38:31','2012-04-18 14:17:32'),(60,31,'Body','<h1><a id=\"wym-1328214966741\" title=\"https://www.christianaidministries.org/\" href=\"https://www.christianaidministries.org/\">Home</a>\r\n</h1>\r\n<h1><a title=\"/programs\" href=\"/programs\">Our Programs</a>\r\n</h1>\r\n<ul><li> <a title=\"/programs/39\" href=\"/programs/39\">Adopt-A-Family</a>\r\n</li>\r\n<li><a title=\"/programs/6\" href=\"/programs/6\">Billboard Evangelism</a>\r\n</li>\r\n<li><a title=\"/programs/5\" href=\"/programs/5\">Bibles-for-the-World</a>\r\n</li>\r\n<li><a title=\"/programs/3\" href=\"/programs/3\">Christian Family Magazines</a>\r\n</li>\r\n<li><a title=\"/programs/3\" href=\"/programs/3\">Christian Martyrs Fund</a>\r\n</li>\r\n<li><a title=\"/programs/8\" href=\"/programs/8\">Church Planting Projects</a>\r\n</li>\r\n<li><a title=\"/programs/9\" href=\"/programs/9\">Clothing Bundle Project</a>\r\n</li>\r\n<li><a title=\"/programs/10\" href=\"/programs/10\">Conservative Anabaptist Service Program</a>\r\n</li>\r\n<li><a title=\"/programs/11\" href=\"/programs/11\">Disaster Response Services</a>\r\n</li>\r\n<li><a title=\"/programs/12\" href=\"/programs/12\">Family-Self-Support</a>\r\n</li>\r\n<li><a title=\"/programs/38\" href=\"/programs/38\">Favorite Stories from the Bible</a>\r\n</li>\r\n<li><a title=\"/programs/13\" href=\"/programs/13\">Gifts-That-Grow</a>\r\n</li>\r\n<li><a title=\"/programs/32\" href=\"/programs/32\">Haiti-Sponsor-A-Child School Program</a>\r\n</li>\r\n<li><a title=\"/programs/14\" href=\"/programs/14\">Help-for-the-Elderly</a>\r\n</li>\r\n<li><a title=\"/programs/42\" href=\"/programs/42\">Hope-for-the-Handicapped</a>\r\n</li>\r\n<li><a title=\"/programs/15\" href=\"/programs/15\">International Crisis</a>\r\n</li>\r\n<li><a title=\"/programs/2\" href=\"/programs/2\">International-Feed-A-Family</a>\r\n</li>\r\n<li><a title=\"/programs/17\" href=\"/programs/17\">International-Sponsor-A-Student</a>\r\n</li>\r\n<li><a title=\"/programs/18\" href=\"/programs/18\">Jericho Road Ministries</a>\r\n</li>\r\n<li><a title=\"/programs/19\" href=\"/programs/19\">Medicines-for-Multitudes</a>\r\n</li>\r\n<li><a title=\"/programs/36\" href=\"/programs/36\">Middle East Ministries</a>\r\n</li>\r\n<li><a title=\"/programs/20\" href=\"/programs/20\">Milk-for-Many-Mouths</a>\r\n</li>\r\n<li><a title=\"/programs/40\" href=\"/programs/40\">Nicaragua-Adopt-A-Family</a>\r\n</li>\r\n<li><a title=\"/programs/41\" href=\"/programs/41\">Rapid Response Disaster Service</a>\r\n</li>\r\n<li><a title=\"/programs/23\" href=\"/programs/23\">Save-A-Life!</a>\r\n</li>\r\n<li><a title=\"/programs/24\" href=\"/programs/24\">Seed Project</a>\r\n</li>\r\n<li><a title=\"/programs/25\" href=\"/programs/25\">Sewing Centers</a>\r\n</li>\r\n<li><a title=\"/programs/22\" href=\"/programs/22\">Shared Accountability Lending & Teaching Program</a>\r\n</li>\r\n<li><a title=\"/programs/26\" href=\"/programs/26\">Special-Needs-Fund\r\n\r\n</a>\r\n</li>\r\n<li><a title=\"/programs/35\" href=\"/programs/35\">Sponsor-A-Bible-Lesson</a>\r\n</li>\r\n<li><a title=\"/programs/1\" href=\"/programs/1\">Sponsor-an-Orphan</a>\r\n</li>\r\n<li><a title=\"/programs/27\" href=\"/programs/27\">Strong Tower Children\'s Home</a>\r\n</li>\r\n<li><a title=\"/programs/28\" href=\"/programs/28\">Support-A-Widow</a>\r\n</li>\r\n<li><a title=\"/programs/34\" href=\"/programs/34\">Teaching Ministries Program</a>\r\n</li>\r\n<li><a title=\"/programs/29\" href=\"/programs/29\">Warm-A-Family</a>\r\n</li>\r\n<li><a title=\"/programs/30\" href=\"/programs/30\">Water-for-the-World</a>\r\n</li>\r\n<li><a title=\"/programs/33\" href=\"/programs/33\">Where-Needed-Most</a>\r\n</li>\r\n</ul>\r\n<h1><a title=\"/news\" href=\"/news\">News</a>\r\n</h1>\r\n<ul><li><a title=\"/news/releases\" href=\"/news/releases\">Recent posts</a>\r\n</li>\r\n<li><a title=\"/news/newsletters\" href=\"/news/newsletters\">CAM Newsletters</a>\r\n</li>\r\n</ul>\r\n<h1><a title=\"Donate\" href=\"/donate\">Donate</a>\r\n</h1>\r\n<h1><a title=\"About Us\" href=\"/about-cam/who-we-are\">About Us</a>\r\n</h1>\r\n<ul><li><a title=\"Who We Are\" href=\"/about-cam/who-we-are\">Who We Are</a>\r\n</li>\r\n<li><a title=\"Locations\" href=\"/about-cam/locations\">Locations</a>\r\n</li>\r\n<li><a title=\"Financial Accountability\" href=\"/about-cam/financial-accountability\">Financial Accountability</a>\r\n</li>\r\n<li><ol><a title=\"Financial Statements\" href=\"/about-cam/financial-accountability/financial-statements\">Financial Statements</a>\r\n</ol>\r\n</li>\r\n<li><a title=\"Statement of Faith\" href=\"/about-cam/statement-of-faith\">Statement of Faith</a>\r\n</li>\r\n<li><a title=\"Biblical Stewardship Services\" href=\"/about-cam/biblical-stewardship-services\">Biblical Stewardship Services</a>\r\n</li>\r\n<li><a title=\"TGS International\" href=\"/about-cam/tgs-international\">TGS International</a>\r\n</li>\r\n\r\n</ul>\r\n<h1><a title=\"Contact Us\" href=\"/contacts/new\">Contact Us</a>\r\n</h1>\r\n<h1><a title=\"Signup for our newsletter\" href=\"/contacts/newsletter_signup\">Signup for our Newsletter</a>\r\n</h1>\r\n<h1><a title=\"Privacy Policy\" href=\"/privacy-policy\">Privacy Policy</a>\r\n</h1>\r\n<h1><a title=\"Site Map\" href=\"/site-map\">Site Map</a>\r\n</h1>\r\n<h1><a title=\"Terms and Conditions\" href=\"/terms-and-conditions\">Terms and Conditions</a>\r\n</h1>\r\n<h1><a title=\"Solicitation Disclosure\" href=\"/solicitation-disclosure\">Solicitation Disclosure</a>\r\n</h1>',0,'2012-02-02 20:00:33','2012-04-25 15:42:02'),(61,31,'Side Body','<p>{{ content_holder_86 }}</p>',1,'2012-02-02 20:00:33','2012-04-25 15:42:02'),(48,25,'Body','',0,'2011-08-25 20:38:53','2011-08-25 20:38:53'),(49,25,'Side Body','',1,'2011-08-25 20:38:53','2011-08-25 20:38:53'),(50,26,'Body','<h1>Latest News Releases</h1>',0,'2011-08-25 20:41:52','2012-08-20 02:53:55'),(51,26,'Side Body','<p>{{ content_holder_116 }}</p>',1,'2011-08-25 20:41:52','2012-08-20 02:53:55'),(52,27,'Body',NULL,NULL,'2011-08-26 15:08:02','2011-08-26 15:08:02'),(53,27,'Side Body',NULL,NULL,'2011-08-26 15:08:02','2011-08-26 15:08:02'),(54,28,'Body','<h1>Christian Aid Ministries’ Online Privacy Policy</h1>\r\n<p>Christian Aid Ministries (hereafter referred to as CAM) is committed to respecting your online privacy and security. We have developed this privacy policy to ensure our web visitors that information you provide to websites of CAM will not be shared with any third party. </p>\r\n<h2>Awareness </h2>\r\n<p>CAM provides this Online Privacy Policy to make you aware of our privacy policy and security practices, and to inform you of the way your information is collected and used. We also provide you with the opportunity to remove your name from our mailing list, if you desire to do so.</p>\r\n<h2>Information Collected </h2>\r\n<p>On some CAM websites you can provide contact information for ministry-related purposes, or to make ministry contributions. Here are the types of personal information that we collect:</p>\r\n<ul><li>contact information: name, organization/church, complete address, phone number, email address;</li>\r\n<li>payment information: credit card number and expiration date, bank account and routing number, and billing information <strong>(sensitive payment information is not stored on our server)</strong>;</li>\r\n<li>shipping information: name, organization/church, complete address;</li>\r\n<li>information you wish to leave: questions, comments, suggestions; and your request to receive periodic updates: e.g., to individuals who request it, we will send periodic newsletters.</li>\r\n</ul>\r\n<h2>How Information is Used </h2>\r\n<p>CAM uses your information to understand your needs and provide you with better service. Specifically, we use your information to help you complete a transaction, communicate back to you, update you on ministry happenings, and to personalize our website for you. Credit card numbers and bank account information are used only for donation or payment processing and are not retained for other purposes. We use the comments you offer to provide you with information requested, and we take seriously each recommendation as to how we might improve communication. </p>\r\n<h2>No Sharing of Personal Information</h2>\r\n<p> CAM will not sell, rent, or lease your personal information to other organizations. We assure you that the identity of all who contact us through our websites will be kept confidential. Use of personal information will be limited to the internal purposes of Christian Aid Ministries and its subsidiaries and only to further the ministry activities and purposes of Christian Aid Ministries.</p>\r\n<h2>Security</h2>\r\n<p> Christian Aid Ministries is committed to ensuring the security of your personal information. To prevent unauthorized access, maintain data accuracy, and ensure the proper use of information, we have established and implemented appropriate physical, electronic, and managerial procedures to safeguard and secure the information we collect online. We use Internet encryption software, Secure Socket Layer (SSL) protocol when collecting or transferring sensitive data such as credit card information.</p>\r\n<h2>Cookies</h2>\r\n<p> From time to time, we may send a “cookie” to your computer. A cookie is a small piece of data that is sent to your browser from a web server and stored on your computer’s hard drive. Once placed onto your machine, the cookie will allow the website to “recognize” you as a unique individual. A cookie can’t read data off your hard drive or read cookie files created by other sites. Cookies do not damage your system. We use cookies to recognize you when you return to our sites, or to identify which areas of our network of websites you have visited (i.e., e-commerce sites, etc.). We may use this information to better personalize the content you see on our sites.</p>\r\n<p>Many websites place cookies on your hard drive. You can choose whether to accept cookies by changing the settings of your browser. Your browser can refuse all cookies, or show you when a cookie is being sent. If you choose not to accept these cookies, your experience at our site and other websites may be diminished and some features may not work as intended. </p>\r\n<h2>Removing Your Name from our Mailing List </h2>\r\n<p>Our website gives you the opportunity to remove your name from our mailing list so that you do not receive any future communications from our ministry. If you desire to remove your name, you can send us an email at [email protected] or call 330-893-2428. When contacting us to change your status, be sure to include any information that would help us identify you on our lists, such as complete contact information (name, postal address, telephone number, and email address), any CAM donor account number(s), or information about venues in which you gave us your contact information online.</p>\r\n<h2>Contacting Us </h2>\r\n<p>If you have comments or questions about our privacy policy, please send us an email at [email protected]. </p>\r\n<h2>Refund and Cancellation Policies</h2>\r\n<p>All donations are final and are not refundable. Please call 330-893-2428 for more information.<br />Sponsorships can be cancelled at any time by accessing the “My Account” section of the website or by calling us at 330-893-2428.</p>',0,'2011-11-07 20:24:44','2012-02-28 16:34:22'),(55,28,'Side Body','<p>{{ content_holder_86 }}</p>',1,'2011-11-07 20:24:45','2012-02-28 16:34:22'),(56,29,'Body','<h1>Christian Aid Ministries’ usage terms and conditions</h1>\r\n<p>Welcome to our website. If you continue to browse and use this website, you are agreeing to comply with and be bound by the following terms and conditions of use, which together with our privacy policy govern Christian Aid Ministries’ relationship with you in relation to this website. If you disagree with any part of these terms and conditions, please do not use our website.</p>\r\n<p>The term ‘Christian Aid Ministries’ or ‘us’ or ‘we’ refers to the owner of the website whose registered office is 4464 SR 39 Millersburg, OH 44654. The term ‘you’ refers to the user or viewer of our website.</p>\r\n<p>The use of this website is subject to the following terms of use:</p>\r\n<ul><li>The content of the pages of this website is for your general information and use only. It is subject to change without notice.</li>\r\n<li>This website uses cookies to monitor browsing preferences. If you do allow cookies to be used, the following personal information may be stored by us for use by third parties.</li>\r\n<li>Neither we nor any third parties provide any warranty or guarantee as to the accuracy, timeliness, performance, completeness or suitability of the information and materials found or offered on this website for any particular purpose. You acknowledge that such information and materials may contain inaccuracies or errors and we expressly exclude liability for any such inaccuracies or errors to the fullest extent permitted by law.</li>\r\n<li>Your use of any information or materials on this website is entirely at your own risk, for which we shall not be liable. It shall be your own responsibility to ensure that any products, services or information available through this website meet your specific requirements.</li>\r\n<li>This website contains material which is owned by or licensed to us. This material includes, but is not limited to, the design, layout, look, appearance and graphics. Reproduction is prohibited other than in accordance with the copyright notice, which forms part of these terms and conditions.</li>\r\n<li>All trademarks reproduced in this website, which are not the property of, or licensed to the operator, are acknowledged on the website.</li>\r\n<li>Unauthorized use of this website may give rise to a claim for damages and/or be a criminal offense.</li>\r\n<li>From time to time, this website may also include links to other websites. These links are provided for your convenience to provide further information. They do not signify that we endorse the website(s). We have no responsibility for the content of the linked website(s).</li>\r\n<li>Your use of this website and any dispute arising out of such use of the website is subject to the laws of the United States of America.</li>\r\n</ul>\r\n<h2>Website disclaimer\r\n</h2>\r\n<p>The information contained in this website is for general information purposes only. The information is provided by Christian Aid Ministries and while we endeavour to keep the information up to date and correct, we make no representations or warranties of any kind, express or implied, about the completeness, accuracy, reliability, suitability or availability with respect to the website or the information, products, services, or related graphics contained on the website for any purpose. Any reliance you place on such information is therefore strictly at your own risk.</p>\r\n<p>In no event will we be liable for any loss or damage including without limitation, indirect or consequential loss or damage, or any loss or damage whatsoever arising from loss of data or profits arising out of, or in connection with, the use of this website.</p>\r\n<p>Through this website you are able to link to other websites which are not under the control of Christian Aid Ministries. We have no control over the nature, content and availability of those sites. The inclusion of any links does not necessarily imply a recommendation or endorse the views expressed within them.</p>\r\n<p>Every effort is made to keep the website up and running smoothly. However, Christian Aid Ministries takes no responsibility for, and will not be liable for, the website being temporarily unavailable due to technical issues beyond our control.</p>\r\n<h2>Refund and Cancellation Policies</h2>\r\n<p>All donations are final and are not refundable. Please call 330-893-2428 for more information.<br />Sponsorships can be cancelled at any time by accessing the “My Account” section of the website or by calling us at 330-893-2428.</p>',0,'2011-11-07 20:31:46','2012-02-28 16:34:06'),(57,29,'Side Body','<p>{{ content_holder_86 }}</p>',1,'2011-11-07 20:31:47','2012-02-28 16:34:06'),(63,32,'Side Body','<p>{{ content_holder_86 }}</p>',1,'2012-02-28 16:28:26','2012-02-28 20:35:52'),(64,33,'Body','<br />\r\n<h1>CAM Locations:</h1>\r\n<p>At CAM\'s home office in Berlin, Ohio, staff members do behind the scenes work such as processing donations, accounting, fundraising, procuring GIK products, making decisions, and directing the various CAM state-side operations and field bases.</p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Home Office, Berlin, OH\" title=\"Home Office, Berlin, OH\" src=\"/system/images/BAhbBlsHOgZmSSI2MjAxMi8wNi8yMi8yMV8zNV8xOF81NjlfSG9tZV9PZmZpY2VfQmVybGluX09ILmpwZwY6BkVU/Home_Office_Berlin_OH.jpg\" height=\"326\" width=\"595\" /></p>\r\n<p>We have a 55,000 sq. ft. distribution center in Ephrata, Pennsylvania, where food parcels are packed and other relief shipments organized. Next to the distribution center is our meat canning facility.</p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Distribution center and meat canning facility, Ephrata, Pennsylvania\" title=\"Distribution center and meat canning facility, Ephrata, Pennsylvania\" src=\"/system/images/BAhbBlsHOgZmSSImMjAxMi8wNi8yMi8yMV8zNV8xOF8zODZfMDM5cGEuanBnBjoGRVQ/039pa.jpg\" height=\"326\" width=\"595\" /></p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Canada Office and Clothing Center, Wallenstein, Ontario\" title=\"Canada Office and Clothing Center, Wallenstein, Ontario\" src=\"/system/images/BAhbBlsHOgZmSSInMjAxMi8wNi8yMi8yMV8zNV8xOF8xMjZfMDM5Y2FuLmpwZwY6BkVU/039can.jpg\" height=\"326\" width=\"595\" /></p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"DRS Warehouse, Vanleer, Tennessee\" title=\"DRS Warehouse, Vanleer, Tennessee\" src=\"/system/images/BAhbBlsHOgZmSSI5MjAxMi8wNi8yMi8yMV8zOV81Ml8yODRfRFJTX1dhcmVob3VzZV9WYW5sZWVyX1ROLkpQRwY6BkVU/DRS_Warehouse_Vanleer_TN.JPG\" height=\"326\" width=\"595\" /></p>\r\n<p>CAM has staff and distribution networks in Romania, Moldova, Ukraine, Haiti, Nicaragua, Liberia, and Israel.</p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Financial office, Suceava, Romania\" title=\"Financial office, Suceava, Romania\" src=\"/system/images/BAhbBlsHOgZmSSJBMjAxMi8wNi8yMi8yMV80Nl80MV8xMjFfRmluYW5jaWFsX29mZmljZV9TdWNlYXZhX1JvbWFuaWEuanBnBjoGRVQ/Financial_office_Suceava_Romania.jpg\" height=\"326\" width=\"595\" /></p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Warehouse, Cluj, Romania\" title=\"Warehouse, Cluj, Romania\" src=\"/system/images/BAhbBlsHOgZmSSIoMjAxMi8wNi8yMi8yMV8zNV8xOF8yMTFfMDM5Y2x1ai5qcGcGOgZFVA/039cluj.jpg\" height=\"326\" width=\"595\" /></p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Warehouse, Suceava, Romania\" title=\"Warehouse, Suceava, Romania\" src=\"/system/images/BAhbBlsHOgZmSSI0MjAxMi8wNi8yMi8yMV8zNV8xOF80MjdfMDM5cm9tYW5pYXdhcmVob3VzZS5qcGcGOgZFVA/039romaniawarehouse.jpg\" height=\"326\" width=\"595\" /></p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Warehouse, Chisinau, Moldova\" title=\"Warehouse, Chisinau, Moldova\" src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wNi8yMi8yMV8zNV8xOF8zNDVfMDM5bW9sZG92YS5qcGcGOgZFVA/039moldova.jpg\" height=\"326\" width=\"595\" /></p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Office and Warehouse, Kiev, Ukraine\" title=\"Office and Warehouse, Kiev, Ukraine\" src=\"/system/images/BAhbBlsHOgZmSSJCMjAxMi8wNi8yMi8yMV8zNV8xOF83OTdfT2ZmaWNlX2FuZF9XYXJlaG91c2VfS2lldl9Va3JhaW5lLmpwZwY6BkVU/Office_and_Warehouse_Kiev_Ukraine.jpg\" height=\"326\" width=\"595\" /></p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Office and Warehouse, Titanyen, Haiti\" title=\"Office and Warehouse, Titanyen, Haiti\" src=\"/system/images/BAhbBlsHOgZmSSJEMjAxMi8wNi8yMi8yMV8zNV8xOF84NDRfT2ZmaWNlX2FuZF9XYXJlaG91c2VfVGl0YW55ZW5fSGFpdGkuSlBHBjoGRVQ/Office_and_Warehouse_Titanyen_Haiti.JPG\" height=\"326\" width=\"595\" /></p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Joshua Memorial Clinic, La Source, Haiti\" title=\"Joshua Memorial Clinic, La Source, Haiti\" src=\"/system/images/BAhbBlsHOgZmSSJHMjAxMi8wNi8yMi8yMV8zNV8xOF83MDlfSm9zaHVhX01lbW9yaWFsX0NsaW5pY19MYV9Tb3VyY2VfSGFpdGkuanBnBjoGRVQ/Joshua_Memorial_Clinic_La_Source_Haiti.jpg\" height=\"381\" width=\"595\" /></p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Balm of Gilead Clinic, Waslala, Nicaragua\" title=\"Balm of Gilead Clinic, Waslala, Nicaragua\" src=\"/system/images/BAhbBlsHOgZmSSJIMjAxMi8wNi8yMi8yMV8zNV8xOF80NzBfQmFsbV9vZl9HaWxlYWRfQ2xpbmljX1dhc2xhbGFfTmljYXJhZ3VhLmpwZwY6BkVU/Balm_of_Gilead_Clinic_Waslala_Nicaragua.jpg\" height=\"326\" width=\"595\" /></p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Office and Warehouse, Managua, Nicaragua\" title=\"Office and Warehouse, Managua, Nicaragua\" src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wNi8yMi8yMV8zNV8xOF8zMDdfMDM5bWFuYWd1YS5qcGcGOgZFVA/039managua.jpg\" height=\"326\" width=\"595\" /></p>\r\n<p>CAM also operates five clothing centers where clothing, footwear, comforters, and fabric are received, sorted, and prepared for shipment overseas. \r\n</p>\r\n',0,'2012-03-09 16:06:39','2012-06-22 17:55:20'),(65,33,'Side Body','<p><br />{{ content_holder_110 }}</p>',1,'2012-03-09 16:06:39','2012-06-22 17:55:20'),(88,45,'Body','<p>Here is my about page</p>',0,'2012-08-19 18:35:32','2012-08-19 19:26:18'),(89,45,'Side Body','<p>Here is my left Sidebar</p>',1,'2012-08-19 18:35:32','2012-08-19 19:26:18'),(70,36,'Body','<br />\r\n<h3><strong>Thank you</strong> for your continued support!</h3>\r\n<p style=\"font-weight: bold;\">“Inasmuch as ye have done it unto one of the least of these my brethren, ye have done it unto me.” Matthew 25:40b</p>\r\n<p style=\"font-weight: bold;\"><img src=\"/system/images/BAhbBlsHOgZmSSI0MjAxMi8wNC8xMS8xOV8xOV8xNV81NjdfZG9uYXRpb25fYWRqdXN0bWVudC5wbmcGOgZFVA/donation_adjustment.png\" height=\"370\" width=\"613\" /></p>\r\n<p>May God richly bless you.</p>\r\n<p style=\"font-weight: bold;\">Sincerely,\r\n<br style=\"font-weight: normal;\" />Christian Aid Ministries | P.O. Box 360, Berlin, OH 44610 \r\n<br style=\"font-weight: normal;\" />T: 330.893.2428\r\n<br style=\"font-weight: normal;\" />F: 330.893.2305\r\n<br style=\"font-weight: normal;\" />E: <a title=\"[email protected]\" href=\"mailto:[email protected]\">[email protected]</a>\r\n</p>\r\n<p><a style=\"font-weight: bold;\" title=\"/home\" href=\"/home\">< < Go to home page</a>\r\n</p>',0,'2012-04-05 20:32:47','2012-04-11 15:22:06'),(71,36,'Side Body','',1,'2012-04-05 20:32:47','2012-04-11 15:22:06'),(72,37,'Body','<br />\r\n<h3><strong>Thank you</strong> for your continued support!</h3>\r\n<p>If at any time you wish to increase your sponsorship amounts, please call us 330-893-2428, email us at <a title=\"[email protected]\" href=\"mailto:[email protected]\">[email protected]</a>, <a title=\"/contacts/new\" href=\"/contacts/new\">send us a message through our website</a>, or write to us at <strong>Christian Aid Ministries, P.O. Box 360, Berlin, OH 44610. </strong>\r\n</p>\r\n<p style=\"font-weight: bold;\">“Inasmuch as ye have done it unto one of the least of these my brethren, ye have done it unto me.” Matthew 25:40b</p>\r\n<p style=\"font-weight: bold;\"><img src=\"/system/images/BAhbBlsHOgZmSSI0MjAxMi8wNC8xMS8xOV8xOV8xNV81NjdfZG9uYXRpb25fYWRqdXN0bWVudC5wbmcGOgZFVA/donation_adjustment.png\" height=\"370\" width=\"613\" /></p>\r\n<p>May God richly bless you.</p>\r\n<p style=\"font-weight: bold;\">Sincerely,\r\n<br style=\"font-weight: normal;\" />Christian Aid Ministries | P.O. Box 360, Berlin, OH 44610 \r\n<br style=\"font-weight: normal;\" />T: 330.893.2428\r\n<br style=\"font-weight: normal;\" />F: 330.893.2305\r\n<br style=\"font-weight: normal;\" />E: <a title=\"[email protected]\" href=\"mailto:[email protected]\">[email protected]</a>\r\n</p>\r\n<p><a style=\"font-weight: bold;\" title=\"/home\" href=\"/home\">< < Go to home page</a>\r\n</p>',0,'2012-04-05 20:33:07','2012-04-11 15:25:21'),(73,37,'Side Body','',1,'2012-04-05 20:33:07','2012-04-11 15:25:21'),(80,41,'Body',NULL,NULL,'2012-07-30 15:36:18','2012-07-30 15:36:18'),(81,41,'Side Body',NULL,NULL,'2012-07-30 15:36:19','2012-07-30 15:36:19'),(112,57,'Body','<h1>Dayton Event Calendar</h1>\r\n<p>Talk about the event Calendar here</p>',0,'2012-08-20 00:58:23','2012-08-20 02:54:06'),(113,57,'Left Column Body','<p>{{ content_holder_116 }}</p>',1,'2012-08-20 00:58:23','2012-08-20 02:54:06'),(114,58,'Body','<div class=\"pdf\">\r\n<p><a href=\"/system/resources/2012/08/23/21_53_51_304_Dayton_Businesses.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Businesses\" target=\"_blank\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wOC8yMi8wMF80NF80NV8zNjRfYWRvYmVfbG9nby5wbmcGOgZFVA/adobe_logo.png\" alt=\"adobe_logo\" rel=\"225x255\" width=\"30\" height=\"30\" class=\"add-caption\" /></a>\r\n<a href=\"/system/resources/2012/08/23/21_53_51_304_Dayton_Businesses.pdf?iframe=true&width=1000&height=1200\" title=\"Dayton Businesses\" target=\"_blank\">(open PDF) Local Businesses - Directory with links to websites</a>\r\n</p>\r\n</div>\r\n<div style=\"clear:both\"></div>\r\n<h2>Local Churches</h2>\r\n<ul><li>Christ Gospel Church: 290 Eastview Street </li>\r\n<li>Dayton Church of the Brethren: 202 Main Street </li>\r\n<li>Dayton Mennonite Church: 4887 John Wayland Highway </li>\r\n<li>Dayton United Methodist Church: 215 Ashby Street </li>\r\n<li>Shepherd of the Valley Lutheran Church: 229 Main Street </li>\r\n<li>Valley Friends Meeting: 363 High Street </li>\r\n</ul>\r\n<h2>Local Schools</h2>\r\n<ul><li><a href=\"http://www.rockingham.k12.va.us/\" title=\"http://www.rockingham.k12.va.us/\" target=\"_blank\">Rockingham County Public Schools</a>\r\n</li>\r\n<li><a href=\"http://blogs.rockingham.k12.va.us/jwes/\" title=\"http://blogs.rockingham.k12.va.us/jwes/\" target=\"_blank\">John Wayland Elementary School</a>\r\n</li>\r\n<li><a href=\"http://www.rockingham.k12.va.us/WSPMS/wspms.html\" title=\"http://www.rockingham.k12.va.us/WSPMS/wspms.html\" target=\"_blank\">Wilbur Pence Middle School</a>\r\n</li>\r\n<li><a href=\"http://www.rockingham.k12.va.us/TAHS/tahs.html\" title=\"http://www.rockingham.k12.va.us/TAHS/tahs.html\" target=\"_blank\">Turner Ashby High School</a>\r\n</li>\r\n<li><a href=\"http://blogs.rockingham.k12.va.us/dlc/\" title=\"http://blogs.rockingham.k12.va.us/dlc/\" target=\"_blank\">Dayton Learning Center</a>\r\n</li>\r\n<li><a href=\"http://www.rockingham.k12.va.us/mtc/MTC.html\" title=\"http://www.rockingham.k12.va.us/mtc/MTC.html\" target=\"_blank\">Massanutten Technical Center</a>\r\n</li>\r\n</ul>\r\n<h2>Local Organizations </h2>\r\n<ul><li><a href=\"http://abcdayton.com/\" title=\"http://abcdayton.com/\" target=\"_blank\">ABCDayton (Arts & Business Connection) </a>\r\n</li>\r\n<li><a href=\"http://www.artisanscourtyard.org/\" title=\"http://www.artisanscourtyard.org/\" target=\"_blank\">Artisans Courtyard of Dayton</a>\r\n</li>\r\n<li><a href=\"http://www.legion.org/\" title=\"http://www.legion.org/\" target=\"_blank\">Dayton American Legion</a>\r\n</li>\r\n<li><a href=\"http://www.heritagecenter.com/Fort%20Harrison/fortharrison.html\" title=\"http://www.heritagecenter.com/Fort%20Harrison/fortharrison.html\" target=\"_blank\">Fort Harrison, Inc. (Daniel Harrison House) </a>\r\n</li>\r\n<li><a href=\"http://www.heritagecenter.com/\" title=\"http://www.heritagecenter.com/\" target=\"_blank\">Harrisonburg-Rockingham Historical Society Heritage Museum</a>\r\n</li>\r\n<li><a href=\"http://www.mrlib.org/Home.aspx\" title=\"http://www.mrlib.org/Home.aspx\" target=\"_blank\">Massanutten Regional Library</a>\r\n</li>\r\n<li><a href=\"http://www.mrlib.org/LocationsHours/NorthRiverLibrary.aspx\" title=\"http://www.mrlib.org/LocationsHours/NorthRiverLibrary.aspx\" target=\"_blank\">North River Library</a>\r\n</li>\r\n</ul>\r\n<p><a href=\"http://www.hrchamber.org/\" title=\"http://www.hrchamber.org/\" target=\"_blank\">Harrisonburg-Rockingham Chamber of Commerce</a>\r\n</p>\r\n<p><a href=\"http://www.rockinghamcountyva.gov/\" title=\"http://www.rockinghamcountyva.gov/\" target=\"_blank\">Rockingham County</a>\r\n</p>\r\n<ul><li><a href=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=122\" title=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=122\" target=\"_blank\">Burn Permits</a>\r\n</li>\r\n<li><a href=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=106\" title=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=106\" target=\"_blank\">Landfill</a>\r\n</li>\r\n<li><a href=\"http://rockingham.gisbrowser.com/home.cfm\" title=\"http://rockingham.gisbrowser.com/home.cfm\" target=\"_blank\">Geographic Information System (GIS)</a>\r\n</li>\r\n</ul>\r\n<p><a href=\"http://www.visitshenandoah.org/Home.aspx\" title=\"http://www.visitshenandoah.org/Home.aspx\" target=\"_blank\">Shenandoah Valley Travel Guide</a>\r\n</p>\r\n<p><a href=\"http://www.rhspca.org/\" title=\"http://www.rhspca.org/\" target=\"_blank\">SPCA</a>\r\n</p>\r\n<p><a href=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=69\" title=\"http://www.rockinghamcountyva.gov/showpage.aspx?PageID=69\" target=\"_blank\">Voter Registration and Information</a> </p>',0,'2012-08-20 02:11:13','2012-08-23 18:00:06'),(115,58,'Left Column Body','<p>{{ content_holder_116 }}</p>',1,'2012-08-20 02:11:13','2012-08-23 18:00:06'),(116,59,'Body','<a name=\"foia-requests\"></a>\r\n<h2>Freedom of Information Acts (FOIA) Requests</h2>\r\n<h3>Rights Responsibilities</h3>\r\n<p>The Virginia Freedom of Information Act (FOIA), located at § 2.2-3700 et seq. of the Code of Virginia, guarantees citizens of the Commonwealth and representatives of the media access to public records held by public bodies, public officials, and public employees.</p>\r\n<p>A public record is any writing or recording, regardless of whether it is a paper record, an electronic file, an audio or video recording, or any other format, that is prepared or owned by, or in the possession of a public body or its officers, employees or agents in the transaction of public business. All public records are presumed to be open, and may only be withheld if a specific, statutory exemption applies.</p>\r\n<p>The policy of FOIA states that the purpose of FOIA is to promote an increased awareness by all persons of governmental activities. In furthering this policy, FOIA requires that the law be interpreted liberally, in favor of access, and that any exemption allowing public records to be withheld must be interpreted narrowly.</p>\r\n\r\n<h3>Your FOIA Rights</h3>\r\n<ul><li>You have the right to request to inspect or receive copies of public records, or both.</li>\r\n<li>You have the right to request that any charges for the requested records be estimated in advance.</li>\r\n<li>If you believe that your FOIA rights have been violated, you may file a petition in district or circuit court to compel compliance with FOIA.</li>\r\n</ul>\r\n\r\n<h3>Making a Request for Records from the Town of Dayton</h3>\r\n<ul><li>You may request records by in person, U.S. Mail, fax, e-mail or over the phone. FOIA does not require that your request be in writing, nor do you need to specifically state that you are requesting records under FOIA.</li>\r\n<li>FOIA requests should be made by calling the Dayton Town Office at 540-879-2241 or by email at <a href=\"mailto:[email protected]\" title=\"[email protected]\">[email protected]</a>\r\n</li>\r\n<li>It may be helpful to both you and the person receiving your request to put your request in writing. This allows you to create a record of your request. It also gives us a clear statement of what records you are requesting, so that there is no misunderstanding over a verbal request. However, we cannot refuse to respond to your FOIA request if you elect to not put it in writing.</li>\r\n<li>Requests must identify the records you are seeking with \"reasonable specificity.\" It does not refer to or limit the volume or number of records that you are requesting; instead, it requires that you be specific enough in order to identify and locate the records that you are seeking, and also to determine an estimated cost to you for providing the requested information.</li>\r\n<li>Requests must ask for existing records or documents. FOIA allows you the right to inspect or copy records; however, it does not require the Town of Dayton to create a record that does not exist, nor does it apply to a situation where you are asking general questions about the the Town of Dayton.</li>\r\n<li>You may choose to receive records in printed form or electronically (via email or computer disk) in any existing format used by the Town of Dayton in the regular course of business.</li>\r\n</ul>',0,'2012-08-22 19:41:41','2012-08-22 19:45:38'),(117,59,'Left Column Body','<p> {{ content_holder_116 }}</p>',1,'2012-08-22 19:41:41','2012-08-22 19:45:38'),(118,60,'Body','<h1>Town Meetings</h1>\r\n<p>List your town meetings here</p>',0,'2012-08-23 19:48:37','2012-08-23 20:56:42'),(119,60,'Left Column Body','<p>{{ content_holder_116 }}<br /></p>',1,'2012-08-23 19:48:37','2012-08-23 20:56:42');
/*!40000 ALTER TABLE `page_parts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `page_translations`
--
DROP TABLE IF EXISTS `page_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `page_translations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`page_id` int(11) DEFAULT NULL,
`locale` varchar(255) DEFAULT NULL,
`title` varchar(255) DEFAULT NULL,
`custom_title` varchar(255) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_page_translations_on_page_id` (`page_id`)
) ENGINE=MyISAM AUTO_INCREMENT=93 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `page_translations`
--
LOCK TABLES `page_translations` WRITE;
/*!40000 ALTER TABLE `page_translations` DISABLE KEYS */;
INSERT INTO `page_translations` VALUES (1,1,'en','Home','Town of Dayton - Virginia','2011-05-20 17:07:58','2012-08-19 17:52:18'),(2,2,'en','Page not found','','2011-05-20 17:07:58','2011-10-19 15:37:55'),(72,49,'en','Community','','2012-08-19 18:37:38','2012-08-19 18:37:38'),(71,48,'en','Town Government','','2012-08-19 18:37:17','2012-08-19 18:37:17'),(70,48,'en',NULL,NULL,'2012-08-19 18:37:17','2012-08-19 18:37:17'),(69,47,'en','Town Departments','','2012-08-19 18:36:57','2012-08-19 18:36:57'),(68,47,'en',NULL,NULL,'2012-08-19 18:36:57','2012-08-19 18:36:57'),(67,46,'en','History','','2012-08-19 18:36:31','2012-08-19 18:36:31'),(66,46,'en',NULL,NULL,'2012-08-19 18:36:31','2012-08-19 18:36:31'),(16,16,'en','Categories','','2011-05-23 15:50:18','2011-06-20 19:49:08'),(18,18,'en','News','','2011-05-24 17:39:44','2011-08-25 20:40:48'),(19,19,'en','Donations','','2011-05-24 17:50:31','2011-08-10 20:05:56'),(24,24,'en','Training','','2011-08-22 16:38:31','2011-08-22 16:38:31'),(25,24,'en',NULL,NULL,'2011-08-22 16:38:31','2011-08-22 16:38:31'),(26,25,'en','Programs','','2011-08-25 20:38:53','2011-08-25 20:38:53'),(27,25,'en',NULL,NULL,'2011-08-25 20:38:53','2011-08-25 20:38:53'),(28,26,'en','News','','2011-08-25 20:41:52','2011-08-25 20:41:52'),(29,26,'en',NULL,NULL,'2011-08-25 20:41:52','2011-08-25 20:41:52'),(30,27,'en','Contacts',NULL,'2011-08-26 15:08:02','2011-08-26 15:08:02'),(31,28,'en','Privacy Policy','','2011-11-07 20:24:44','2011-11-07 20:24:44'),(32,28,'en',NULL,NULL,'2011-11-07 20:24:44','2011-11-07 20:24:44'),(33,29,'en','Terms and Conditions','','2011-11-07 20:31:46','2011-11-07 20:31:46'),(34,29,'en',NULL,NULL,'2011-11-07 20:31:46','2011-11-07 20:31:46'),(35,30,'en','Test Form','','2012-01-25 18:40:30','2012-01-25 18:40:30'),(36,30,'en',NULL,NULL,'2012-01-25 18:40:30','2012-01-25 18:40:30'),(37,31,'en','site map','','2012-02-02 20:00:33','2012-02-02 20:00:33'),(38,31,'en',NULL,NULL,'2012-02-02 20:00:33','2012-02-02 20:00:33'),(39,32,'en','Solicitation Disclosure','','2012-02-28 16:28:26','2012-02-28 16:28:26'),(40,32,'en',NULL,NULL,'2012-02-28 16:28:26','2012-02-28 16:28:26'),(41,33,'en','Test Page','','2012-03-09 16:06:39','2012-03-09 16:06:39'),(42,33,'en',NULL,NULL,'2012-03-09 16:06:39','2012-03-09 16:06:39'),(88,57,'en','Events','','2012-08-20 00:58:22','2012-08-20 02:41:26'),(64,45,'en','About','','2012-08-19 18:35:32','2012-08-19 19:05:07'),(65,45,'en',NULL,NULL,'2012-08-19 18:35:32','2012-08-19 18:35:32'),(47,36,'en','Donation Adjustment Confirmed','','2012-04-05 20:32:47','2012-04-05 20:32:47'),(48,36,'en',NULL,NULL,'2012-04-05 20:32:47','2012-04-05 20:32:47'),(49,37,'en','Donation Adjustment Denied','','2012-04-05 20:33:07','2012-04-05 20:33:07'),(50,37,'en',NULL,NULL,'2012-04-05 20:33:07','2012-04-05 20:33:07'),(77,51,'en','Parks','','2012-08-19 18:38:20','2012-08-19 18:38:20'),(73,49,'en',NULL,NULL,'2012-08-19 18:37:38','2012-08-19 18:37:38'),(74,50,'en','Administrative','','2012-08-19 18:38:05','2012-08-19 18:38:05'),(75,50,'en',NULL,NULL,'2012-08-19 18:38:05','2012-08-19 18:38:05'),(76,51,'en',NULL,NULL,'2012-08-19 18:38:20','2012-08-19 18:38:20'),(57,41,'en','Emails',NULL,'2012-07-30 15:36:16','2012-07-30 15:36:17'),(58,42,'en','FAQ','','2012-08-19 18:12:03','2012-08-19 18:12:03'),(59,42,'en',NULL,NULL,'2012-08-19 18:12:03','2012-08-19 18:12:03'),(60,43,'en','Links','','2012-08-19 18:12:21','2012-08-19 18:12:21'),(61,43,'en',NULL,NULL,'2012-08-19 18:12:21','2012-08-19 18:12:21'),(62,44,'en','Downloads','','2012-08-19 18:12:42','2012-08-19 18:12:43'),(63,44,'en',NULL,NULL,'2012-08-19 18:12:42','2012-08-19 18:12:42'),(78,52,'en','Town Police Dept.','','2012-08-19 18:38:35','2012-08-19 18:38:35'),(79,52,'en',NULL,NULL,'2012-08-19 18:38:35','2012-08-19 18:38:35'),(80,53,'en','Public Works','','2012-08-19 18:38:49','2012-08-19 18:38:49'),(81,53,'en',NULL,NULL,'2012-08-19 18:38:49','2012-08-19 18:38:49'),(82,54,'en','Treasurer','','2012-08-19 18:39:05','2012-08-19 18:39:05'),(83,54,'en',NULL,NULL,'2012-08-19 18:39:05','2012-08-19 18:39:05'),(84,55,'en','Zoning Admin.','','2012-08-19 18:39:22','2012-08-19 18:39:22'),(85,55,'en',NULL,NULL,'2012-08-19 18:39:22','2012-08-19 18:39:22'),(86,56,'en','Newsletter','','2012-08-19 18:39:37','2012-08-19 18:39:37'),(87,56,'en',NULL,NULL,'2012-08-19 18:39:37','2012-08-19 18:39:37'),(89,58,'en','Local Directory','','2012-08-20 02:11:13','2012-08-22 19:28:08'),(90,59,'en','FOIA Requests','','2012-08-22 19:41:40','2012-08-22 19:41:40'),(91,59,'en',NULL,NULL,'2012-08-22 19:41:40','2012-08-22 19:41:40'),(92,60,'en','Meetings','','2012-08-23 19:48:36','2012-08-23 20:39:23');
/*!40000 ALTER TABLE `page_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `pages`
--
DROP TABLE IF EXISTS `pages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pages` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`parent_id` int(11) DEFAULT NULL,
`position` int(11) DEFAULT NULL,
`path` varchar(255) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`show_in_menu` tinyint(1) DEFAULT '1',
`link_url` varchar(255) DEFAULT NULL,
`menu_match` varchar(255) DEFAULT NULL,
`deletable` tinyint(1) DEFAULT '1',
`custom_title_type` varchar(255) DEFAULT 'none',
`draft` tinyint(1) DEFAULT '0',
`skip_to_first_child` tinyint(1) DEFAULT '0',
`lft` int(11) DEFAULT NULL,
`rgt` int(11) DEFAULT NULL,
`depth` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_pages_on_depth` (`depth`),
KEY `index_pages_on_id` (`id`),
KEY `index_pages_on_lft` (`lft`),
KEY `index_pages_on_parent_id` (`parent_id`),
KEY `index_pages_on_rgt` (`rgt`)
) ENGINE=MyISAM AUTO_INCREMENT=61 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `pages`
--
LOCK TABLES `pages` WRITE;
/*!40000 ALTER TABLE `pages` DISABLE KEYS */;
INSERT INTO `pages` VALUES (1,NULL,0,NULL,'2011-05-20 17:07:58','2012-08-19 17:52:18',1,'/','^/$',0,'text',0,0,1,10,0),(2,1,0,NULL,'2011-05-20 17:07:58','2011-11-28 19:37:51',0,NULL,'^/404$',0,'none',0,0,8,9,1),(46,45,40,NULL,'2012-08-19 18:36:31','2012-08-22 17:37:41',1,NULL,NULL,1,'none',0,0,12,13,1),(47,45,41,NULL,'2012-08-19 18:36:57','2012-08-21 19:35:22',1,NULL,NULL,1,'none',0,1,14,29,1),(48,45,42,NULL,'2012-08-19 18:37:17','2012-08-22 18:24:49',1,NULL,NULL,1,'none',0,0,30,31,1),(52,47,46,NULL,'2012-08-19 18:38:35','2012-08-23 21:39:07',1,NULL,NULL,1,'none',0,0,19,20,2),(51,47,45,NULL,'2012-08-19 18:38:20','2012-08-27 14:08:36',1,NULL,NULL,1,'none',0,0,17,18,2),(50,47,44,NULL,'2012-08-19 18:38:05','2012-08-21 19:38:30',1,NULL,NULL,1,'none',0,0,15,16,2),(49,45,43,NULL,'2012-08-19 18:37:38','2012-08-22 20:37:19',1,NULL,NULL,1,'none',0,0,32,41,1),(16,NULL,11,NULL,'2011-05-23 15:50:18','2011-06-20 19:49:08',1,'/categories','^/categories(\\/|\\/.+?|)$',0,'none',0,0,43,44,0),(24,NULL,18,NULL,'2011-08-22 16:38:31','2012-04-18 14:17:32',1,'',NULL,1,'none',0,0,45,46,0),(25,NULL,19,NULL,'2011-08-25 20:38:53','2011-08-26 14:33:36',1,'/programs',NULL,0,'none',0,0,47,48,0),(26,49,20,NULL,'2011-08-25 20:41:52','2012-08-20 02:53:55',1,'/news',NULL,0,'none',0,0,33,34,2),(27,NULL,21,NULL,'2011-08-26 15:08:02','2011-08-26 15:08:02',1,'/contacts','^/contacts(\\/|\\/.+?|)$',0,'none',0,0,49,50,NULL),(28,NULL,22,NULL,'2011-11-07 20:24:44','2012-02-28 16:34:22',1,NULL,NULL,1,'none',0,0,51,52,NULL),(29,NULL,23,NULL,'2011-11-07 20:31:46','2012-02-28 16:34:06',1,NULL,NULL,1,'none',0,0,53,54,NULL),(30,NULL,24,NULL,'2012-01-25 18:40:30','2012-04-24 15:52:40',1,NULL,NULL,1,'none',0,0,55,56,NULL),(31,NULL,25,NULL,'2012-02-02 20:00:33','2012-04-25 15:42:02',1,NULL,NULL,1,'none',0,0,57,58,NULL),(32,NULL,26,NULL,'2012-02-28 16:28:26','2012-02-28 20:35:52',1,NULL,NULL,1,'none',0,0,59,60,NULL),(33,NULL,27,NULL,'2012-03-09 16:06:39','2012-06-22 17:55:20',1,NULL,NULL,1,'none',0,0,61,62,NULL),(45,NULL,39,NULL,'2012-08-19 18:35:32','2012-08-19 19:26:18',1,NULL,NULL,1,'none',0,1,11,42,0),(53,47,47,NULL,'2012-08-19 18:38:49','2012-08-23 13:44:44',1,NULL,NULL,1,'none',0,0,21,22,2),(36,NULL,30,NULL,'2012-04-05 20:32:47','2012-04-11 15:22:06',1,NULL,NULL,1,'none',0,0,63,64,NULL),(37,NULL,31,NULL,'2012-04-05 20:33:07','2012-04-11 15:25:21',1,NULL,NULL,1,'none',0,0,65,66,NULL),(54,47,48,NULL,'2012-08-19 18:39:05','2012-08-22 20:25:08',1,NULL,NULL,1,'none',0,0,23,24,2),(55,47,49,NULL,'2012-08-19 18:39:22','2012-08-22 14:30:41',1,NULL,NULL,1,'none',0,0,25,26,2),(41,NULL,35,NULL,'2012-07-30 15:36:16','2012-07-30 15:36:16',1,'/emails','^/emails(\\/|\\/.+?|)$',0,'none',0,0,69,70,NULL),(42,1,36,NULL,'2012-08-19 18:12:03','2012-08-23 14:35:26',1,NULL,NULL,1,'none',0,0,2,3,1),(43,1,37,NULL,'2012-08-19 18:12:21','2012-08-23 17:58:36',1,NULL,NULL,1,'none',0,0,4,5,1),(44,1,38,NULL,'2012-08-19 18:12:42','2012-08-22 19:10:37',1,NULL,NULL,1,'none',0,0,6,7,1),(56,47,50,NULL,'2012-08-19 18:39:37','2012-08-22 20:42:45',1,NULL,NULL,1,'none',0,0,27,28,2),(57,49,40,NULL,'2012-08-20 00:58:22','2012-08-20 02:54:06',1,'/events','^/events(\\/|\\/.+?|)$',0,'none',0,0,35,36,2),(58,49,40,NULL,'2012-08-20 02:11:13','2012-08-23 18:00:06',1,'/businesses','^/businesses(\\/|\\/.+?|)$',0,'none',0,0,39,40,2),(59,49,51,NULL,'2012-08-22 19:41:40','2012-08-22 19:45:38',1,NULL,NULL,1,'none',0,0,37,38,2),(60,NULL,40,NULL,'2012-08-23 19:48:36','2012-08-23 21:23:50',1,'/meetings','^/meetings(\\/|\\/.+?|)$',0,'none',0,0,67,68,0);
/*!40000 ALTER TABLE `pages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `pages_roles`
--
DROP TABLE IF EXISTS `pages_roles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pages_roles` (
`page_id` int(11) DEFAULT NULL,
`role_id` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `pages_roles`
--
LOCK TABLES `pages_roles` WRITE;
/*!40000 ALTER TABLE `pages_roles` DISABLE KEYS */;
/*!40000 ALTER TABLE `pages_roles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `payment_profiles`
--
DROP TABLE IF EXISTS `payment_profiles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payment_profiles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) DEFAULT NULL,
`payment_cim_id` varchar(255) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`payment_type` varchar(255) DEFAULT NULL,
`credit_card_number` varchar(255) DEFAULT NULL,
`bank_routing_number` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=249 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `payment_profiles`
--
LOCK TABLES `payment_profiles` WRITE;
/*!40000 ALTER TABLE `payment_profiles` DISABLE KEYS */;
INSERT INTO `payment_profiles` VALUES (232,335,'36746971','2012-06-29 10:50:05','2012-06-29 10:50:05','Credit Card','XXXX1524',NULL),(173,187,'29545126','2012-03-01 15:27:50','2012-03-01 15:27:50','Bank Account',NULL,'XXXX9419'),(124,58,'25520178','2011-12-20 05:07:38','2011-12-20 05:07:38','Bank Account',NULL,'XXXX1853'),(103,6,'4654481','2011-10-17 16:59:11','2011-10-17 16:59:11','Credit Card','XXXX0027',NULL),(117,7,'24585500','2011-12-05 19:10:14','2011-12-05 19:10:14','Credit Card','XXXX9499',NULL),(105,8,'4673648','2011-10-19 17:06:31','2011-10-19 17:06:31','Credit Card','XXXX4293',NULL),(109,15,'23645418','2011-11-21 18:12:49','2011-11-21 18:12:49','Credit Card','XXXX2746',NULL),(191,240,'32820221','2012-04-23 22:57:16','2012-04-23 22:57:16','Credit Card','XXXX3179',NULL),(112,17,'23658218','2011-11-21 20:34:27','2011-11-21 20:34:27','Credit Card','XXXX1679',NULL),(114,24,'23856732','2011-11-25 05:14:05','2011-11-25 05:14:05','Credit Card','XXXX7401',NULL),(115,26,'23960158','2011-11-26 21:43:59','2011-11-26 21:43:59','Credit Card','XXXX4021',NULL),(116,29,'24316549','2011-12-01 14:08:21','2011-12-01 14:08:21','Credit Card','XXXX2242',NULL),(118,35,'24595706','2011-12-05 21:05:49','2011-12-05 21:05:49','Credit Card','XXXX2001',NULL),(119,37,'24683318','2011-12-07 02:54:58','2011-12-07 02:54:58','Credit Card','XXXX2511',NULL),(120,40,'24854219','2011-12-09 15:49:58','2011-12-09 15:49:58','Bank Account',NULL,'XXXX0891'),(125,58,'25520250','2011-12-20 05:09:09','2011-12-20 05:09:09','Credit Card','XXXX1007',NULL),(126,63,'25573051','2011-12-21 03:14:58','2011-12-21 03:14:58','Credit Card','XXXX3188',NULL),(127,66,'25580499','2011-12-21 11:10:21','2011-12-21 11:10:21','Credit Card','XXXX6695',NULL),(128,70,'25709058','2011-12-23 23:01:43','2011-12-23 23:01:43','Credit Card','XXXX9211',NULL),(129,71,'25712165','2011-12-24 00:46:17','2011-12-24 00:46:17','Credit Card','XXXX8271',NULL),(130,75,'25766966','2011-12-26 13:58:17','2011-12-26 13:58:17','Credit Card','XXXX1294',NULL),(131,76,'25768927','2011-12-26 15:17:56','2011-12-26 15:17:56','Bank Account',NULL,'XXXX6675'),(132,77,'25789437','2011-12-26 23:00:33','2011-12-26 23:00:33','Credit Card','XXXX1829',NULL),(133,78,'25802982','2011-12-27 06:36:08','2011-12-27 06:36:08','Bank Account',NULL,'XXXX7446'),(203,258,'33541481','2012-05-05 19:20:35','2012-05-05 19:20:35','Credit Card','XXXX7480',NULL),(135,85,'25956680','2011-12-30 02:35:29','2011-12-30 02:35:29','Credit Card','XXXX2241',NULL),(136,94,'26067343','2011-12-31 17:48:28','2011-12-31 17:48:28','Credit Card','XXXX6072',NULL),(137,96,'26072409','2011-12-31 19:23:59','2011-12-31 19:23:59','Credit Card','XXXX6539',NULL),(138,97,'26075796','2011-12-31 20:30:05','2011-12-31 20:30:05','Credit Card','XXXX8602',NULL),(141,99,'26085210','2011-12-31 23:55:08','2011-12-31 23:55:08','Credit Card','XXXX2841',NULL),(142,101,'26091367','2012-01-01 02:33:12','2012-01-01 02:33:12','Credit Card','XXXX3479',NULL),(145,108,'26351261','2012-01-06 08:28:37','2012-01-06 08:28:37','Credit Card','XXXX5487',NULL),(147,111,'26469916','2012-01-09 00:44:40','2012-01-09 00:44:40','Credit Card','XXXX0984',NULL),(148,114,'26638329','2012-01-11 20:17:22','2012-01-11 20:17:22','Credit Card','XXXX6899',NULL),(149,115,'26659892','2012-01-12 01:51:25','2012-01-12 01:51:25','Credit Card','XXXX5801',NULL),(150,127,'26979558','2012-01-17 23:02:01','2012-01-17 23:02:01','Credit Card','XXXX5802',NULL),(151,128,'26999845','2012-01-18 13:16:27','2012-01-18 13:16:27','Credit Card','XXXX0104',NULL),(152,129,'27038110','2012-01-18 23:50:04','2012-01-18 23:50:04','Credit Card','XXXX8137',NULL),(153,130,'27067134','2012-01-19 16:48:31','2012-01-19 16:48:31','Credit Card','XXXX8454',NULL),(154,131,'27107910','2012-01-20 04:59:04','2012-01-20 04:59:04','Credit Card','XXXX6150',NULL),(155,132,'27116556','2012-01-20 14:40:32','2012-01-20 14:40:32','Credit Card','XXXX8881',NULL),(156,133,'27184602','2012-01-21 21:31:27','2012-01-21 21:31:27','Credit Card','XXXX9671',NULL),(157,135,'27280179','2012-01-23 22:04:57','2012-01-23 22:04:57','Credit Card','XXXX0191',NULL),(158,138,'27346663','2012-01-25 01:27:53','2012-01-25 01:27:53','Credit Card','XXXX9545',NULL),(227,143,'35955420','2012-06-15 16:09:20','2012-06-15 16:09:20','Credit Card','XXXX5829',NULL),(160,141,'27504550','2012-01-27 18:22:38','2012-01-27 18:22:38','Credit Card','XXXX5062',NULL),(161,145,'27598505','2012-01-30 00:55:41','2012-01-30 00:55:41','Credit Card','XXXX1823',NULL),(162,158,'28013184','2012-02-06 04:43:13','2012-02-06 04:43:13','Credit Card','XXXX4067',NULL),(163,159,'28046216','2012-02-06 20:14:02','2012-02-06 20:14:02','Credit Card','XXXX2862',NULL),(164,161,'28068625','2012-02-07 02:43:44','2012-02-07 02:43:44','Credit Card','XXXX8998',NULL),(241,348,'37217980','2012-07-06 15:14:42','2012-07-06 15:14:42','Credit Card','XXXX7192',NULL),(167,167,'28376828','2012-02-11 20:08:52','2012-02-11 20:08:52','Bank Account',NULL,'XXXX6813'),(168,176,'28677183','2012-02-16 16:40:15','2012-02-16 16:40:15','Credit Card','XXXX6545',NULL),(169,177,'28781084','2012-02-18 02:51:56','2012-02-18 02:51:56','Credit Card','XXXX6360',NULL),(170,48,'28888682','2012-02-20 19:39:50','2012-02-20 19:39:50','Credit Card','XXXX0803',NULL),(171,179,'28934208','2012-02-21 16:39:00','2012-02-21 16:39:00','Bank Account',NULL,'XXXX7957'),(175,184,'30091173','2012-03-11 02:04:09','2012-03-11 02:04:09','Credit Card','XXXX8679',NULL),(174,188,'29563650','2012-03-01 19:29:32','2012-03-01 19:29:32','Credit Card','XXXX3431',NULL),(176,198,'30094991','2012-03-11 04:16:47','2012-03-11 04:16:47','Credit Card','XXXX6431',NULL),(177,199,'30106788','2012-03-11 16:57:42','2012-03-11 16:57:42','Credit Card','XXXX0355',NULL),(178,200,'30107188','2012-03-11 17:08:55','2012-03-11 17:08:55','Credit Card','XXXX4773',NULL),(179,201,'30162238','2012-03-12 18:45:09','2012-03-12 18:45:09','Credit Card','XXXX2729',NULL),(180,24,'30381689','2012-03-15 23:06:53','2012-03-15 23:06:53','Credit Card','XXXX9873',NULL),(181,207,'30457493','2012-03-17 14:50:50','2012-03-17 14:50:50','Credit Card','XXXX1191',NULL),(182,210,'30654387','2012-03-21 02:26:41','2012-03-21 02:26:41','Credit Card','XXXX8752',NULL),(183,211,'30655481','2012-03-21 02:43:08','2012-03-21 02:43:08','Credit Card','XXXX1719',NULL),(184,214,'30876584','2012-03-24 17:41:37','2012-03-24 17:41:37','Bank Account',NULL,'XXXX2906'),(185,225,'31340517','2012-03-31 02:04:43','2012-03-31 02:04:43','Credit Card','XXXX3540',NULL),(186,227,'31628679','2012-04-05 14:08:00','2012-04-05 14:08:00','Credit Card','XXXX7123',NULL),(190,237,'32529488','2012-04-18 17:37:56','2012-04-18 17:37:56','Credit Card','XXXX0882',NULL),(188,231,'31824946','2012-04-09 15:02:52','2012-04-09 15:02:52','Credit Card','XXXX6156',NULL),(189,16,'32401091','2012-04-17 10:46:41','2012-04-17 10:46:41','Credit Card','XXXX4176',NULL),(193,242,'32938000','2012-04-25 21:47:07','2012-04-25 21:47:07','Bank Account',NULL,'XXXX8847'),(194,243,'32962588','2012-04-26 12:50:33','2012-04-26 12:50:33','Credit Card','XXXX7468',NULL),(195,245,'33019669','2012-04-27 05:08:56','2012-04-27 05:08:56','Bank Account',NULL,'XXXX6674'),(196,246,'33024021','2012-04-27 11:16:04','2012-04-27 11:16:04','Credit Card','XXXX5025',NULL),(197,250,'33203034','2012-04-30 15:09:59','2012-04-30 15:09:59','Credit Card','XXXX2392',NULL),(198,253,'33265324','2012-05-01 12:53:54','2012-05-01 12:53:54','Credit Card','XXXX1031',NULL),(202,79,'33433216','2012-05-03 21:25:43','2012-05-03 21:25:43','Credit Card','XXXX8147',NULL),(204,3,'33614980','2012-05-07 13:05:24','2012-05-07 13:05:24','Credit Card','XXXX0152',NULL),(205,206,'33615326','2012-05-07 13:11:34','2012-05-07 13:11:34','Credit Card','XXXX7805',NULL),(206,262,'33671116','2012-05-08 02:54:37','2012-05-08 02:54:37','Bank Account',NULL,'XXXX8695'),(207,263,'33715806','2012-05-08 20:29:50','2012-05-08 20:29:50','Credit Card','XXXX2149',NULL),(208,264,'33725274','2012-05-08 22:58:50','2012-05-08 22:58:50','Credit Card','XXXX2127',NULL),(210,268,'33972152','2012-05-12 04:26:24','2012-05-12 04:26:24','Credit Card','XXXX9352',NULL),(211,269,'34028346','2012-05-13 20:27:15','2012-05-13 20:27:15','Bank Account',NULL,'XXXX3877'),(212,270,'34135615','2012-05-14 23:26:34','2012-05-14 23:26:34','Credit Card','XXXX8559',NULL),(228,271,'35978265','2012-06-15 21:13:16','2012-06-15 21:13:16','Credit Card','XXXX6389',NULL),(214,277,'34466710','2012-05-20 16:44:18','2012-05-20 16:44:18','Credit Card','XXXX9636',NULL),(216,281,'34583226','2012-05-22 18:35:20','2012-05-22 18:35:20','Bank Account',NULL,'XXXX0315'),(217,285,'34680576','2012-05-24 03:28:01','2012-05-24 03:28:01','Bank Account',NULL,'XXXX1463'),(218,289,'34833302','2012-05-27 03:48:13','2012-05-27 03:48:13','Credit Card','XXXX9112',NULL),(219,291,'34848038','2012-05-27 18:42:30','2012-05-27 18:42:30','Credit Card','XXXX8708',NULL),(220,296,'34985257','2012-05-30 14:54:22','2012-05-30 14:54:22','Bank Account',NULL,'XXXX3508'),(221,298,'35069751','2012-05-31 18:13:12','2012-05-31 18:13:12','Bank Account',NULL,'XXXX2455'),(222,303,'35393204','2012-06-06 02:38:13','2012-06-06 02:38:13','Credit Card','XXXX0089',NULL),(224,308,'35529084','2012-06-08 03:49:32','2012-06-08 03:49:32','Credit Card','XXXX8162',NULL),(225,315,'35805192','2012-06-13 05:53:23','2012-06-13 05:53:23','Credit Card','XXXX4112',NULL),(226,316,'35807576','2012-06-13 10:15:41','2012-06-13 10:15:41','Credit Card','XXXX1578',NULL),(229,324,'36247395','2012-06-20 20:33:38','2012-06-20 20:33:38','Credit Card','XXXX1016',NULL),(230,327,'36318371','2012-06-21 19:18:22','2012-06-21 19:18:22','Credit Card','XXXX1095',NULL),(233,336,'36780276','2012-06-29 19:30:08','2012-06-29 19:30:08','Credit Card','XXXX8638',NULL),(234,337,'36785319','2012-06-29 20:33:54','2012-06-29 20:33:54','Credit Card','XXXX6489',NULL),(235,339,'36838622','2012-06-30 21:30:16','2012-06-30 21:30:16','Bank Account',NULL,'XXXX1702'),(237,341,'36851173','2012-07-01 03:57:59','2012-07-01 03:57:59','Bank Account',NULL,'XXXX3084'),(238,343,'36958005','2012-07-02 23:02:24','2012-07-02 23:02:24','Credit Card','XXXX8217',NULL),(239,346,'37114669','2012-07-04 15:42:28','2012-07-04 15:42:28','Credit Card','XXXX3506',NULL),(240,164,'37123556','2012-07-04 19:04:19','2012-07-04 19:04:19','Credit Card','XXXX6598',NULL),(242,349,'37233919','2012-07-06 18:20:14','2012-07-06 18:20:14','Credit Card','XXXX2137',NULL),(243,351,'37294554','2012-07-07 21:35:18','2012-07-07 21:35:18','Credit Card','XXXX0146',NULL),(244,352,'37645052','2012-07-12 23:26:04','2012-07-12 23:26:04','Bank Account',NULL,'XXXX2945'),(246,364,'38541506','2012-07-27 18:56:52','2012-07-27 18:56:52','Credit Card','XXXX8861',NULL),(247,370,'38576086','2012-07-28 13:19:43','2012-07-28 13:19:43','Bank Account',NULL,'XXXX0528'),(248,371,'38596678','2012-07-28 21:26:55','2012-07-28 21:26:55','Credit Card','XXXX0010',NULL);
/*!40000 ALTER TABLE `payment_profiles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `programs`
--
DROP TABLE IF EXISTS `programs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `programs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`program_name` varchar(255) DEFAULT NULL,
`program_short_description` text,
`program_description` text,
`program_image_id` int(11) DEFAULT NULL,
`position` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`monthly_suggested_amounts` text,
`subtitle` varchar(255) DEFAULT NULL,
`monthly_enabled` tinyint(1) DEFAULT '1',
`one_time_enabled` tinyint(1) DEFAULT '1',
`one_time_suggested_amounts` text,
`default_donation_type` varchar(255) DEFAULT 'monthly',
`image_caption` text,
`abbreviation` varchar(255) DEFAULT NULL,
`disabled` tinyint(1) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `index_donations_on_id` (`id`),
KEY `index_programs_on_id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=46 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `programs`
--
LOCK TABLES `programs` WRITE;
/*!40000 ALTER TABLE `programs` DISABLE KEYS */;
INSERT INTO `programs` VALUES (1,'Sponsor-an-Orphan','<p>This program provides food, clothing, medicines, and Christian literature (and covers some schooling costs) for orphaned, destitute, or abandoned children mostly in Liberia and Kenya, but also to some in India and Haiti. A $45 donation helps support one orphan for one month. </p>','<p>In Liberia, the program supports approximately 1,900 children at 42 orphanages and 745 children in 15 churches. The program also supports 1,500 orphans in Kenya, Africa, who live in homes with relatives or AMA (Amish Mennonite Aid) national church families. The support helps relieve the caretakers who already struggle to provide for their own families. Some funds go to a small orphanage in Haiti and two orphanages in India.</p>\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Dorcas Suku\" title=\"Dorcas Suku\" src=\"/system/images/BAhbB1sHOgZmSSI+MjAxMS8wOC8yMi8xMV8wNF8zOF8yNDVfSGVscF9mb3JfT3JwaGFuc19odG1fbTZkNDBjOTEuanBnBjoGRVRbCDoGcDoKdGh1bWJJIg0yMjV4MjU1PgY7BlQ/Help_for_Orphans_htm_m6d40c91.jpg\" height=\"255\" width=\"200\" /></p>\r\n<p>This is Dorcas Suku. Her mentally ill mother tried to kill her by throwing her into the ocean when she was one month old. A Liberian soldier rescued her from death, and took her to a CAM-sponsored orphanage. </p>\r\n<p>At the CAM orphanage Dorcus will receive care and schooling till she\'s 19 years old. Every year, while she\'s at the orphanage, she will attend a seminar at the CAM base to teach her spiritual truths from God\'s Word to help guide her through life. When she leaves the orphanage she will be given the necessary tools for survival on her own.</p>\r\n<p>In an orphanage there are lots of activities that keep the orphans busy. They work on the farm, harvesting, pounding and sifting the rice - which is then sold for seed. Others feed the chickens, and gather, clean and package the eggs. There is lots of work to do. </p>\r\n<p><img src=\"/system/images/BAhbB1sHOgZmSSI9MjAxMS8wOC8yMi8xMV8wNl8yNF84MTlfSGVscF9mb3JfT3JwaGFuc19odG1fYjg2YTkwYi5qcGcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/Help_for_Orphans_htm_b86a90b.jpg\" title=\"Help For Orphans Htm B86a90b\" alt=\"Help For Orphans Htm B86a90b\" rel=\"225x255\" height=\"169\" width=\"225\" /></p>\r\n<p>Thank you letter from an orphanage in Liberia:</p>\r\n<p><em>\"We at the RJPCH Orphanage highly appreciate the enormous help you give us. Were it not for the aid you began giving us, we would have closed down. I praise God He sent CAM to our rescue in time. Our children now have more than enough food, clothing, medicine, and a very happy, healthy life. Thank you to all who make the work of CAM possible in Liberia.\"</em> </p>\r\n<p><strong>Would you like to help support orphaned, abandoned, or destitute children in Liberia, Kenya, or other needy countries?</strong>\r\n</p>',48,31,'2011-05-24 18:09:52','2012-02-16 18:20:25','45,90,225,450','',1,1,'25,50,100,250,500,1000','one-time','','SAOA',0),(2,'International-Feed-A-Family','<p>A $39 donation provides a 35-pound or larger parcel containing food, healthcare items, and some Christian literature for families and individuals in desperate need. In 2010 CAM provided 12,480 <strong>International-Feed-A-Family</strong> (IFAF) parcels for recipients in Haiti, Liberia, and Israel.</p>','<p>Yamah, a poor widow from Liberia has no source of income, and no source of food. Yamah hardly knew what to do; she had four hungry children and didn\'t have any food. Through miraculous circumstances she received an <strong>International-Feed-A-Family</strong> food parcel. Yamah said, \"please tell the sponsors thank you\".</p>\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<p><img class=\"add-caption\" rel=\"225x255\" alt=\"Yamah with her young children\" title=\"Yamah With Her Young Children\" src=\"/system/images/BAhbB1sHOgZmSSIvMjAxMS8xMC8yNC8yMV8zMF8yMV85NjdfSUZBRl9wcm9ncmFtXzIuanBnBjoGRVRbCDoGcDoKdGh1bWJJIg0yMjV4MjU1PgY7BlQ/IFAF_program_2.jpg\" height=\"237\" width=\"225\" /></p>\r\n\r\n<p>Thanks to your generosity, this young African widow and her children will not go hungry.</p>\r\n<p><strong>Would you like to help others like Yamah receive a food parcel?</strong> <br /> </p>',4,17,'2011-05-24 18:19:58','2012-05-17 19:39:09','39,78,195','',1,1,'39,70,175,350,700,1400','one-time','','IFAF',0),(3,'Christian Family Magazines','<p>This program translates, prints, and distributes <em>The Seed of Truth</em> and <em>Antorcha de la Verdad</em> (Torch of Truth) Christian family magazines.</p>','<h2>The Seed of Truth: </h2>\r\n<ul><li>A total of 126,550 monthly copies of <em>The Seed of Truth</em> magazine are printed in the Romanian, Russian, and English languages. </li>\r\n<li>In 2010, CAM also printed a total of 30,000 Polish copies. </li>\r\n<li>This Christian family magazine consists largely of translated articles and stories from Christian Light Publications, Rod & Staff, Pathway Publishers, and others. The magazines are distributed in Romania, Moldova, Ukraine, Siberia, Liberia, Poland, and other countries.</li>\r\n</ul>\r\n<h2>Antorcha de la Verdad (Torch of Truth): </h2>\r\n<div><p>Publicadora La Merced (PLM), a conservative Mennonite publishing house in Costa Rica, prints and distributes Spanish Christian literature, with their main project being the magazine, <em>Antorcha de la Verdad</em> (Torch of Truth). Most of their funding to print this magazine comes from CAM\'s Christian Family Magazines program. </p>\r\n<ul><li>PLM now prints more than 219,000 bi-monthly copies of the <em>Antorcha</em> and distributes them to 45 countries.</li>\r\n<li>PLM also prints 22,500 Creole bi-monthly copies for CAM to distribute in Haiti.</li>\r\n</ul>\r\n<h3>Sorin\'s story:</h3>\r\n<p>Young, intelligent Sorin was attending seminary to become an Orthodox priest. But through a series of wrong choices, this Romanian man became a mock health inspector. With official-looking documents, he frequented churches and stores, giving fines, collecting money, or writing up warnings. Six months later, the law caught up with him. Sorin was imprisoned and waited nearly a year and a half before being sentenced. The prison sentence he received overwhelmed him. He hit an emotional bottom. </p>\r\n<p>One day while Sorin lay on his prison cot, he noticed a magazine lying on the windowsill. It was a three year-old copy of <em>The Seed of Truth</em>. He opened the magazine and found an application for CAM\'s correspondence courses. Out of curiosity, Sorin decided to send in his application and enroll in the courses. As he studied, God touched his heart, and Sorin found Jesus as his Savior. </p>\r\n<p>Sorin longed to use the Bible correspondence courses to witness to the other inmates. He received permission from the director of psychology and coordinated weekly studies with the inmates. Each week they discussed a different subject. For half an hour a day, the inmates could ask questions pertaining to that week\'s subject. Sorin had requested a Bible and <em>Doctrines of the Bible</em> from CAM and was able to use these materials to find the answers they needed. </p>\r\n<p>In the summer of 2010, Sorin was summoned to appear in court to review his case. While reading through the book of Esther, he read that Esther had prayed and fasted for three days. Although he had never heard what it meant to pray and fast, he decided to spend three days in fasting and prayer to God. He prayed, <em>\"God, if you take just one month off my sentence, I\'ll know it was you who worked.\" </em>\r\n</p>\r\n<p>Upon entering the courtroom, Sorin observed that the head judge was the very one who had condemned him. Sorin felt all hope was gone. But, when asked if he had anything to say, he told the judge, <em>\"This is in your hands and in the hands of God. I was wrong, and I deserve my punishment.\"</em> He went back to prison.</p>\r\n<p>Two weeks later, Sorin received a notice. With a heavy heart, he opened the envelope. He was shocked. His prison sentence had been reduced by 60 percent! He said, <em>\"Who else could have done it but God?\"</em>\r\n</p>\r\n<p><strong>Would you like to help print the <em>The Seed of Truth</em> and <em>Antorcha de la Verdad</em> (Torch of Truth) Christian family magazines?</strong>\r\n</p>\r\n</div>',56,3,'2011-05-24 18:24:31','2012-05-15 20:24:49','50,100,250 ','\"The Seed of Truth\" and \"Antorcha de la Verdad\"',1,1,'25,50,100,250,500,1000','one-time','','CFM',0),(5,'Bibles-for-the-World','<p>CAM\'s main goal is to provide the Word of God to as many people as possible. The <strong>Bibles-for-the-World</strong> (BFW) program translates, prints, and distributes Bibles, Bible story books, inspirational/teaching books, Christian family magazines, and Bible correspondence courses. The literature is distributed throughout China, Eastern Europe, Central America, Liberia, Haiti, the Middle East, and other parts of the world. A $50 donation provides at least forty books, ten Christian family magazines, and ten Bible correspondence lessons. </p>','<h3>Bible story books needed around the world.</h3>\r\n\r\n<p>Our contact in Myanmar wrote, \"We have distributed Bible story books in children\'s homes, education centers, and to various churches in Myanmar... The people are very happy to receive the books, because they need children and adult Sunday school materials in their churches. They want to receive more, but we don\'t have enough copies . . . The field is ripe for harvest in Myanmar and we are ready to do the work and witness for Christ.\"</p>\r\n<p>CAM has translated, printed, and distributed <em>25 Favorite Stories from the Bible</em> in approximately forty languages. This is possible through supporters\' generous gifts to the <strong>BFW</strong> program. Besides teaching children about God and the Bible, <em>25 Favorite Stories from the Bible</em> also creates an interest in adults to read God\'s Word. For those not literate enough to read the Bible, the book\'s basic language and beautiful pictures help them comprehend the Biblical message.</p>\r\n<p style=\"font-weight: bold;\">Would you like to help provide Bible story books, Bibles, and other Christian literature to people around the world?</p>',22,2,'2011-08-11 14:20:50','2011-10-25 18:46:32','20,40,60,80,100','Bringing God's word to the masses',1,1,'10,30,50,70,90','one-time','Children in Myanmar (formerly Burma) intent on their 25 Favorite Stories from the Bible','BFW',0),(6,'Billboard Evangelism','<p>CAM\'s <strong>Billboard Evangelism</strong> (BBE) program helps point America to Christ by posting clear Gospel messages along interstates and major highways. It is estimated more than three million people drive past these messages each day.</p>','<p>Many people across America are confused about God and life; they don\'t know what to believe or where to find help. Churches throughout our nation are rejecting the absolute authority of the Bible, and some Bible colleges teach students they can believe in evolution AND God. No wonder so many are confused. Where can these people turn for sound Biblical answers? </p>\r\n<p>CAM\'s <strong>Billboard Evangelism</strong> (BBE) program helps point America to Christ by posting clear Gospel messages along interstates and major highways. Messages include: In the beginning, God created; After you die, you will meet God; Where are you going? Heaven or Hell?; The Holy Bible. Inspired. Absolute. Final.; and others. Each billboard includes a toll-free number, which people can call 24 hours a day to speak with one of our tele-counselors (pastors/teachers who answer the calls). The tele-counselors receive an average of 37 calls daily. Thanks to your support, as of May 2011, <strong>Billboard Evangelism</strong> has a total of 105 Gospel messages in all 50 states.</p>\r\n<p><a target=\"_blank\" title=\"http://gospelbillboards.com/\" href=\"http://gospelbillboards.com/\">Learn more about the <strong>Billboard Evangelism</strong> program.</a>\r\n</p>\r\n<br />\r\n<iframe style=\"width:100%;border:none\" src=\"https://christianaidministries.org/machform/embed.php?id=7\" title=\"Free Billboard Evangelism quarterly update\" frameborder=\"0\" height=\"1800\" scrolling=\"no\">&amp;amp;amp;amp;amp;lt;a href=\"https://christianaidministries.org/machform/view.php?id=7\" title=\"Free Billboard Evangelism quarterly update\"&amp;amp;amp;amp;amp;gt;Free Billboard Evangelism quarterly update&amp;amp;amp;amp;amp;lt;/a&amp;amp;amp;amp;amp;gt;</iframe>',177,1,'2011-08-11 14:44:04','2012-05-09 18:02:25','50,100,700,1200,1500,2500','A Clear Gospel Message to America',1,1,'25,50,75,100,500,1000','one-time','','BBE',0),(7,'Christian Martyrs Fund','<p>The <strong>Christian Martyrs Fund </strong>(CMF) sponsors approximately 629 pastors and Christian workers (and/or their families) who were crippled or disabled by their persecution experiences. This program provides funds for recipients to buy food, clothing, and other necessities.</p>','<p>Over the years, pastors and other Christian workers in China, the former Soviet Union, and the Middle East have faced tremendous persecution and strain. Some were martyred and others beaten to the point of physical and mental disabilities. Still others suffer poor health from the strain of secret Bible printing and other \"underground\" work. Today these Christians find it extremely difficult to make a living.</p>\r\n<p>A letter from Grigorij and Sinaida Kostenko, <strong>Christian-Martyrs-Fund</strong> recipients in the Soviet Union:</p>\r\n<p><em>Dear Friends,</em>\r\n</p>\r\n<p><em>From our hearts, we greet you in the name of Jesus Christ! </em>\r\n</p>\r\n<p><em>I was pleasantly surprised that you thought of me and this gift of love has been given to me. I am not worthy of such attention, but our communion through the blood of Jesus Christ which is more than physical has made you remember such a brother. Praise God, who has given us such love for each other. How can we repay? The Lord requires of us an honest service and a clean heart. May the Lord bless your efforts and reward you!</em>\r\n</p>\r\n<p><em>In 2001 my wife died. For three years, I lived by myself. Then the Lord gave me a wife, Sinaida Tarasova (now she is Kostenko). She was in prison twice for the sake of Christ, because she worked with printing Christian literature.<br />Please take from us these words of thanks for your care and attention to our needs. \"The Lord bless thee and keep thee: The Lord make his face shine upon thee, and be gracious unto thee: The Lord lift up his countenance upon thee, and give thee peace.\" Numbers 6: 24-26.</em>\r\n</p>\r\n<p>~Grigorij and Sinaida Kostenko</p>\r\n<p><strong>Do you want to help encourage needy, disabled Christian workers and their families?</strong>\r\n</p>',NULL,4,'2011-08-11 15:00:12','2011-10-25 12:47:43','25,50,100,500,1000','Helping those injured in the service of God',1,1,'25,50,100,500,1000','monthly','','CMF',0),(8,'Church Planting Projects','<p>When CAM establishes bases in other countries, we feel the need to have a church nearby that is in accordance with our beliefs and convictions. It benefits our field staff and opens spiritual opportunities in the community.</p>','<br /> \r\n<br />\r\n<hr />\r\n <h3>La Source, Haiti</h3>\r\n <table>\r\n <tbody><tr>\r\n <td><iframe marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.com/maps/ms?msa=0&msid=206646033770182178102.0004ac6db12cab58ae66f&ie=UTF8&t=h&vpsrc=0&ll=19.730402,-73.160019&spn=0.002525,0.003208&z=17&output=embed\" frameborder=\"0\" height=\"250\" scrolling=\"no\" width=\"300\"></iframe>\r\n<br /><small>View <a href=\"http://maps.google.com/maps/ms?msa=0&msid=206646033770182178102.0004ac6db12cab58ae66f&ie=UTF8&t=h&vpsrc=0&ll=19.730402,-73.160019&spn=0.002525,0.003208&z=17&source=embed\" style=\"color:#0000FF;text-align:left\">19.730400, -73.160020</a> in a larger map</small>\r\n</td>\r\n <td><p>The church at La Source was officially established in January 1997. Salem Amish Mennonite church in Bakersville, Ohio, oversees this work. Matthew Morhart pastors the church, which now has 33 national members.</p>\r\n</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n <hr />\r\n <h3>Suceava, Romania</h3>\r\n <table>\r\n <tbody><tr>\r\n <td><p>Established on CAM\'s orphanage compound in August 1996, the Nathaniel Christian church has 42 members (including CAM\'s American staff). The church reaches out to the community through summer Bible school and home Bible studies, disciplining new converts, translating Sunday school materials, packaging and mailing <em>Seed of Truth</em> magazines, and other projects. David Raber is the bishop.</p>\r\n</td>\r\n <td><iframe marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=Suceava,+Romania&aq=&sll=19.876852,-73.187324&sspn=0.079749,0.065832&ie=UTF8&hq=&hnear=Suceava,+Romania&t=h&z=13&ll=47.651389,26.255556&output=embed\" frameborder=\"0\" height=\"250\" scrolling=\"no\" width=\"300\"></iframe>\r\n<br /><small><a href=\"http://maps.google.com/maps?f=q&source=embed&hl=en&geocode=&q=Suceava,+Romania&aq=&sll=19.876852,-73.187324&sspn=0.079749,0.065832&ie=UTF8&hq=&hnear=Suceava,+Romania&t=h&z=13&ll=47.651389,26.255556\" style=\"color:#0000FF;text-align:left\">View Larger Map</a>\r\n</small>\r\n</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n <hr />\r\n <h3>Monrovia, Liberia</h3>\r\n <table>\r\n <tbody><tr>\r\n <td><iframe marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=Monrovia,+Liberia&aq=&sll=47.651389,26.255556&sspn=0.11425,0.131664&ie=UTF8&hq=&hnear=Monrovia,+Greater+Monrovia,+Montserrado,+Liberia&t=h&z=13&ll=6.300774,-10.79716&output=embed\" frameborder=\"0\" height=\"250\" scrolling=\"no\" width=\"300\"></iframe>\r\n<br /><small><a href=\"http://maps.google.com/maps?f=q&source=embed&hl=en&geocode=&q=Monrovia,+Liberia&aq=&sll=47.651389,26.255556&sspn=0.11425,0.131664&ie=UTF8&hq=&hnear=Monrovia,+Greater+Monrovia,+Montserrado,+Liberia&t=h&z=13&ll=6.300774,-10.79716\" style=\"color:#0000FF;text-align:left\">View Larger Map</a>\r\n</small>\r\n</td>\r\n <td><p>In March 2000, Faith Mennonite Church in Lott, Texas, started a church planting effort near CAM\'s base in Liberia, West Africa. Ray Yoder from Bastrop, Texas, pastors the Light Mennonite church. The church\'s first national pastor Kollie Juku passed away on December 10, 2010. Recently the church started an outreach, Hope Mennonite Church, which is pastored by Nelson Gartor, a national. Membership at Light Mennonite is 95 and Hope Mennonite has 16 members.</p>\r\n</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<hr />\r\n <strong>Every contribution from loving people like you helps us to establish bases of love, care, and spirituality that is only accomplished by the presence of a church that believes in our convictions.</strong>\r\n \r\n\r\n',25,5,'2011-08-11 15:05:27','2011-10-25 12:52:32','50,100,250,500,1000','sample subtitle!',1,1,'25,50,100,250,500,1000','one-time','','CPL',0),(9,'Clothing Bundle Project','<p>Donated clothing, footwear, and comforters bring relief and joy to needy people who wondered how they will clothe their families another year. In 2010, sponsors provided funds to ship over two million pounds of clothing, bedding, and footwear and 30,738 comforters. The items went to Romania, Ukraine, Azerbaijan, Belarus, Haiti, Liberia, Nicaragua, Latria, and other countries. Every gift of $69 processes, ships, and distributes approximately 155 pounds of clothing.</p>','<p><strong>Note from a grateful recipient in Ukraine: </strong>\r\n<em>We thank you for the help you sent us. It is a big encouragement . . . we pray to God that you and your service could prosper . . . When we will meet each other in heaven, we will be glad that we could work together for the Lord. Matthew 25:34-40</em> Dima Myndru\r\n</p>\r\n<p>CAM receives hundreds of tons of donated clothing at our drop-off points across the United States. We rely on donated funds to move the clothing from our warehouses to the many needy people overseas who can make good use of it.</p>\r\n<p><strong>Would you like to help provide clothing for the needy?</strong>\r\n</p>',159,6,'2011-08-11 15:10:54','2012-02-16 16:31:20','35,69,138,207,345,690,1380','',1,1,'69,138,345,690,1380,2760','one-time','','CBP',0),(10,'Conservative Anabaptist Service Program','<p>This program\'s purpose is to provide a SSS (Selective Service System) approved place of employment for conscientious objectors to serve, should the draft be activated by the United States government.</p>','<p>Our goal is to provide alternate places of employment that have an ethical and moral environment. Such projects would also benefit our country\'s health, safety, and other interests. Several <strong>CASP</strong> projects are in place to evaluate this program.</p>\r\n<p>In 2010, <strong>CASP</strong> had 125 young men serve a total of approximately 20,800 hours in ten projects.</p>\r\n<p>For more information on the CASP program, call Eli Weaver at <strong>330-893-2428.</strong>\r\n</p>\r\n<p><strong>Would you like to donate to the CASP program?</strong>\r\n</p>',27,8,'2011-08-11 15:17:29','2012-02-16 18:29:48','50,100,250,500,1000','',1,1,'35,70,175,350,700,1400','one-time','CASP volunteers helping to erect the walls of a house.','CASP',0),(11,'Disaster Response Services','<p><strong>DRS</strong> (Disaster Response Services) coordinates volunteers to rebuild in natural disaster areas in the USA. Hundreds of volunteers have donated thousands of hours serving in communities crippled by floods, hurricanes, and tornadoes.</p>','<p>These projects provide excellent opportunities to share the love of Christ with those suffering devastation and loss.  A total of 2,100 <strong>DRS </strong>volunteers donated approximately 52,330 hours in 2010.</p>\r\n<p><strong>Do you want to help join the effort to clean up and rebuild for disaster victims in the USA?</strong>\r\n</p>',28,9,'2011-08-11 15:23:23','2012-02-16 18:29:48','50,100,250,500,1000','',1,1,'25,50,100,250,500,1000','one-time','','DRS',0),(12,'Family-Self-Support','<p>Helping selected Christian families support themselves, rather than depend on material aid, is an important goal to CAM. The <strong>Family-Self-Support</strong> (FSS) program provides funds for families to buy a plot of land, horse and wagon, cow, greenhouse, tools and equipment, or other resources to help them make a living. The program operates in Romania, Moldova, Ukraine, Israel, Haiti, Liberia, and Kenya.</p>','<p>Before receiving <strong>FSS</strong> funds, Grigory Prymakhad had to hire equipment to farm his twenty-two acres. But as the economy in Ukraine regressed, his landlord was no longer willing to wait until after harvest for Grigory to pay the rental bill. Through <strong>FSS</strong>, Grigory can harvest sunflowers and other crops with his own equipment and says the program \"saved his family.\"</p>\r\n<p><em>We want to work with our hands. We want opportunities for our children. We want to live at home with our families instead of working in the city or out of the country. </em>These cries come from all across Ukraine, from families willing to work hard but don\'t have the funds to improve their situation. Hundreds of Ukrainians lost their jobs during 2010 when the economy took yet another drop. Men from the villages often have to leave home to find work in the larger cities or outside the country. These families dream of starting a business at home or improving the one they already have. But without funds, how will their dreams come true?</p>\r\n<p>For some, CAM\'s <strong>FSS</strong> program is their hope for change. The program gives families up to $3,500 USD to buy tools, land, equipment, animals, or other resources to make a living. Vasily Vasilchuk used to leave his young family to find work, but after receiving <strong>FSS</strong> funds, the family bought a potato planter, sprayer, strawberry plants, and other resources and can now work together in their potato and strawberry fields. Their produce business gives them enough income to provide for the family, make much-needed repairs to their house, and bless others. Vasily\'s wife Svitlana said, \"it\'s a dream come true.\"</p>\r\n<p>Besides funds, <strong>Family-Self-Support</strong> provides business advice, follow-up consultations, and teaching seminars. We are blessed to have a Ukrainian agronomist on staff to advise families in greenhouse and farming projects. Occasional seminars give <strong>FSS</strong> recipients the opportunity to share their experiences with others wanting to start a home business.</p>\r\n<p><strong>Would you like to help provide resources for needy families?</strong>\r\n</p>',29,10,'2011-08-11 15:25:25','2012-02-16 18:29:48','250,500,1000,1500,2000,2500','subtitles are great',1,1,'25,50,100,500,1000','one-time','','FSS',0),(13,'Gifts-That-Grow','<p>Millions of dollars\' worth of free medicines, food, liquid nutrition, and other valuable items are available to CAM each year. Though companies and individuals donate the items, CAM has procurement fees and shipping costs to bring them to our warehouse in Pennsylvania and ship them overseas. Each $1 given to the <strong>Gifts-That-Grow </strong>(GTG) program brings in $200 worth of donated products for the poor.</p>','<p>Junior Backohm was working in his cassava field in Rivercess County, Liberia, when a small snake bit his left foot. By the following day, he could no longer work. Unfortunately, Junior received no hospital care and within one week he was paralyzed and unable to even feed himself. His wife left him, taking their only child and leaving Junior at the mercy of others.</p>\r\n<p>For the next year and a half, Junior was pushed around in an old wheelbarrow. When CAM came to distribute aid in Rivercess, Junior was brought to them in an old wheelbarrow. But, praise God, he left in a treasured new wheelchair! \"T\'ank God, O!\" were the words of thanks Junior managed to eke out.</p>\r\n<p>Elizabeth Maneh, another recipient in Rivercess, had been crossing a log over a creek when, halfway across, the log broke and Elizabeth fell. The heavy bundle of wood she was carrying on her head landed on her right leg and broke it. The accident happened during wartime with no way for her to get medical treatment. Her leg did not heal properly, and Elizabeth was never able to walk again. Thirteen years later, her brother Edwin, a sixty-eight-year-old pastor, was resting in his chair after church when he suddenly suffered a stroke that paralyzed the left side of his body. In 2010, these siblings were thrilled to each receive a wheelchair through CAM\'s <strong>GTG</strong> program. Elizabeth said, \"God\'s eyes are on us today and brought us wheelchairs.\"</p>\r\n<p>\"We never expected to receive anything like this, ever!\" was the response of Action Glay\'s family when Action received a wheelchair. Seventeen-year-old Action was born mute and crippled. This family in Liberia was very happy for the gift they received.</p>\r\n<p>Thank you, supporters, for making it possible to provide wheelchairs and other aid to needy, crippled people. Your generosity shows the love of Christ, helps ease suffering, and encourages hearts around the world.</p>\r\n<p><strong>Would you like to help procure and ship free products urgently needed for the poor?</strong>\r\n</p>',30,12,'2011-08-11 15:28:12','2012-02-16 18:29:49','25,50,100,500,1000','',1,1,'25,50,100,500,1000','one-time','','GTG',0),(14,'Help-for-the-Elderly','<p>This program meets one of the most desperate needs in Haiti, Liberia, Romania, Moldova, and Nicaragua. Thousands of elderly people in these countries are left alone, unable to work and provide for themselves. A donation of $45 provides a 25-pound or larger food parcel, $10 cash, and <em>The Seed of Truth</em> or <em>Antorcha de la Verdad</em> for a needy elderly person. The cash is often used for medical bills and other expenses. Each month, <strong>Help-for-the-Elderly</strong> (HFTE) sponsors provide more than 9,000 parcels of food, vitamins, hygiene items, and medicines, Christian literature, and some cash for elderly people. </p>','<p>Mr. and Mrs. Monétoile Civil live in a crude, mud-plastered house in poverty-stricken Haiti. Both have poor eyesight and Mr. Civil struggles with stiff, arthritic legs. He assembles brooms and sells approximately ten each month for twenty-five cents apiece. This is their only income.</p>\r\n<p>The <strong>Help-for-the-Elderly</strong> food parcels, made possible by sponsors, is what keeps Mr. and Mrs. Civil alive. The Civils say it would be difficult to survive without the $10 cash that also comes with the parcel.</p>\r\n<p>Many elderly in Haiti have known little but hardship all their lives. They did not have the opportunity to save money for their sunset years. It is difficult for a feeble person who can hardly see or walk to try to work and find food each day.</p>\r\n<p>The needs are endless, says Jeriah Mast, CAM staff member in Haiti. But receiving a <strong>HFTE</strong> parcel brings hope to an elderly person\'s life.</p>\r\n<p>Sentali Chal, a Haitian widow, has poor eyesight and extremely bad hearing. She is so grateful for the <strong>HFTE</strong> parcel she receives. Sentali cannot read or write, but this is what she says: \"I am very dependent on this box each month. If it wouldn\'t be for the box, I would be in big trouble. But the foremost thing I say is a big thank you for sending this to me so faithfully!\"</p>\r\n<p>When Sentali was asked what she buys with the $10 cash that comes with the parcel, she said, <em>\"Sometimes I buy more food and clothes, but sometimes I save it. I have been able to buy a small goat and pig with this money. It is so helpful!\"</em>\r\n</p>\r\n<p>Since Liberia\'s savage civil war ended in 2003, many elderly Liberians find themselves alone. Some had moved to the capital Monrovia during the war and now do not have the resources or strength to return to their homes in the bush. Some suffer bullet, shrapnel, or grenade wounds and few have children with the means to care for them.</p>\r\n<p>The elderly badly need assistance, states Seth Martin, CAM\'s former field director in Liberia. It is hard to know who to help; there are so many pressing needs. We try to decide based on the degree of helplessness.</p>\r\n\r\n<p>According to our field staff, literally thousands of old people are in great need of help. It is CAM\'s goal to continue to increase the size of this program as funds become available.</p>\r\n<p>Thank you, supporters, for sharing! God bless you for bringing hope to struggling elderly people.</p>\r\n<p><strong>Would you like to help bless needy elderly people in Haiti, Liberia, and other countries?</strong>\r\n</p>',31,14,'2011-08-11 15:32:30','2012-02-16 18:29:49','45,90,225,450,900,1800','',1,1,'45,90,225,450,900,1800','one-time','','HFTE',0),(15,'International Crisis','<p>This program helps victims of war, famine, and natural disasters around the world. Supporters\' donations provide emergency food, medicines, clothing, shelter, or other aid, and sometimes rebuilding. CAM\'s main priority in all <strong>International Crisis</strong> (IC) projects is to distribute Christian literature and share the love of Christ, sometimes in closed and dark places of the world. Some countries CAM worked in during 2010 were Haiti, Pakistan, Chile, and India.</p>','<br />\r\n<br />\r\n<p>The 9.0 earthquake that struck Japan at 2:46 p.m. on March 11, 2011, was the fifth largest earthquake ever recorded and the biggest in Japan\'s history. Minutes later, a tsunami-triggered wall of water up to thirty feet high slammed Japan\'s eastern coast. To compound problems, the cooling systems at six of Japan\'s nuclear reactors were knocked out causing a serious nuclear emergency, second only to that of Chernobyl twenty-five years ago.</p>\r\n<p><img alt=\"Ic Japan Tsuanmi\" title=\"Ic Japan Tsuanmi\" src=\"/system/images/BAhbBlsHOgZmSSIxMjAxMS8wOS8wNy8xNl8xNF8xOF8zNDhfaWNfamFwYW5fdHN1YW5taS5KUEcGOgZFVA/ic_japan_tsuanmi.JPG\" height=\"338\" width=\"450\" /></p>\r\n<p>Thousands of bodies have washed ashore. By the end of March 2011, 25,104 people died or are unaccounted for. Millions struggled for days with inadequate food, heat, and water, while temperatures hovered in the mid-thirties with biting winds and snow flurries. Hundreds of thousands stayed in temporary shelters.</p>\r\n<p><em>\"We are struggling desperately to recover</em>,<em>\"</em> said Yoshihiro, governor of the worst affected region of Miyagi. <em>\"I am afraid it\'s going to take a few years to revive. The disaster was far bigger than we prepared for</em>.\"</p>\r\n<p>CAM dispatched several team members to Japan who coordinated our relief efforts. As with all our International Crisis projects, we are giving priority to sharing the Gospel of Jesus Christ through Christian literature.</p>\r\n<p>Japan has a population of 127 million, with less than two percent calling themselves Christian. Most Japanese follow Shintoism or Buddhism. The regions hardest hit by the earthquake and subsequent tsunami are considered the \"darkest\" spiritually by most missionaries. A contact in Japan shared there are about 4.9 million people in these regions, with a mere 9,000 active Christians. How sad that in this great national calamity when many have lost loved ones and all their earthly possessions, most Japanese do not have God to cling to!</p>\r\n<p>A visitor to the town of Kesennuma wrote: <em>The tsunami swept up homes and cars and then churned them into pieces like a giant sheet of sandpaper scrubbing everything in its wake. The town\'s hospital still stands, but with its doors and windows blown out by the water. A small boat is perched on what was once a third-story balcony.</em>\r\n</p>\r\n<p>The humanitarian needs in the quake/tsunami area are serious, but the psychological effect is nationwide. The disaster has left the normally self-reliant Japanese feeling very vulnerable. Please pray that through this tragedy many would open their hearts to the Word of God and prepare themselves for eternity!</p>\r\n<p><em>\"Be merciful unto me, O God . . . in the shadow of thy wings will I make my refuge, until these calamities be overpast.\" Psalm 57:1</em>\r\n</p>\r\n<p><strong>Would you like to help victims of war, famine, and natural disasters around the world?</strong>\r\n</p>',75,16,'2011-08-11 15:54:34','2012-02-16 18:29:50','50,100,250,500,1000','subtitles are great',1,1,'50,100,250,500,1000','one-time','','IC',0),(17,'International-Sponsor-A-Student','<p>The <strong>International-Sponsor-A-Student </strong>(ISAS) program was started to help support Christian day schools in Liberia, Romania, and other needy countries. $50 per month supports one student.</p>','<p>Few schools in Liberia have sufficient materials or Christian-based education. The <strong>International-Sponsor-A-Student</strong> program supports Light Mennonite School in Liberia, providing a Christian education for children whose parents cannot afford tuition.</p>\r\n<p>In Romania, this program supports the Nathaniel Christian School. The school, located on the orphanage compound, was established to provide a Christian education for the orphanage children. Today most of the orphanage children have graduated, but a total of 89 students from the community attend the school. Grades one through eight are taught by 16 teachers. At the technical school, students can take woodworking, mechanics, baking, or sewing classes that will help them gain skills for life. After three years, they earn diplomas that can help them secure jobs in the future.</p>\r\n<p><strong>Would you like to help provide a Christian education for children in Liberia, Romania, or other needy countries?</strong>\r\n</p>',92,18,'2011-08-11 18:50:15','2012-02-16 18:20:20','50,100,250,500,1000','',1,1,'25,50,100,250,500,1000','one-time','A typical Liberian school with students at crude desks, doing all their lessons on a single notebook.','ISAS',0),(18,'Jericho Road Ministries','<p><strong>Jericho Road Ministries </strong>(JRM) in Suceava, Romania, reaches out to street children, widows, aged people, and school children who have been \"left by the wayside,\" mostly Gypsy people.</p>','<p>\r\nSome ways this program reaches out:</p>\r\n<ul><li>Provides self-help aid (seeds, chain saws, land to plant crops, etc.) to needy Gypsy families</li>\r\n<li>Supports three remedial schools for Gypsies who fall behind in their lessons or drop out of school </li>\r\n<li>Translates Sunday school materials into the Romanian language and distributes Christian literature</li>\r\n<li>Holds home Bible studies</li>\r\n<li>Mails Bible correspondence courses and <em>The Seed of Truth</em> magazines</li>\r\n</ul>\r\n<p>More than a hundred Gypsy children attended the <strong>Jericho Road Ministries</strong> summer Bible school held at the Nathaniel Christian Church. For some, it was their first time to hear about Jesus.</p>\r\n<p>Many of these children don\'t have the opportunity to go to Sunday school or hear about God at home. They live in the ghettos and face rejection from society. Sometimes they are forced to drop out of school to help their families beg for (or steal) food and clothes. Bible school is a wonderful opportunity to show these children they are precious in God\'s sight.</p>\r\n<p>CAM\'s <strong>Jericho Road Ministries</strong> program in Suceava, Romania, operates three remedial schools to help teach struggling Gypsy children how to read and write. The staff also distributes Bible story books and other Christian literature and translates Christian Light Publication\'s Sunday school materials into the Romanian language. <strong>JRM</strong> offers self-help aid and assists widows, elderly people, and orphans, mostly Gypsies. Their goal is to minister to the unfortunate, underprivileged, and outcasts of society.</p>\r\n<p>Please pray for the Gypsy people of Romania. Though they have generations of sin and darkness behind them, there is hope for these needy families! They are precious in God\'s sight.</p>\r\n<p><strong>Do you want to help the Gypsies in Romania?</strong>\r\n</p>',33,19,'2011-08-11 18:52:08','2012-06-06 17:15:23','50,100,250,500,1000','',1,1,'25,50,100,250,500,1000','one-time','','HFSC',0),(19,'Medicines-for-Multitudes','<p>With funds from supporters, CAM distributes medicines and supplies to over 400 medical outlets in Eastern Europe, Liberia, Haiti, Nicaragua, El Salvador, and other parts of the world. A $1 donation supplies $60 worth of medicines. </p>','<p>Because generous pharmaceutical companies donate the medicines, we can ship and distribute $60 worth of medicines for every dollar given to this program. In 2010, CAM shipped an estimated wholesale value of $106 million of medicines, vitamins, liquid nutrition, and medical supplies. </p>\r\n<p><strong>Clinic at La Source, Haiti:</strong> Very little medical care is available in the La Source area. God has made it possible for CAM\'s Joshua Memorial Clinic to provide medicines and medical care greatly needed in this remote area of Haiti. Generous companies donate medicines and supplies, and supporters\' funds help us ship and distribute them. During 2010, clinic staff saw more than 9,000 patients.</p>\r\n<p><strong>Clinic at Waslala, Nicaragua:</strong> CAM\'s Balm of Gilead Clinic at Waslala, Nicaragua, opened in February 1997. The free medicines, donated by generous companies, are a great blessing to the suffering people who come to the clinic for help. Last year, an estimated 9,475 persons received consultations from the Waslala clinic staff. The work of the clinic was an important factor in helping the conservative Mennonite churches in Costa Rica start outreaches in the Waslala area.</p>\r\n<p>Every winter, cold and flu cases mount. Little ones struggle with sniffles, coughs, sore throat, and fever. Adults fight viruses and infections. In the United States, we simply go to the medicine cabinet or local pharmacy for Tylenol, Vitamin C, or Vicks, and we soon feel better. </p>\r\n<p>In places like Romania, however, it is not nearly so simple. Many people cannot afford to buy medicines. For poor families in the villages, some medicines cost more than the income they receive in a month. Keeping medicines in the cabinet is not an option for most Romanians.</p>\r\n<p>Through the <strong>Medicines-for-Multitudes (MFM)</strong> program, CAM sends approximately $70 million worth of donated medicines to Romania each year. Hospitals, Christian doctors, church pharmacies, and other medical outlets dispense the free medicines to their patients. Many people can hardly believe they are receiving free medicine and consider it \"manna from heaven.\"</p>\r\n<p>Dr. Aurora Galchis in Romania wrote, \"The Casero Vapor Cream (from CAM) is very much appreciated by the mothers, especially during cold and flu season. It is one of the most asked-for medicines.\" Casero Vapor Cream helps treat respiratory infections and is just one of the many precious, donated medicines that can help people who might otherwise have to buy expensive medicines from the doctor. Thanks to supporters who care, thousands of Romanians and people in many other parts of the world will have a few medicines in their cabinet this coming winter.</p>\r\n<p>Each $1 donated to the <strong>Medicines-for-Multitudes</strong> program helps supply $60 worth of medicines for the poor. The medicines and medical supplies go to over 400 medical outlets in Romania, El Salvador, Liberia, Nicaragua, Haiti, and other countries.</p>\r\n<p><strong>Would you like to help provide free medicines for the needy and sick?</strong> </p>',95,20,'2011-08-11 18:56:52','2012-02-16 18:20:20','50,100,250,500,1000','Providing Healthcare for the Masses',1,1,'25,50,100,250,500,1000','one-time','Patients experience a touch of God's kindness at Good News Clinic in El Savador.','MFM',0),(20,'Milk-for-Many-Mouths','<p>The Nathaniel Farm in Suceava, Romania, provides free quality milk to needy families, orphanages, and hospitals. Every $3 designated for this program helps produce, process, and distribute one gallon of milk. The farm donates fresh milk to 20 orphanages, 4 churches, and 7 hospitals on a weekly basis.\r\n</p>\r\n<iframe marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.com/maps?q=map+romania&oe=utf-8&client=firefox-a&ie=UTF8&hq=&hnear=Romania&gl=us&z=6&vpsrc=0&ll=45.943161,24.96676&output=embed\" frameborder=\"0\" height=\"350\" scrolling=\"no\" width=\"425\"></iframe>\r\n<br /><small><a href=\"http://maps.google.com/maps?q=map+romania&oe=utf-8&client=firefox-a&ie=UTF8&hq=&hnear=Romania&gl=us&z=6&vpsrc=0&ll=45.943161,24.96676&source=embed\" style=\"color:#0000FF;text-align:left\">View Larger Map</a>\r\n</small>','<p>Picture the gallon of milk you have in your refrigerator. Now try to imagine two million of those gallon milk jugs. If you would empty those jugs into a football field, you would be wading in about four and a half inches of milk! If you loaded them onto trucks, they would fill 381 semi-trailers! Through the <strong>Milk-for-Many-Mouths </strong>(MFMM) program, struggling people in Romania have been blessed with over two million gallons of fresh milk since 1993!</p>\r\n<p>Dennis Swartzentruber, manager of the CAM farm in Suceava, Romania, reports there is still a great demand for fresh milk in Romania, especially for orphanages, hospitals, and poor church families. Some Romanians own cows, but usually the farmers cannot provide the cows with quality feed that promotes sufficient production.</p>\r\n<p>CAM initiated the <strong>Milk-for-Many-Mouths</strong> program to help meet the need for good quality milk essential for children to grow strong, healthy bones. With God-blessed donations from supporters, needy people receive fresh milk from CAM\'s Nathaniel Farm.</p>\r\n<p> The farm produces approximately 2,000 gallons of milk per week. CAM distributes a total of 850 gallons to twenty orphanages, seven hospitals, and four churches; the rest is sold at the CAM store in Suceava and helps cover operating costs of the farm. A total of 1,700 people are being blessed each week with the gift of fresh, nutritious milk!</p>\r\n<p>One grateful Romanian pastor writes: <em>We are very glad that even in these days of crisis God uses you all to be channels through which He can bless us and fulfill His plans. Your support is another way of God showing us He cares, and we have another reason to thank Him.</em> </p>\r\n<p>May the Lord reward you for touching the lives of many needy people in Romania!</p>\r\n<p><strong>Would you like to help provide fresh milk for orphans, elderly people, and needy families?</strong> </p>',35,22,'2011-08-11 19:00:09','2012-02-16 18:20:20','50,100,250,500,1000','subtitles go here',1,1,'25,50,100,250,500,1000','one-time','Many children are blessed through the Milk-for-Many-Mouths program.','MFMM',0),(22,'SALT Microfinance Solutions','<p style=\"font-weight: bold;\">SALT (Shared Accountability Lending & Teaching) - small loans to help poor people make a living.</p>\r\n<p>People in needy countries usually want to work and provide for themselves instead of depending on foreign aid, but don\'t have resources to get started. This program provides small loans for needy people to start their own businesses. As clients repay their loans, they are eligible for larger loans to expand their businesses. The core of this program is teaching, both spiritual and business. Our goal is to first introduce men and women to Jesus Christ and then walk with them as they transition from poverty to providing for themselves.</p>','<h3>SALT Microfinance Solutions</h3>\r\n<p>Our goal is to provide sustainable Christ-centered solutions, and to break the cycle of physical and spiritual poverty that grips communities around the world today. We believe this is best accomplished by giving opportunity for men and women to put their God-given abilities to work. These are not individuals looking for a free handout, but simply people in need of both capital and training. </p>\r\n<p>The primary purpose of SALT microfinance is to help men and women find eternal life through Jesus Christ. Secondly, we want to walk with them as they make the transition from poverty to providing for themselves.</p>\r\n<p>One of the greatest hurdles that confronts aid organizations today is the challenge of providing sustainable solutions. Poverty continues to grow, and many countries have become addicted to continual foreign aid. Our vision is to provide a path out of the seemingly endless cycle of poverty that plagues many families around the world. Our desire is to help the struggling by giving them opportunity to provide for themselves.</p>\r\n<p>To accomplish this, we offer business and spiritual teaching and provide loans to develop small enterprises. These businesses are intended to supply a steady income, enabling families to purchase good food, decent housing, and education for their families. As these businesses expand, the effects spread beyond the family into the community and local economy.</p>\r\n<p><img class=\"add-caption\" title=\"Meeting with a loan group in Haiti\" alt=\"Meeting with a loan group in Haiti\" src=\"/system/images/BAhbB1sHOgZmSSInMjAxMi8wMy8xNi8xNl8yNV8xOV80MDVfU0FMVF8yLmpwZwY6BkVUWwg6BnA6CnRodW1iSSINNDUweDQ1MD4GOwZU/SALT_2.jpg\" rel=\"450x450\" height=\"338\" width=\"450\" /></p>\r\n<h3>Potential Entrepreneurs</h3>\r\n<p>Many people who have become dependent on foreign aid have business ideas and would like to work, but lack the training and resources to get started. Many are excellent candidates to be entrepreneurs. They have spent their lives just trying to find food and shelter. This constant struggle has taught them diligence and created the single minded focus needed to successfully launch new businesses.</p>\r\n<h3>How the program works</h3>\r\n<p><em>Shared Accountability Groups</em>—Clients form small groups. These groups are mutually accountable for loan repayment. In this way, clients hold themselves accountable and reputation becomes collateral.</p>\r\n<p><em>Graduated Loans</em>—A client is first given a very small loan. After their loan is repaid, and if they can show that more capital would help them expand their business, they are given a larger loan. In this way faithfulness is rewarded and repayment encouraged. A typical first loan is usually between $50-$200, depending on the proposed business.</p>\r\n<p><em>Frequent Payments</em>—Loan payments are very frequent. Holding a payment for a long period of time is difficult in areas of extreme poverty.</p>\r\n<p><em>Spiritual and Business Teaching</em>—Regular meetings are held where clients are taught basic business principles and practices. These meetings are also intended to strengthen communities spiritually. They provide an excellent opportunity to reinforce Biblical principles and present salvation through Jesus Christ to the lost.</p>\r\n<p><em>Introductory Course</em>—Before receiving a loan, each client is required to complete an Introductory Course. This course ensures that the client understands the Biblical path to salvation and assists them in creating their own Business Plan.</p>\r\n<p><em>Mandatory Savings</em>—Each client is required to save a small amount of money each month. This helps them learn to plan, a trait that is often lacking, and gives them capital to grow their business when they graduate from the program. </p>\r\n<p><em>On-Site Business Tutoring</em>—Loan managers visit clients to help them with sales display and basic book-keeping. Many clients have never been taught simple things like being polite to customers.</p>\r\n<table><tbody><tr><td><img class=\"add-caption\" title=\"With help from the SALT microfinance program, Vida sells chicken along the street in Ghana.\" alt=\"With help from the SALT microfinance program, Vida sells chicken along the street in Ghana.\" src=\"/system/images/BAhbB1sHOgZmSSIlMjAxMi8wMy8xNi8xNl8yOF8xOF81NjFfdmlkYS5qcGcGOgZFVFsIOgZwOgp0aHVtYkkiDTIyNXgyNTU+BjsGVA/vida.jpg\" rel=\"225x255\" height=\"169\" width=\"225\" /></td>\r\n<td><img class=\"add-caption\" title=\"Loans from the SALT program help to start all kinds of businesses. With a small loan, Gifty sells pots and pans along the streets in Ghana.\" alt=\"Loans from the SALT program help to start all kinds of businesses. With a small loan, Gifty sells pots and pans along the streets in Ghana.\" src=\"/system/images/BAhbB1sHOgZmSSImMjAxMi8wMy8xNi8yM18yN181OV83MDZfZ2lmdHkuanBnBjoGRVRbCDoGcDoKdGh1bWJJIg0yMjV4MjU1PgY7BlQ/gifty.jpg\" rel=\"225x255\" height=\"255\" width=\"181\" /></td>\r\n</tr>\r\n<tr><td><img class=\"add-caption\" title=\"With a small loan, Degllis from Nicaragua purchased the materials to make this cheese press and to begin working toward his dream of making cheese.\" alt=\"With a small loan, Degllis from Nicaragua purchased the materials to make this cheese press and to begin working toward his dream of making cheese.\" src=\"/system/images/BAhbB1sHOgZmSSIpMjAxMi8wMy8xNi8xNl8yOV81M184MDNfZGVnbGlzXzEuanBnBjoGRVRbCDoGcDoKdGh1bWJJIg0yMjV4MjU1PgY7BlQ/deglis_1.jpg\" rel=\"225x255\" height=\"169\" width=\"225\" /></td>\r\n<td><img class=\"add-caption\" title=\"Each week Degllis produces over 800 pounds of cheese that he sells to a local distributor. Degllis knows what it is like to live in extreme poverty, but today he has hope.\" alt=\"Each week Degllis produces over 800 pounds of cheese that he sells to a local distributor. Degllis knows what it is like to live in extreme poverty, but today he has hope.\" src=\"/system/images/BAhbB1sHOgZmSSInMjAxMi8wMy8xNi8xNl8yOV81M183NzBfZGVnbGlzLmpwZwY6BkVUWwg6BnA6CnRodW1iSSINMjI1eDI1NT4GOwZU/deglis.jpg\" rel=\"225x255\" height=\"169\" width=\"225\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n\r\n<h3>Common Questions</h3>\r\n<ol style=\"margin-left: 20px;\"><li><em>Why require a poor man to pay back his loan? Why not just give him the money as a gift?</em>\r\n<ul>\r\n<li><strong>Answer:</strong> There are several reasons why lending is better. For years money and gifts have been given, but ongoing aid continually reminds a man you do not believe in his ability to provide for himself. When a man repays a loan it puts a spring in his step and gives him a feeling of accomplishment that nothing else can. It does more than just relieve the immediate obstacle; it teaches him how to overcome the next one.</li>\r\n</ul>\r\n</li>\r\n<li><em>When clients have emergencies in their lives, are loans ever forgiven?</em>\r\n<ul>\r\n<li>\r\n<strong>Answer:</strong> Loans are very rarely forgiven. When a client is not able to make a payment, the loan partners within their group are called upon to help. Forgiving loans again tells a client you do not believe in them. At times, such as after a hurricane, some loans have been extended to help the immediate need.</li>\r\n</ul>\r\n</li>\r\n<li><em>Do you ever have clients who fail to repay their loans, and if they do not pay their loan back, what do you do about it? </em>\r\n<ul>\r\n<li>\r\n<strong>Answer:</strong> There are a very small percentage of clients who, for various reasons, fail to repay their loans. We do not believe in “forcing” repayment; however, the few individuals who are not faithful in repayment are not eligible for additional loans.</li>\r\n</ul>\r\n</li>\r\n<li><em>What amount of time do clients have to repay their loans?</em>\r\n<ul>\r\n<li>\r\n<strong>Answer: </strong>Most of these loans are fully repaid in six months. This term can be adjusted for certain types of businesses.</li>\r\n</ul>\r\n</li>\r\n<li><em>Can a client continue to receive loans indefinitely as long as they continue to faithfully repay?</em>\r\n<ul>\r\n<li>\r\n<strong>Answer: </strong>Our goal is not to keep people in the program indefinitely. We want to see people gain the ability to operate their own business and “graduate” from the program, so we can focus on others who have not yet had this opportunity.</li>\r\n</ul>\r\n</li>\r\n<li><em>Do you charge interest or fees on these loans? </em>\r\n<ul>\r\n<li>\r\n<strong>Answer:</strong>Yes, we do charge a small administrative fee. This type of a program does require ongoing oversight, and the fees collected are used to help support the staff members who administer the program. It is also very important that clients view the SALT microfinance program as a lending institution and not as a charity. These fees are not intended to “profit” from the poor.</li>\r\n</ul>\r\n</li>\r\n</ol>\r\n\r\n <h2>\r\n 2011 Repayment Rate\r\n </h2>\r\n<table style=\"width: 224px; height: 167px;\">\r\n<tbody><tr><td><h3 class=\"text-align-left\">Ghana</h3>\r\n</td>\r\n<td><h3>100%</h3>\r\n</td>\r\n</tr>\r\n<tr><td><h3 class=\"text-align-left\">Nicaragua</h3>\r\n</td>\r\n<td><h3>100%</h3>\r\n</td>\r\n</tr>\r\n<tr class=\"font-size-large text-align-right\"><td><h3 class=\"text-align-left\">Haiti</h3>\r\n</td>\r\n<td><h3 class=\"text-align-left\">99.57%</h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<h3 class=\"text-align-center\">Stories of SALT microfinance recipients – click on the icons for more details</h3>\r\n\r\n<table style=\"width: 646px; height: 494px;\">\r\n<tbody>\r\n<tr><td>\r\n\r\n\r\n<a title=\"Sobia\" href=\"/news/sustainability-for-sobia%E2%80%99s-family\"><img src=\"/system/images/BAhbBlsHOgZmSSImMjAxMi8wNi8xOS8wMF8zM18wOV84ODdfc29iaWEuanBnBjoGRVQ/sobia.jpg\" height=\"229\" width=\"305\" /></a>\r\n\r\n</td>\r\n<td>\r\n\r\n<a title=\"Gosiane\" href=\"/gosiane\"><img src=\"/system/images/BAhbBlsHOgZmSSIoMjAxMi8wNi8xOS8wMF8xMV8zNF83NjFfR29zaWFuZS5qcGcGOgZFVA/Gosiane.jpg\" height=\"229\" width=\"305\" /></a>\r\n</td>\r\n</tr>\r\n<tr><td>\r\n\r\n<a title=\"Viergelene\" href=\"/Viergelene\"><img src=\"/system/images/BAhbBlsHOgZmSSIrMjAxMi8wNi8xOS8wMF8xM18wNF8zOThfVmllcmdlbGVuZS5qcGcGOgZFVA/Viergelene.jpg\" height=\"229\" width=\"305\" /></a>\r\n</td>\r\n<td>\r\n\r\n<a title=\"Menius\" href=\"/Menius\"><img src=\"/system/images/BAhbBlsHOgZmSSIoMjAxMi8wNi8xOS8wMF8xNl8yOV84OTBfTWVuaXVzMi5qcGcGOgZFVA/Menius2.jpg\" height=\"229\" width=\"305\" /></a>\r\n</td>\r\n</tr>\r\n\r\n<tr><td>\r\n\r\n<a title=\"Hermitha\" href=\"/hermitha\"><img src=\"/system/images/BAhbBlsHOgZmSSItMjAxMi8wNi8xOS8wMF8yMV80M18zODVfaGVybWl0aGFfdnMxLnBuZwY6BkVU/hermitha_vs1.png\" height=\"229\" width=\"305\" /></a>\r\n</td>\r\n<td>\r\n<a title=\"Blind but not begging\" href=\"/news/blind-but-not-begging\"><img src=\"/system/images/BAhbBlsHOgZmSSIoMjAxMi8wNi8xOS8wMF8yNl8xOV8zMzVfYmxpbmRfMi5wbmcGOgZFVA/blind_2.png\" /></a>\r\n</td>\r\n</tr>\r\n\r\n<tr><td><a title=\"Forest Camile\" href=\"/forest-camile\"><img src=\"/system/images/BAhbBlsHOgZmSSIpMjAxMi8wNi8xOS8wMF8yOF81OF8xNzdfZm9yZXN0XzIucG5nBjoGRVQ/forest_2.png\" height=\"229\" width=\"305\" /></a>\r\n</td>\r\n<td>\r\n</td>\r\n</tr></tbody>\r\n</table>\r\n<h2 class=\"text-align-center\">More information on the SALT microfinance program\r\n</h2>\r\n<table style=\"width: 646px; height: 811px;\">\r\n<tbody><tr><td style=\"font-weight: bold;\" class=\"text-align-center\"><span class=\"font-size-large\"><a title=\"Teaching Manuel Brochure\" href=\"/system/resources/2012/03/16/17_57_09_814_Teaching_Manuel_Brochure.pdf?iframe=true&width=1000&height=1200\">Click here for more information regarding the<br />SALT microfinance program teaching material (pdf) >></a>\r\n</span>\r\n</td>\r\n<td><a title=\"Teaching Manuel Brochure\" href=\"/system/resources/2012/03/16/17_57_09_814_Teaching_Manuel_Brochure.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\"><img src=\"/system/images/BAhbB1sHOgZmSSI5MjAxMi8wMy8xNi8xN18wMF81N184MjRfVGVhY2hpbmdfTWFudWVsX0Jyb2NodXJlLmpwZwY6BkVUWwg6BnA6CnRodW1iSSINMjI1eDI1NT4GOwZU/Teaching_Manuel_Brochure.jpg\" height=\"255\" width=\"165\" /></a>\r\n</td>\r\n</tr>\r\n<tr><td style=\"font-weight: bold;\" class=\"text-align-center\"><span class=\"font-size-large\"><a title=\"Agri Plus Program\" href=\"/system/resources/2012/03/16/17_57_09_654_Agri_Plus_Program.pdf?iframe=true&width=1000&height=1200\">Click here for the Agri-Plus brochure (pdf) >></a>\r\n</span>\r\n</td>\r\n<td><a title=\"Agri Plus Program\" href=\"/system/resources/2012/03/16/17_57_09_654_Agri_Plus_Program.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\"><img src=\"/system/images/BAhbB1sHOgZmSSIyMjAxMi8wMy8xNi8xN18yMV80NF8yNjFfQWdyaV9QbHVzX1Byb2dyYW0uanBnBjoGRVRbCDoGcDoKdGh1bWJJIg0yMjV4MjU1PgY7BlQ/Agri_Plus_Program.jpg\" height=\"255\" width=\"165\" /></a>\r\n</td>\r\n</tr>\r\n<tr><td style=\"font-weight: bold;\" class=\"text-align-center\"><span class=\"font-size-large\"><a title=\"Microfinance Brochure 7.10\" href=\"/system/resources/2012/03/16/17_57_09_732_Microfinance_brochure_7.10.pdf?iframe=true&width=1000&height=1200\">Click here for the SALT microfinance information brochure (pdf) >></a>\r\n</span>\r\n</td>\r\n<td><a title=\"Microfinance Brochure 7.10\" href=\"/system/resources/2012/03/16/17_57_09_732_Microfinance_brochure_7.10.pdf?iframe=true&width=1000&height=1200\" target=\"_blank\"><img src=\"/system/images/BAhbB1sHOgZmSSI4MjAxMi8wMy8xNi8xN18yM18wOF83MTBfTWljcm9maW5hbmNlX2Jyb2NodXJlXzcuanBnBjoGRVRbCDoGcDoKdGh1bWJJIg0yMjV4MjU1PgY7BlQ/Microfinance_brochure_7.jpg\" height=\"255\" width=\"114\" /></a>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<br />\r\n<iframe style=\"border: currentColor; width: 100%;\" title=\"SALT Information\" src=\"http://christianaidministries.org/machform/embed.php?id=3\" height=\"868\" scrolling=\"no\">&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;lt;a href=\"http://christianaidministries.org/machform/view.php?id=3\" title=\"SALT Information\"&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;gt;SALT Information&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;lt;/a&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;gt;</iframe>\r\n<p style=\"font-weight: bold;\">Would you like to help provide families in Haiti, Nicaragua, and Ghana with the resources and training to become self-sufficient while also learning Biblical principles?</p>',301,28,'2011-08-11 19:05:45','2012-06-18 20:36:33','50,100,250,500,1000','Small loans to help poor people make a living',1,1,'25,50,100,250,500,1000','one-time','','ML',0),(23,'Save-A-Life!','<p><strong>Save-A-Life!</strong> (SAL) was started out of a growing concern for the number of children suffering and dying daily from malnutrition. The program provides liquid nutrition, infant formula, special medicines, and other products that can help save lives. Generous companies usually donate the products, and sponsors help cover procurement, shipping, and distribution costs. Sometimes the products arrive too late and disease and malnutrition have already claimed a life, but for hundreds of others, the nutrients give them a chance to live and become healthy children.</p>','<p>To support her family, Jennah buys produce from farmers in the bush near her Kpeneji, Liberia, home and then travels 60 miles to the capital city Monrovia to sell it. One day while Jennah was sitting at her little market stand selling cassava, she noticed a closed box on the ground nearby. Occasionally she would hear noises coming from inside the box.</p>\r\n<p>Unable to contain her curiosity any longer, she rose and opened the box. To her surprise a wee baby boy peered up at her! He was obviously unwanted and abandoned by his mother. Jennah, with her compassionate heart, took the child and named him Hamza Shariff.</p>\r\n<p>A week later Jennah returned to her home in Kpeneji with the sick little baby boy. Immediately, she took Hamza to the local CAM-supported clinic where Dr. Foday Watson diagnosed him with pneumonia, skin infection, and malnutrition. He treated Hamza with Omnicef and Herbalife, a nutritional drink mix provided by CAM. Later Hamza also received Isomil Plus, a baby formula CAM sent to Liberia.</p>\r\n<p>Today Hamza is a healthy six-month-old baby. Thanks to God, the care of Jennah, and donated medicine and nutritional items, little Hamza has another chance at life.</p>\r\n<p>\"But Jesus called them unto him, and said, Suffer little children to come unto me, and forbid them not: for of such is the kingdom of God.\" Luke 18:16</p>\r\n<p><strong>Would you like to join the effort to save malnourished babies and children in Liberia, Haiti, Nicaragua, and other countries? </strong>\r\n</p>',100,25,'2011-08-11 19:12:23','2012-02-16 18:20:21','50,100,250,500,1000','subtitle',1,1,'25,50,100,250,500,1000','one-time','Hamza Shariff','SAL',0),(24,'Seed Project','<p>Each year, this project provides tons of quality seeds to needy people in Eastern Europe, Haiti, Nicaragua, and Africa. Planting their own gardens is a joy to the thousands of needy families who can raise produce for their tables and for an income. Thousands of recipients hear the Gospel at distribution meetings and through Christian literature given with the seeds.</p>','<p>When we enter the local supermarket, we don\'t have to look far or long to find the perfect red pepper or crisp green lettuce. The produce sections in American stores are usually stocked full of healthy, fresh vegetables and fruit - all at our fingertips. Many of us also plant gardens in the springtime and by mid-summer we are picking plump, red tomatoes from the vines and sinking our teeth into buttery corn-on-the-cob. We have the blessing of living in a country where good quality produce is reasonably priced and quality seeds are accessible, affordable, and easy to grow.</p>\r\n<p>The picture changes radically in many other parts of the world. Come with us to Nicaragua to visit the Miskitos and Moravians, nationals living along the Atlantic coastal section of Nicaragua and Honduras. These people depend heavily on fishing and lobster diving for their income but also raise and sell their own food. In the good years, yucca, rice, coconuts, bananas, and root crops do well, but when hurricanes or tropical storms hit, these crops are often wiped out, plunging the people into desperate straits.</p>\r\n<p>In the fall of 2007, Hurricane Felix wiped out large stands of timber, coconuts, and bananas in the Atlantic coastal section, and many people lost their houses. It would take years to recover from this loss. The people concentrated on raising rice and root crops, so they would have something to eat. And then another tragedy struck. Hurricane Ida tore through the area in the fall of 2010 and destroyed the people\'s crops. Only a few had enough crop seed to replant. The only thing left to do was ride the bus eight to ten hours to buy more seeds. But another predicament arose. Most of the people could not afford bus fare or seeds, and as a result were left without a source of income.</p>\r\n<p>To help this dilemma, CAM agreed to provide rice seed to the Miskito and Moravian people, using <strong>Seed Project</strong> funds. Through this project, 500 delighted families and 150 single mothers with children received 25 pounds of greatly needed rice seed. Each 25-pound bag of rice seed is projected to yield approximately 1,200 pounds of rice at harvest time. This will be a tremendous blessing to a people who depend on the outcome of their crops. Thanks to each of you supporters who played a part in providing rice seed to these needy people. While they may not be selecting peppers from the produce section or picking tomatoes from the vine, you have made it possible for them to savor steaming bowls of rice at dinnertime and an income to rebuild their lives. </p>\r\n\r\n<p>Each year, CAM provides tons of quality seeds to needy people in Nicaragua, Ukraine, Romania, Moldova, Haiti and Liberia. The seeds meet the climate requirements of the countries they are sent to.</p>\r\n<p>Seeds sent to Romania and Ukraine include corn, tomatoes, cabbage, carrot, red beet, parsley, onion, and cucumber. In Romania, volunteers distribute some seeds door-to-door but most go to pastors who distribute the seeds at evangelistic meetings. Seed distribution provides many opportunities to witness and offer Bibles, Bible story books, and other Christian literature. In Ukraine, CAM partners with Master\'s International Ministries (MIM) for the Seed Project. CAM supplies the seeds and MIM coordinates volunteers from America and local Ukrainian churches to package the bulk seeds into individual packets and then family seed parcels. Thousands of recipients hear the Gospel at the distribution meetings and through tracts given with the seeds.</p>\r\n<p><strong>Would you like to help needy people receive the seeds they need to grow food for themselves and their families?</strong>\r\n</p>',101,26,'2011-08-11 19:18:26','2012-02-16 18:20:22','20,40,60,80,100','subtitle',0,1,'25,50,100,250,500,1000','one-time','CAM provided rice seed to the Miskito and Moravian people after Hurricane Ida destroyed their crops. This grateful recipient poses in his lush, green rice field.','SP',0),(25,'Sewing Centers','<p>At CAM sewing centers in Romania, Moldova, and Ukraine, needy women make clothing for their own families and other needy people. The fabric, sewing machines, notions, and funds to administrate the centers come from generous donors in America. The ladies at the centers are required to give away three out of every four items they make. In 2010, approximately 35,366 items were made at the Romania centers alone.</p>','<p>In Liberia, CAM distributes sewing machines and fabric to orphanages to help them provide clothing for the children. We also send fabric and supplies to nine centers in Nicaragua and one in Haiti. For families who cannot afford to buy clothing, these sewing centers are a tremendous blessing.</p>\r\n<h3>Items needed for sewing centers in Romania, Moldova, and Ukraine:</h3>\r\n<ul><li>Sergers (overlock sewing machines), must be 110 or 220 volts</li>\r\n<li>Electric sewing machines (must be 220 volts with 50 Hz motor or have a transformer)</li>\r\n<li>Quilt batting</li>\r\n<li>Fabric (all sorts, lengths of one yard or more)</li>\r\n<li>Good scissors</li>\r\n<li>Good, useable thread (not weak thread)</li>\r\n<li>Straight pins</li>\r\n<li>Yarn</li>\r\n<li>Thimbles</li>\r\n<li>Zippers (17\" and 21\" - all colors)</li>\r\n\r\n<li>Serger thread (Maxi-Lock; especially white and black, but can also use some rose, blue, cream, and gray)</li>\r\n<li>Elastic (½\" wide, white and black)</li>\r\n<li>Elastic (1\" wide, white and black)</li>\r\n<li>Buttons (½\" and ¾\", white, black, gray, and navy) </li>\r\n<li>Big buttons of all colors (for jackets and coats; 1\" in diameter)</li>\r\n<li>Needles for regular sewing machines (especially sizes 75, 80, 85, 90, 100, and 110)</li>\r\n<li>Needles for triploc machines (size 100 and especially need sizes 80 and 90 in the style CANU:6:60EBI)</li>\r\n<li>Tape measures</li>\r\n<li>Lace (elastic lace used for lingerie, various widths and colors)</li>\r\n<li>Seam rippers</li>\r\n<li>Bulbs (push-in kind - 110v 15w and 220v 15w) (screw-in kind - 120v 15w and 220v 15w)</li>\r\n<li>Sewing machine belts (all sizes, lengths, and widths)</li>\r\n</ul>\r\n<p>If donating more than one kind of item, please keep each kind separate and label the packages accordingly. When sending sewing items, label the boxes or bags \"for Sewing Centers\" and ship or deliver them to: </p>\r\n<p><strong>Christian Aid Ministries<br />Attn: Shipping Department<br />2412 Division Highway<br />Ephrata, PA 17522-9310</strong>\r\n</p>\r\n<p>Funds are needed to ship sewing items and cover operating expenses for CAM\'s 28 sewing centers in Romania, Moldova, and Ukraine. These centers are a tremendous blessing for the ladies who come sew for their families and other needy people. </p>',103,27,'2011-08-11 19:22:48','2012-05-17 20:37:42','50,100,250,500,1000','subtitle',1,1,'25,50,100,250,500,1000','one-time','','SC',0),(26,'Special-Needs-Fund','<p>This fund helps needy people with crises such as a house fire, surgery, or funeral expenses. Poverty-stricken people often cannot save up for such emergencies. The <strong>Special-Needs-Fund </strong>(SNF) is used only in countries where CAM has ongoing projects and field staff.</p>','<p>Financially, some poor families in Eastern Europe get along reasonably well, that is until they face an unexpected illness, job loss, or other crisis. Then CAM\'s <strong>Special-Needs-Fund </strong>can play an important role in helping needy families. To decide who qualifies for aid, CAM staff members work with local pastors and visit the homes of people to verify their requests firsthand. Sadly, the funds do not reach all the needs. </p>\r\n<p><strong>Medical expenses and loss of job</strong>\r\n</p>\r\n<p>Viorel Dombrovoschi lost his job when numerous factories in Romania closed down. He and his wife Anisoara struggle to keep food on the table for their nine children. Recently when two of their children became sick, the <strong>SNF</strong> helped them with medical expenses. </p>\r\n<p><strong>Prepayment for surgery</strong>\r\n</p>\r\n<p>Most doctors in Romania and Ukraine require payment from a patient before they offer their services. Catalina Juganara in Romania needed a C-section due to complications. However, the doctors and nurse made it clear that she was to bring the money prior to surgery. Catalina asked CAM for help, and we were able to assist her with funds for the operation. </p>\r\n<p><strong>Care for the crippled</strong>\r\n</p>\r\n<p>Crippled with cerebral palsy, Maksim Ablezgo in Ukraine lives with his 65-year-old mother in an apartment building. Up until several months ago, they had to descend two flights of stairs whenever they wanted to go outside. The <strong>SNF</strong> provided $1,000 to install a door and a wheelchair ramp so Maksim can go outside and get much-needed fresh air more freely. He and his mother responded with this letter of gratitude: </p>\r\n<p><em>Dear brothers and sisters,</em>\r\n</p>\r\n<p><em>We thank you from the bottom of our hearts for your material aid so we could build a ramp. We had been praying about this need for a long time. Now I can easily go outside in my wheelchair. Earlier my mother had to go out to the street and ask somebody to help carry me outside so I could enjoy the beautiful outdoors. It rarely happened. May the Lord richly bless you and give you success in your labor here on earth and a reward in heaven.</em>\r\n</p>\r\n<p>The <strong>Special-Needs-Fund</strong> is used for difficult situations often related to medical cases but sometimes for those who suffered a house fire or have other special needs. </p>',40,29,'2011-08-11 19:26:35','2012-02-16 18:20:24','50,100,250,500,1000','subtitle',1,1,'25,50,100,250,500,1000','one-time','','SNF',0),(27,'Strong Tower Children\'s Home','<p>Orphaned and abandoned children find a place of refuge and security at Strong Tower Children\'s Home in El Salvador. </p>','<p>The staff at Strong Tower Children\'s Home strives to meet the children\'s emotional, physical, and spiritual needs, and the twenty-one children have the opportunity to study school lessons, feed their animals, play together, and help harvest fruits, vegetables, and coffee beans. We pray these precious children will learn to know and love their heavenly Father and become godly men and women. \r\n</p>\r\n<p>With supporters\' donations, CAM provides the finances to operate Strong Tower Children\'s Home, but the home is administrated under a board and executive committee from the conservative Mennonite churches in El Salvador. </p>\r\n<p><strong>If you feel led to help support the children at Strong Tower, there are two ways you can be involved:</strong>\r\n</p>',104,32,'2011-08-11 19:29:17','2012-02-16 18:20:26','250,500,1000','A Place of Refuge and Security',1,1,'25,50,100,250,500,1000','one-time','','ESCH',0),(28,'Support-A-Widow','<p>The <strong>Support-A-Widow</strong> (SAW) program provides food parcels for needy widows, widowers, and abandoned wives in Kenya, Liberia, Haiti, Nicaragua, Romania, Moldova, Ukraine, and Israel. A donation of $59 provides a 35-pound or larger parcel of food and healthcare items, a copy of the <em>Seed of Truth</em> magazine, and $10 cash. In 2010, supporters provided a total of 11,255 parcels for recipients in Liberia, Haiti, Nicaragua, Romania, Moldova, Ukraine, and Israel.</p>','<p>Madam Silpa from Kenya, Africa, lives with her three young children in a small, 8\' x 12\' hut. This 25-year-old widow earns approximately $1 a week weaving sisal leaves into ropes. The packages of food delivered to her door will make her load lighter this month.</p>\r\n\r\n<p><em>\"Pure religion and undefiled before God and the Father is this, To visit the fatherless and widows in their affliction...\" James 1:27</em>\r\n</p>\r\n<p><strong>Would you like to help provide food and other aid to needy widows, widowers, and abandoned wives?</strong>\r\n</p>',105,33,'2011-08-11 19:34:07','2012-02-16 18:20:26','59,118,177,236','subtitle',1,1,'59,118,295,590,1180,2360','one-time','','SAW',0),(29,'Warm-A-Family','<p>Needy people in Romania, Moldova, and Ukraine struggle to pay their heating bills or buy fuel to heat their houses during the cold winter months. The <strong>Warm-A-Family</strong> (WAF) program provides stoves and/or funds to buy firewood and pay heating bills, usually for large families and some small or isolated churches that lack funds to heat their meeting place.</p>','<p>With the harsh, Romanian winter just around the corner, Costache Popisticha purchased firewood to heat his house, but he was unable to pay it in full. He works whenever he can find a job - hoeing corn, harvesting potatoes, or hauling miscellaneous items with his horse and wagon. Sometimes he receives produce as payment instead of money. </p>\r\n<p>Costache and his wife, Lacramioara, have eight children. With six of them in school, they incur a lot of expenses. Their mud brick house maxes out their two small wood stoves. Costache and his family received $94 (USD) from the <strong>Warm-A-Family</strong> program; with this, they can finish paying for the wood. They praise the Lord for how He has blessed them. </p>\r\n<p>One of the greatest expenses for families in Eastern Europe is heating their houses during the long, cold winters. Parents often sacrifice their own needs to provide warmth and comfort for their families. For a family living in an apartment it costs an average of $125 (USD) a month for central heating. If the father has a decent paying job, he might make $250 - $375 (USD) a month. Because of their low income, families often wait to buy firewood until winter is upon them. They buy some on credit, hoping that God will provide the funds to pay for it. </p>\r\n<p>Each winter, the <strong>Warm-A-Family</strong> program assists approximately 900 families and 25 churches in Romania, Moldova, and Ukraine. Supporters\' donations help families buy firewood or pay their heating expenses. The families are extremely grateful for this aid.</p>\r\n<p><strong>Would you like to help make the cold winter more bearable for poor people in Romania, Moldova, and Ukraine?</strong>\r\n</p>',106,36,'2011-08-11 19:35:58','2012-04-09 19:01:22','20,40,60,80,100','subtitle',0,1,'25,50,100,250,500,1000','one-time','Costache and Lacramioara Popisticha bought some of this firewood with money they earned during the summer; the rest they bought on credit. This wood will not last them the entire winter, and they will have to buy more later on.','WAF',0),(30,'Water-for-the-World','<p>In countries such as Kenya and Haiti, the average household does not have water flowing freely from a spigot. Many settle for river water or stagnant pond water, which can result in life-threatening diseases. CAM provides funds to dig wells in countries where people lack fresh, clean water. People in Kenya, El Salvador, Haiti, and Liberia have benefited from this program.</p>','<p>The Jorim Juma family in Kenya, Africa, is happy about their new well. Jorim had dug this well but was unable to line it with cement or buy a pump for it. CAM\'s <strong>Water-for-the-World (WFW)</strong> program provided funds to dig the well deeper, line it with cement rings, and install the pump. The Juma family and their neighbors now enjoy safe, clean water.</p>\r\n<p><strong>Would you like to help provide a family with clean, healthy water?</strong>\r\n</p>',107,37,'2011-08-11 19:41:42','2012-04-09 19:01:22','50,100,250,500,1000','subtitle',1,1,'25,50,100,250,500,1000','one-time','Jorim Juma family from Kenya, Africa.','WFW',0),(32,'Haiti-Sponsor-A-Child School Program','<p>Haiti\'s government provides little free schooling, and many parents cannot afford sending their children to school. A $55 donation provides five students for one month with textbooks, school supplies, and a warm meal each school day. For the teachers, it provides Biblical training and subsidized pay. </p>','<p>When parents across North America prepare to send their children to school they go shopping for new pencils, tablets, clothes, and book bags. In Haiti, however, about half of the population will not be sending their children to school. For some, no school is available in their area. For many others, there is no money for tuition and school supplies, no matter how near or far away the school.</p>\r\n\r\n<p>Through the blessing of God and the generosity of His people, <strong>Haiti-Sponsor-A-Child </strong>program will help 47 schools and up to 9,500 students this coming school year. Many thousands more children will have to wait for another year.</p>\r\n<p> Besides helping children learn to read and write, it\'s exciting to see the spiritual benefits of this program. Some students who attended CAM-sponsored schools in years past are now church leaders and schoolteachers. The Christophe Colomb School said, <em>Thank you for the great ministry you have done in our school. Many people have been converted and witness for Jesus now. We are very happy that today there are former students who teach in the school.</em> The devotional time held at the schools has inspired students to respect God and be willing to serve Him in spite of opposition from family or peers.</p>\r\n<p>Students starting third grade receive a <em>101 Favorite Stories from the Bible</em> book, and sixth graders receive a New Testament. One young boy said, <em>The pictures in the Bible story book help me understand what the stories are saying.</em> Even parents have come to know God through the Bible story books. Areas steeped in voodoo practices in years gone by have changed in a positive way. We praise God for this miracle, which in part can be attributed to the exposure of Christian literature through <strong>HSAC</strong>.</p>\r\n<p>The majority of teachers in Haiti receive no training. CAM hosts annual Teacher Training Retreats for teachers on the <strong>HSAC</strong> program. Along with academic training, we take this wonderful opportunity to teach Biblical lessons in a society of spiritual darkness.</p>\r\n<p><img rel=\"225x255\" alt=\"Hsac Article\" title=\"Hsac Article\" src=\"/system/images/BAhbBlsHOgZmSSItMjAxMS8wOS8wOC8xM18wOF8xOV8xODdfaHNhY19hcnRpY2xlLmpwZwY6BkVU/hsac_article.jpg\" height=\"244\" width=\"450\" /> </p>\r\n<h3>Thank you, sponsors!</h3>\r\n<ul><li><em>If it wouldn\'t be for your support, our school wouldn\'t have a chance.</em> Oeuvre Humanitaire school</li>\r\n<li><em>Your support has helped me improve my spiritual life and helped us improve the administration at our school. </em>\r\nNouvelle Jérusalem Belle-Eau school administrator</li>\r\n<li><em>You help us with evangelization, especially by giving the \"101 Favorite Stories from the Bible.\" The pictures with the stories are interesting and help convince people about the Bible.</em> Evangélique de Jamais-vu school</li>\r\n</ul>\r\n<iframe marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=haiti&sll=38.40499,-78.872234&sspn=0.266081,0.528374&vpsrc=0&ie=UTF8&hq=&hnear=Haiti&z=8&ll=18.971187,-72.285215&output=embed\" frameborder=\"0\" height=\"350\" scrolling=\"no\" width=\"425\"></iframe>\r\n<small><a target=\"_blank\" title=\"http://maps.google.com/\" href=\"http://maps.google.com/maps?f=q&source=embed&hl=en&geocode=&q=haiti&sll=38.40499,-78.872234&sspn=0.266081,0.528374&vpsrc=0&ie=UTF8&hq=&hnear=Haiti&z=8&ll=18.971187,-72.285215\" style=\"color:#0000FF;text-align:left\">View Larger Map</a>\r\n</small>',79,13,'2011-08-18 19:41:23','2012-02-16 18:29:49','55,110,275','',1,1,'25,50,100,250,500,1000','one-time','Young Haitian boys work together on their lessons. In Haiti, going to school is a privilege not to be taken for granted.','HSAC',0),(33,'Where-Needed-Most','<p>The <strong>Where-Needed-Most</strong> (WNM) program is our general support category. Funds specified for <strong>Where-Needed-Most</strong> are used in CAM aid programs and for general administration and fundraising expenses. This is a great category for those who wish to give, but are not sure which programs to support.</p>','<p><strong>Where-Needed-Most</strong> (or non-specified) funds are used for aid programs that did not receive enough specified funds, and for general administration and fund-raising expenses. We want to be good stewards of all gifts from supporters and need your prayers for wisdom and direction from God. May He be glorified as we labor together to further His kingdom on earth!</p>',254,38,'2011-08-22 14:44:36','2012-04-09 19:01:22','50,100,250,500,1000','subtitle',1,1,'25,50,100,250,500,1000','one-time','','WNM',0),(34,'Teaching Ministries Program','<p>In North America we often take for granted having access to plenty of good Biblical teaching. In many countries, Christians don\'t have this opportunity. Nicaragua is one such place.</p>','<p>In response, CAM established a <strong>Teaching Ministries</strong> program where national pastors from various parts of Nicaragua can attend yearly seminars. These seminars focus on practical, Bible principles that challenge churches toward holy living. Pastors from conservative Anabaptist congregations in Central America teach on subjects such as Biblical doctrine, discipleship, and practical teaching on the home. A study on Matthew 5, taught by Pablo Yoder at the November 2010 seminar, prompted this response from Pastor Marvin Garcia: </p>\r\n<p><em>\"The Sermon on the Mount study has been a great blessing and confirmation of God\'s word. We hope we will have opportunity to attend more of these seminars.\"</em>\r\n</p>\r\n<p>Pray that the seed planted at the Teaching Ministries seminars would bring forth much fruit for God\'s kingdom!</p>\r\n<p><strong>Would you like to help provide practical Bible teaching in Nicaragua and other countries?</strong>\r\n</p>',120,35,'2011-08-22 14:52:17','2012-04-09 19:01:22','50,100,250','\"Give instruction to a wise man, and he will be yet wiser...\" Proverbs 9:9',1,1,'25,50,100,250,500,1000','one-time','','TMP',0),(35,'Sponsor-A-Bible-Lesson','<p>The <strong>Sponsor-A-Bible-Lesson</strong> (SAB) program mails Lamp & Light Bible correspondence courses in Liberia and Romania. In Liberia, more than 7,000 students are enrolled in the courses and in Romania, 800 are actively enrolled. In countries where sound Bible teaching is scarce, Bible correspondence lessons on salvation, holy living, Christian ordinances, and other topics meet an important need for searching souls.</p>','<p>From the CAM office in Liberia, West Africa, Lamp & Light\'s Bible correspondence courses go out to almost every corner of this muggy, tropical country. About 7,000 students are enrolled in the courses, including prisoners, UN soldiers, embassy workers, and pastors. </p>\r\n\r\n<p>Since Liberia has no working mail system, the courses are sent into the countryside through contacts who act as a \"post office.\" In a recent update, Tom Wagler, who directs the correspondence work, shared how amazed and blessed he is at the effort these contacts put into distributing the courses and collecting tests. He says, <em>I\'ve gone out to meet these people, and I come back awed and encouraged by their determination. Some walk for miles through rain, mud, and heat to deliver the Bible courses to students.</em>\r\n</p>\r\n<p>Tom also shared about the positive feedback he gets from students. <em>I meet people locally and out in the jungle who tell me they\'ve been blessed by the courses,</em> he says. A few comments he recently heard are, <em>The courses empowered me for service; I love the courses so much; </em>and <em>You are helping us know God better than before.</em>\r\n</p>\r\n<h2>Reaching out in Romania</h2>\r\n<p>In Romania, the Bible correspondence program is an important arm of the Nathaniel Christian Church to reach people searching for truth. People interested in the courses send in a registration form, after which they receive their first booklet accompanied by a letter explaining the program. Each booklet has Bible lessons and one to three tests. Students complete the tests, send them back to our office for grading, and then receive a new booklet to work on. The courses, also from Lamp & Light, are translated into the Romanian language. </p>\r\n<p><em>One of the things we focus on,</em> shares CAM Romania staff member Titus Miller, <em>is personal interaction,</em> or <em>\"corresponding\" with our students through additional letters. This has opened doors to minister to the deeper needs of people when they realize it\'s not just a computer processing their work. </em>\r\n</p>\r\n<p>Most of the students are from an evangelical background, although a number of Orthodox, Catholic, Jehovah\'s Witnesses, and Adventists are also enrolled in the program. Titus reported the church has recently increased their efforts to reach people in prison. Extensive correspondence is maintained with these individuals to help develop their spiritual man and prepare them for life outside of prison. </p>\r\n<p><strong>Join us in prayer that, as God\'s Word goes forth through Bible correspondence courses, it might fall on fertile soil and bear much fruit!</strong>\r\n</p>\r\n<p>The <strong>Sponsor-A-Bible-Lesson</strong> program had a $100,000 deficit in 2010, which limits our ability to expand the program although we consider it an important one. If you would like to help this deficit and provide Bible correspondence courses for people in Liberia, Romania, and other countries, below are two ways you can help.</p>',175,30,'2011-08-22 14:58:39','2012-02-16 18:20:25','50,100,250','subtitle',1,1,'25,50,100,250,500,1000','one-time','','SAB',0),(36,'Middle East Ministries','<p>This program helps to provide aid for needy people in the Middle East.</p>','<p>Two years ago a young Palestinian woman\'s husband passed away suddenly and left her with the sole responsibility of caring for her six children. This young woman decided to try baking in her parents\' downstairs living room; her hard work made the business prosper and after a short time her primitive setup needed to be upgraded.</p>\r\n<p>CAM staff in Israel, with supporters\' donations, helped her retrofit a small bakery shop and move out of her parents\' living room. She is very grateful for the assistance that enables her to support her children.</p>',NULL,21,'2011-08-22 15:01:15','2012-02-16 18:20:20','50,100,250,500,1000','',1,1,'25,50,100,250,500,1000','one-time','','MEM',0),(38,'Favorite Stories from the Bible','<p>\r\nThe <strong>Favorite Stories from the Bible</strong> program makes it possible for thousands of people to read the Gospel message through Bible story books. <br />In 2010, supporters provided the funds to print and distribute over 800,000 copies of the <em>101 Favorite Stories from the Bible</em> and the condensed version, <em>25 Favorite Stories from the Bible</em>. The needs are endless.\r\n</p>\r\n','<p>Across the globe there are men, women, and children who don\'t know about Jesus. They don\'t know about His love for them and that He died on the cross to save them from their sins. How will these people learn about Jesus?</p>\r\n<p>A tool numerous missions are using to introduce people to Jesus is CAM\'s Bible story books. Printed in more than forty languages, the simple stories and colorful illustrations spark interest in both children and adults. The books, <em>101 Favorite Stories from the Bible</em> and the condensed version <em>25 Favorite Stories from the Bible,</em> are being distributed in many parts of the world, including some very restricted Muslim and communist countries. Our goal for these books is to whet people\'s appetites for the Bible and reach hearts that might otherwise not be open to the Gospel.</p>\r\n<h2>A million copies in Chinese</h2>\r\n<p>\"Our hearts leaped for joy when we received these precious Bible story books,\" says Sichuan, a mission worker in China. \"Our children\'s ministry workers were so excited to have this tool since it is difficult for us to get Christian children\'s literature. The children take the books home and ask their parents to read to them, which has created a tremendous amount of interest from the parents. Many parents are coming to the Lord. Thank you for blessing us and partnering with our ministry.\"\r\n</p>\r\n<p>Essai, a nine-year-old Chinese boy from the Ban Lung village, was especially impressed with two of the stories. He wrote, <em>The story of creation is amazing because God created everything just by speaking. I also like the story of baby Jesus in the manger because the angel told the shepherds the good news, but they didn\'t believe it. They had to go see for themselves.</em>\r\n</p>\r\n<p>With God\'s blessing and funds from generous supporters, CAM has printed and distributed more than one million <em>25 Favorite Stories from the Bible</em> books in China.</p>\r\n<h2>God\'s salvation plan in Creole</h2>\r\n<p><em>I cannot thank you enough for the Bible story books in Creole, </em>writes a missionary teacher in Haiti.<em> The students at our school will use them this school year for their religion curriculum. What an awesome experience it will be for them to read about God\'s salvation plan in their own language! Thank you so much for helping us to share Christ\'s love with these children.</em>\r\n</p>\r\n<p>In Haiti, China, and many other parts of the world, Bible story books are telling men, women, and children about Jesus. In their own language, they are hearing God\'s salvation plan and how much He loves each person. There is a huge demand for many more copies of <em>101 Favorite Stories from the Bible</em> and <em>25 Favorite Stories from the Bible</em>, and a number more are in the translation process. Please pray with us that the message of Jesus would go forth freely and God\'s name be honored.</p>\r\n<p><strong>Would you like to help us translate, print, and distribute the <em>101 Favorite Stories from the Bible</em> and <em>25 Favorite Stories from the Bible </em>for children all over the world?</strong>\r\n</p>',50,11,'2011-08-22 15:12:22','2012-03-08 20:00:15','50,100,250,500,1000','Telling the stories of Jesus in their language',1,1,'25,50,100,250,500,1000','one-time','','BS',0),(39,'Adopt-A-Family','<p>While the economy in Eastern Europe is improving, families still suffer from extremely low incomes. The <strong>Adopt-A-Family</strong> (AAF) program provides food parcels for needy families in Romania, Moldova, Ukraine, or the Middle East.  Each $69 donation supplies a 50-pound or larger parcel containing basic food and healthcare items and some Christian literature.</p>','<h2>“I still remember the joy”</h2>\r\n<p>Since the early 1980s, many thousands of food parcels have made their way across the Atlantic Ocean, sent by generous sponsors in America. God has used these parcels to answer countless prayers and help relieve the needs of struggling families in Romania, Moldova, Ukraine, and the Middle East.</p>\r\n<p>Lidia Ulici recently wrote to tell us her joyful childhood memories of receiving food parcels during communist days in Romania. She writes: <em>Our family often speaks about the great help we received from Christian Aid Ministries during and after the harsh communist regime. I still remember the joy we felt whenever your driver showed up at our house with food, clothing, and treats for us children. I relive those emotions even as I write this letter. </em>\r\n</p>\r\n<p style=\"font-style: italic;\">We were never allowed to open the parcels until we all got down on our knees and prayed for our sponsor and all who made the blessings possible. Often the parcels would come at the exact times we were most in need and praying for help. I appreciate so much everything you have done and continue to do for those in need.</p>\r\n<p>Although Romania joined the European Union in 2007, the economy did not improve as much as people had hoped. Incomes have stayed low, while the cost of living jumped fifty percent or more. In Eastern Europe, many groceries are twice as expensive as in the United States. For the poorest of the poor, things have improved very little, if at all.</p>\r\n<p>The <strong>Adopt-A-Family</strong> (AAF) food parcel program continues to minister to 3,000 needy families in Romania, Moldova, and Ukraine each month. Supporters’ donations of $69 supply 50-pound or larger parcels containing basic food and healthcare items and some Christian literature. The variety of food in the parcels is more than poor Romanian families can afford to buy; the canned meat is especially a rare treat.</p>\r\n<p>Thank you, supporters, for making a difference for Lidia Ulici and many others throughout the years. Lidia, who now lives in Canada with most of her family, hopes she can someday say a big “thank you” to the people who shared their blessings and sponsored her family through the <strong>Adopt-A-Family</strong> program. She ended her letter with \"God bless you!\" \r\n</p>\r\n\r\n\r\n<span class=\"text-align-right\"></span>\r\n<p><strong>Would you like to help provide food parcels for poor Christian families in Romania, Moldova, and Ukraine?</strong>\r\n</p>',167,0,'2011-08-22 15:19:52','2012-04-04 19:25:50','69,138,345,690,1380','',1,1,'69,138,345,690,1380','one-time','The Krupa children in Ukraine are thankful for the yummy food their mother makes using items from the food parcel. Their father has a part-time construction job, but this income is insufficient for the needs of the family.','AAF',0),(43,'Conflict in Syria Project','<h2>Bloodshed and Terror in Syria</h2>\r\n<p>For seventeen months, violence has raged in Syria as regime forces have tried to extinguish a popular uprising. In July 2012 alone, more than 2,750 people reportedly died in the conflict, bringing the total death toll to an estimated 19,000 since the carnage began. Complete neighborhoods have been indiscriminately targeted for destruction and entire families including helpless children have been slaughtered.</p>','<p>Shocked by the murder of loved ones or terrorized by ongoing neighborhood violence, many Syrians have fled to safety. Thousands of Syrian refugees continue to stream into Jordan, Lebanon, and Turkey bringing little or nothing with them. CAM has been helping grateful Syrian refugees in Jordan and plans to begin a larger scale relief effort. Needy families will receive food and essential items such as mattresses and gas cooking burners.</p>\r\n<br /><br /><br /><br />',466,7,'2012-02-16 18:19:52','2012-07-27 20:31:25','','',0,1,'25,50,100,250,500,1000','one-time','Only one day after arriving in Jordan, this Syrian refugee woman tells the story of her harrowing escape from Syria. Widowed several years ago, she and her children traveled to the Syrian border where they spent five days at the border, sleeping under the trees, before being able to cross from Syria into Jordan. ','ICSY',0),(40,'Nicaragua-Adopt-A-Family','<p>Nicaragua is the second poorest country in the western hemisphere. Eighty percent of the population earns only $3-$4 a day. A $50 donation provides one family with a 45-pound or larger food parcel, and a copy of the <em>Antorcha de la Verdad</em>.</p>','<h2>Nourishment for needy families in Nicaragua</h2>\r\n<p>Jose Antonio Maldonado listens to the rain as it falls softly, thoroughly watering the dry, thirsty ground. It is rainy season in Nicaragua, and the daily afternoon rains have turned the countryside to a lush, tropical green. Jose, his wife Nelys, and their three boys live in an adobe house in the mountains of Nueva Segovia. In this mountainous region north of Managua, the country\'s capital, work is hard to find. Jose is thankful for the forty dollars a month he earns by planting, weeding, or harvesting for local farmers. </p>\r\n<p>Jose and his family have approximately half an acre of land where they grow red beans, corn, and bananas. They depend on a <strong>NAAF</strong> food parcel for basics such as cooking oil, sugar, and rice. The cooking oil is very valuable to Jose\'s family, as it would cost Jose four days\' worth of wages to buy a gallon of oil. Jose and Nelys\'s youngest son suffers from anemia and should have vitamins and iron supplements, but they have no money to purchase them. The vitamins they sometimes receive in the parcels are a tremendous blessing.</p>\r\n<p><img class=\"add-caption\" rel=\"450x450\" alt=\"Nueva Segovia, a very mountainous region, is home to the Maldonado family. No tractors are used in these mountains! All fieldwork is done by hand or with oxen and horses.\" title=\"Nueva Segovia, A Very Mountainous Region, Is Home To The Maldonado Family. No Tractors Are Used In These Mountains! All Fieldwork Is Done By Hand Or With Oxen And Horses.\" src=\"/system/images/BAhbB1sHOgZmSSJQMjAxMS8wOC8yMi8xMV8yNV8yNF80MTZfRmFtaWx5X0Zvb2RfUGFyY2Vsc19mb3JfTmljYXJhZ3VhX2h0bV9tM2E2YWQ1ZmMuanBnBjoGRVRbCDoGcDoKdGh1bWJJIg00NTB4NDUwPgY7BlQ/Family_Food_Parcels_for_Nicaragua_htm_m3a6ad5fc.jpg\" height=\"338\" width=\"450\" /></p>\r\n<h2>Nourishing 800 families each month</h2>\r\n<p>The <strong>NAAF</strong> program helps 750 families each month. To select recipients, CAM staff visits the pastor of a poor community and requests a list of their most needy members. Two of the staff then visits the families to see whether they qualify for the program. When a family meets our qualifications, which include low income, no television, and active church membership, they are signed up to receive a parcel. CAM trucks spend three weeks each month delivering food parcels to various parts of the country, up to two hundred miles from our warehouse in Managua. </p>\r\n<p>In a country of six million people, the <strong>NAAF</strong> parcels help bring hope and nourishment. Each $45 from sponsors provides a 45-pound or larger parcel of food (rice, beans, cooking oil, canned chicken, and more), medicines, healthcare items, and an <em>Antorcha de la Verdad</em> (Torch of Truth) magazine.</p>\r\n<p><strong>Would you like to help provide nourishment for needy Nicaraguan families? </strong>\r\n</p>',53,23,'2011-08-22 15:25:42','2012-05-17 19:42:33','50,100,250,500,1000','',1,1,'25,50,100,250,500,1000','one-time','While two of the Maldonado boys hold soap and canned chicken, the youngest son shows his affection for the food parcel.','NAAF',0),(41,'Rapid Response Disaster Service','<p>After a disaster strikes in the USA, Rapid Response Teams are designed to move into a devastated community within 24 hours to investigate the damage. Rapid Response volunteers then start cleanup within 48 hours or less. Projects include general cleanup, cutting up fallen trees, building storage sheds, and installing tarps on damaged roofs.</p>\r\n<br />','<h2>Storms, storms and more storms!</h2>\r\n<h3>Hackleburg, Alabama</h3>\r\n<p>From April 29-30, 2011, a series of storms and tornadoes ripped through southern USA. Hackleburg, AL, was one of the towns that got caught in the storms. Rapid Response volunteers spent 4,151 hours cleaning up after the storm.</p>\r\n<p>Here are a few pictures of the damage in Hackleburg.</p>\r\n<p><img rel=\"225x255\" alt=\"Rrt2\" title=\"Rrt2\" src=\"/system/images/BAhbBlsHOgZmSSIlMjAxMS8wOS8wOS8xM18zNl80Nl80NThfcnJ0Mi5KUEcGOgZFVA/rrt2.JPG\" height=\"338\" width=\"450\" /><img rel=\"225x255\" alt=\"Rrt1\" title=\"Rrt1\" src=\"/system/images/BAhbBlsHOgZmSSIlMjAxMS8wOS8wOS8xM18zNl80Nl8zMzdfcnJ0MS5KUEcGOgZFVA/rrt1.JPG\" height=\"338\" width=\"450\" /></p>\r\n<p>A volunteer cleaning up debris:</p>\r\n<p><img rel=\"225x255\" alt=\"Rrt3\" title=\"Rrt3\" src=\"/system/images/BAhbBlsHOgZmSSIlMjAxMS8wOS8wOS8xM18zNl80Nl82NDlfcnJ0My5KUEcGOgZFVA/rrt3.JPG\" height=\"338\" width=\"450\" /></p>\r\n<h3>Joplin, Missouri</h3>\r\n<p>On May 22, 2011, a massive category 5 tornado ripped through Joplin, Missouri. The tornado cut a path of destruction 3/4 to a mile wide and nearly 7 miles long within the city limits. Nearly 8,000 structures were estimated to be impacted by the tornado. Many homes, along with churches, schools, businesses and one hospital, were completely destroyed in the wake of the tornado.</p>\r\n<p>Rapid Response volunteers spent a total of 1,532 hours cleaning up debris after the storm.</p>\r\n<p><img rel=\"225x255\" alt=\"Rrt6\" title=\"Rrt6\" src=\"/system/images/BAhbBlsHOgZmSSIlMjAxMS8wOS8wOS8xM180Nl80Ml8zOThfcnJ0Ni5KUEcGOgZFVA/rrt6.JPG\" height=\"338\" width=\"450\" /><img rel=\"225x255\" alt=\"Rrt4\" title=\"Rrt4\" src=\"/system/images/BAhbBlsHOgZmSSIkMjAxMS8wOS8wOS8xM180Nl80Ml84MF9ycnQ0LmpwZwY6BkVU/rrt4.jpg\" height=\"338\" width=\"450\" /><img rel=\"225x255\" alt=\"Rrt5\" title=\"Rrt5\" src=\"/system/images/BAhbBlsHOgZmSSIlMjAxMS8wOS8wOS8xM180Nl80Ml8yMTdfcnJ0NS5qcGcGOgZFVA/rrt5.jpg\" height=\"338\" width=\"450\" /></p>\r\n<h3>Hurricane Irene</h3>\r\n<p>Even though Hurricane Irene didn\'t cause as much damage as weather forecasters predicted, it did cause widespread damage. Thirty-two people lost their lives, and there was widespread flooding especially in New Jersey and Vermont. </p>\r\n\r\n<p>CAM\'s Rapid Response Teams helped victims of Manville, New Jersey, clean up from flood damage caused by the hurricane. Leroy Heatwole, a Rapid Response Team director, when investigating the damage said, \"When we walked through Manville into the flood area with the homeowners who are just returning to their homes; there are a lot of homes flooded, from six inches to all the way to the roof.\"</p>\r\n<p><strong>Comments from storm victims whom Rapid Response Team members helped:</strong>\r\n</p>\r\n<ul><li>“I didn’t know there are still people in America who do this!” –TX</li>\r\n</ul>\r\n<ul><li>The world’s a whole lot better place because of people like you who give real joy and pleasure by the nice things that you do. And with your recent thoughtfulness still very much in mind this is meant to bring a “Thank You” of the very warmest kind. -Manville, NJ</li>\r\n</ul>\r\n<p><strong>From a coordinator to his volunteers before a flood cleanup:</strong>\r\n</p>\r\n<ul><li>“The most important thing is not the soggy furniture you carry out, or the ruined sheetrock you remove. The most important thing you will do today is to touch some life with the love of Christ.\"</li>\r\n</ul>\r\n<p>Please pray for the victims of this disaster and our cleanup teams as they minister to the hurting.</p>',97,24,'2011-09-08 15:24:04','2012-02-21 17:08:45','50,100,250,500,1000','',1,1,'25,50,100,250,500,1000','one-time','','RR',0),(42,'Hope-for-the-Handicapped','<p>In many cultures, people with special needs are pushed aside. Families struggling in poverty and hardship often do not want to be bothered with caring for the handicapped. </p>','<p><strong>Hope-for-the-Handicapped</strong> program helps meet the unique needs of physically and mentally handicapped children and adults in Liberia, Kenya, West Bank/Israel, and other countries. CAM supplies food, wheelchairs, health kits, and other aid to individuals, mental institutions, and homes for the elderly and handicapped.</p>\r\n<p>If you happened to stumble upon a certain small hut in Liberia, you would most likely be greeted by an elderly lady wheeling herself out onto her small porch. Mary Morris, who is seventy-six years old, lives a short distance from the CAM base in Liberia and received a wheelchair through CAM’s <strong>Hope-for-the-Handicapped</strong> program. </p>\r\n<p>A year ago Mary was still healthy and active before her right leg mysteriously swelled to twice its size. Because of delayed medical attention and poor care, her legs are weak and she can no longer stand or walk. When she took her first ride in her new wheelchair, her wrinkled face lit up with delight at her new-found freedom. For handicapped people like Mary, the simple gift of a wheelchair is a special highlight in their otherwise bleak future.</p>',162,15,'2011-12-06 21:28:57','2012-02-16 18:29:50','75,150,300,600','',1,1,'25,50,100,250,500,1000','one-time','Mary in her new wheelchair','HFTH',0),(44,'Winter Emergency in Romania','<p>Record snowfall, strong winds, and extremely cold temperatures have caused the deaths of more than seventy people in Romania and isolated numerous villages. Many roads are closed and over three hundred train routes cancelled. Hundreds of houses are covered in snow. Some people are digging tunnels from their houses to get to their animals. </p>','<p>Our contacts in Romania have information on six hundred families in grave danger from the massive snowfall. They are especially concerned about such people as gypsies who live from day to day on what they can find to survive. Some have died from cold and hunger. </p>',268,38,'2012-02-16 18:24:47','2012-04-04 19:34:00','','',0,1,'25,50,100,250,500,1000','one-time','','WER',1),(45,'Test','<p>This is a test program for internal testing purposes only. </p>\r\n<br />','<p>Test program. </p>\r\n<br />',NULL,34,'2012-04-09 19:00:38','2012-04-10 20:10:38','55,110,165,220','Test',1,1,'25,50,75','one-time','','TEST',1);
/*!40000 ALTER TABLE `programs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `receipts`
--
DROP TABLE IF EXISTS `receipts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `receipts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`invoice_id` int(11) DEFAULT NULL,
`date_to_send` datetime DEFAULT NULL,