-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathholidays.html
1877 lines (1869 loc) · 224 KB
/
holidays.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<link href="calendar.css" rel="stylesheet" type="text/css" title="big calendar" media="all" />
<link href="minicalendar.css" rel="alternate stylesheet" type="text/css" title="mini calendar" media="all" />
<!-- import the DOM logic from external javascript files -->
<script type="text/javascript" src="hcalendar.js"></script>
<script type="text/javascript" src="styleswitcher.js"></script>
<title>js-hcalendar demo, from suda.co.uk holidays</title>
</head>
<body>
<div class="col300 vcalendar">
<a href="http://suda.co.uk/projects/holidays/">borrowed from suda.co.uk</a>
<h1>Lesser Known Holidays</h1>
<p>This is a list of lesser known holidays, it is constantly growing. Hopefully, we can find a holiday for every single day of the year (besides the common bank holidays).</p>
<hr/>
<p>
<a href="#"
onclick="setActiveStyleSheet('big calendar');
return false;">big calendar</a>
<a href="#"
onclick="setActiveStyleSheet('mini calendar');
return false;">mini calendar</a>
</p>
<div id="jhCalendar"></div>
<hr/>
<h1 id="January" title="January">January</h1>
<h2 id="s1-1" title="Saturday, January 1st 2005">Saturday, January 1st 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050101">Saturday, January 1st 2005</abbr> <a class="summary" href="createvcal.php?summary=Z%20Day&description=Everything%20is%20in%20reverse%20alphabetical%20order%20today%2C%20Z%27s%20go%20first%20and%20A%27s%20go%20last&date=20050101&freq=YEARLY&interval=1&bymonth=1" title="Add Z Day to your calendar">Z Day</a></dt>
<dd class="description">Everything is in reverse alphabetical order today, Z's go first and A's go last</dd>
</dl>
<h2 id="s1-2" title="Sunday, January 2nd 2005">Sunday, January 2nd 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050102">Sunday, January 2nd 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Science%20Fiction%20Day&description=Kickback%20and%20watch%20sci-fi%20TV%20all%20day&date=20050102&freq=YEARLY&interval=1&bymonth=1" title="Add National Science Fiction Day to your calendar">National Science Fiction Day</a></dt>
<dd class="description">Kickback and watch sci-fi TV all day</dd>
</dl>
<h2 id="s1-3" title="Monday, January 3rd 2005">Monday, January 3rd 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050103">Monday, January 3rd 2005</abbr> <a class="summary" href="createvcal.php?summary=Drinking%20Straw%20Day&description=Today%20in%201888%20the%20drinking%20straw%20was%20patented%2C%20use%20it%20wisely&date=20050103&freq=YEARLY&interval=1&bymonth=1" title="Add Drinking Straw Day to your calendar">Drinking Straw Day</a></dt>
<dd class="description">Today in 1888 the drinking straw was patented, use it wisely</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050103">Monday, January 3rd 2005</abbr> <a class="summary" href="createvcal.php?summary=Festival%20of%20Sleep%20Day&description=why%20not%20just%20stay%20in%20bed%20today&date=20050103&freq=YEARLY&interval=1&bymonth=1" title="Add Festival of Sleep Day to your calendar">Festival of Sleep Day</a></dt>
<dd class="description">why not just stay in bed today</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050103">Monday, January 3rd 2005</abbr> <a class="summary" href="createvcal.php?summary=Fruitcake%20Toss%20Day&description=We%20are%20going%20for%20distance%20and%20form&date=20050103&freq=YEARLY&interval=1&bymonth=1" title="Add Fruitcake Toss Day to your calendar">Fruitcake Toss Day</a></dt>
<dd class="description">We are going for distance and form</dd>
</dl>
<h2 id="s1-4" title="Tuesday, January 4th 2005">Tuesday, January 4th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050104">Tuesday, January 4th 2005</abbr> <a class="summary" href="createvcal.php?summary=Tenis%20Day&description=Love%20-%2030%2C%20get%20out%20and%20play%20some%20tenis&date=20050104&freq=YEARLY&interval=1&bymonth=1" title="Add Tenis Day to your calendar">Tenis Day</a></dt>
<dd class="description">Love - 30, get out and play some tenis</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050104">Tuesday, January 4th 2005</abbr> <a class="summary" href="createvcal.php?summary=Trivia%20Day&description=Learn%20a%20new%20piece%20of%20trivia%20or%20tell%20someone%20else%20an%20interesting%20fact&date=20050104&freq=YEARLY&interval=1&bymonth=1" title="Add Trivia Day to your calendar">Trivia Day</a></dt>
<dd class="description">Learn a new piece of trivia or tell someone else an interesting fact</dd>
</dl>
<h2 id="s1-5" title="Wednesday, January 5th 2005">Wednesday, January 5th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050105">Wednesday, January 5th 2005</abbr> <a class="summary" href="createvcal.php?summary=Bird%20Day&description=This%20day%20is%20for%20the%20birds&date=20050105&freq=YEARLY&interval=1&bymonth=1" title="Add Bird Day to your calendar">Bird Day</a></dt>
<dd class="description">This day is for the birds</dd>
</dl>
<h2 id="s1-6" title="Thursday, January 6th 2005">Thursday, January 6th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050106">Thursday, January 6th 2005</abbr> <a class="summary" href="createvcal.php?summary=Apple%20Tree%20Day&description=Eat%20an%20apple%20or%20plant%20a%20tree%20today&date=20050106&freq=YEARLY&interval=1&bymonth=1" title="Add Apple Tree Day to your calendar">Apple Tree Day</a></dt>
<dd class="description">Eat an apple or plant a tree today</dd>
</dl>
<h2 id="s1-7" title="Friday, January 7th 2005">Friday, January 7th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050107">Friday, January 7th 2005</abbr> <a class="summary" href="createvcal.php?summary=Dress%20Up%20a%20Pet%20Day&description=&date=20050107&freq=YEARLY&interval=1&bymonth=1" title="Add Dress Up a Pet Day to your calendar">Dress Up a Pet Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s1-8" title="Saturday, January 8th 2005">Saturday, January 8th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050108">Saturday, January 8th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Clean-off-your-desk%20Day&description=take%20some%20time%20out%20and%20get%20organized%20today&date=20050108&freq=YEARLY&interval=1&bymonth=1" title="Add National Clean-off-your-desk Day to your calendar">National Clean-off-your-desk Day</a></dt>
<dd class="description">take some time out and get organized today</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050108">Saturday, January 8th 2005</abbr> <a class="summary" href="createvcal.php?summary=Postal%20Day&description=&date=20050108&freq=YEARLY&interval=1&bymonth=1" title="Add Postal Day to your calendar">Postal Day</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050108">Saturday, January 8th 2005</abbr> <a class="summary" href="createvcal.php?summary=Show%20and%20Tell%20Day%20at%20Work&description=Bring%20something%20to%20work%20today%20to%20show%20your%20friends&date=20050108&freq=YEARLY&interval=1&bymonth=1" title="Add Show and Tell Day at Work to your calendar">Show and Tell Day at Work</a></dt>
<dd class="description">Bring something to work today to show your friends</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050108">Saturday, January 8th 2005</abbr> <a class="summary" href="createvcal.php?summary=World%20Literacy%20Day&description=For%20the%20sake%20of%20the%20world%2C%20read%20today&date=20050108&freq=YEARLY&interval=1&bymonth=1" title="Add World Literacy Day to your calendar">World Literacy Day</a></dt>
<dd class="description">For the sake of the world, read today</dd>
</dl>
<h2 id="s1-9" title="Sunday, January 9th 2005">Sunday, January 9th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050109">Sunday, January 9th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Static%20Electricity%20Day&description=Rub%20a%20ballon%20on%20your%20head%20and%20stick%20it%20to%20the%20wall%20today&date=20050109&freq=YEARLY&interval=1&bymonth=1" title="Add National Static Electricity Day to your calendar">National Static Electricity Day</a></dt>
<dd class="description">Rub a ballon on your head and stick it to the wall today</dd>
</dl>
<h2 id="s1-10" title="Monday, January 10th 2005">Monday, January 10th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050110">Monday, January 10th 2005</abbr> <a class="summary" href="createvcal.php?summary=Volunteer%20Fireman%27s%20Day&description=&date=20050110&freq=YEARLY&interval=1&bymonth=1" title="Add Volunteer Fireman's Day to your calendar">Volunteer Fireman's Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s1-11" title="Tuesday, January 11th 2005">Tuesday, January 11th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050111">Tuesday, January 11th 2005</abbr> <a class="summary" href="createvcal.php?summary=International%20Thank%20You%20Day&description=&date=20050111&freq=YEARLY&interval=1&bymonth=1" title="Add International Thank You Day to your calendar">International Thank You Day</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050111">Tuesday, January 11th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Step%20in%20a%20Puddle%20and%20Splash%20Your%20Friend%20Day&description=Do%20just%20as%20it%20says%2C%20then%20run&date=20050111&freq=YEARLY&interval=1&bymonth=1" title="Add National Step in a Puddle and Splash Your Friend Day to your calendar">National Step in a Puddle and Splash Your Friend Day</a></dt>
<dd class="description">Do just as it says, then run</dd>
</dl>
<h2 id="s1-12" title="Wednesday, January 12th 2005">Wednesday, January 12th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050112">Wednesday, January 12th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Clean%20Off%20Your%20Desk%20Day&description=Take%20some%20time%20today%20and%20clear%20off%20all%20the%20clutter%20on%20your%20desk%2C%20you%27ll%20be%20glad%20you%20did&date=20050112&freq=YEARLY&interval=1&bymonth=1" title="Add National Clean Off Your Desk Day to your calendar">National Clean Off Your Desk Day</a></dt>
<dd class="description">Take some time today and clear off all the clutter on your desk, you'll be glad you did</dd>
</dl>
<h2 id="s1-13" title="Thursday, January 13th 2005">Thursday, January 13th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050113">Thursday, January 13th 2005</abbr> <a class="summary" href="createvcal.php?summary=Bad%20Back%20Day&description=If%20you%20have%20a%20bad%20back%2C%20today%20is%20for%20you&date=20050113&freq=YEARLY&interval=1&bymonth=1" title="Add Bad Back Day to your calendar">Bad Back Day</a></dt>
<dd class="description">If you have a bad back, today is for you</dd>
</dl>
<h2 id="s1-14" title="Friday, January 14th 2005">Friday, January 14th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050114">Friday, January 14th 2005</abbr> <a class="summary" href="createvcal.php?summary=Bald%20Eagle%20Day&description=&date=20050114&freq=YEARLY&interval=1&bymonth=1" title="Add Bald Eagle Day to your calendar">Bald Eagle Day</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050114">Friday, January 14th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Dress%20Up%20Your%20Pet%20Day&description=If%20only%20for%20one%20day%20a%20year%2C%20dress%20your%20pet%20up%20today&date=20050114&freq=YEARLY&interval=1&bymonth=1" title="Add National Dress Up Your Pet Day to your calendar">National Dress Up Your Pet Day</a></dt>
<dd class="description">If only for one day a year, dress your pet up today</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050114">Friday, January 14th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Hot%20Pastrami%20Sandwich%20Day&description=Be%20sure%20it%27s%20a%20Hot%20one&date=20050114&freq=YEARLY&interval=1&bymonth=1" title="Add National Hot Pastrami Sandwich Day to your calendar">National Hot Pastrami Sandwich Day</a></dt>
<dd class="description">Be sure it's a Hot one</dd>
</dl>
<h2 id="s1-15" title="Saturday, January 15th 2005">Saturday, January 15th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050115">Saturday, January 15th 2005</abbr> <a class="summary" href="createvcal.php?summary=Hat%20Day&description=Put%20on%20a%20hat%20today%2C%20preferably%20a%20funny%20one&date=20050115&freq=YEARLY&interval=1&bymonth=1" title="Add Hat Day to your calendar">Hat Day</a></dt>
<dd class="description">Put on a hat today, preferably a funny one</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050115">Saturday, January 15th 2005</abbr> <a class="summary" href="createvcal.php?summary=Personal%20Firewall%20Day&description=crank-up%20ipchains%20and%20firewall%20yourself%20in&date=20050115&freq=YEARLY&interval=1&bymonth=1" title="Add Personal Firewall Day to your calendar">Personal Firewall Day</a></dt>
<dd class="description">crank-up ipchains and firewall yourself in</dd>
</dl>
<h2 id="s1-16" title="Sunday, January 16th 2005">Sunday, January 16th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050116">Sunday, January 16th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Nothing%20Day&description=It%20is%20no%20different%20than%20any%20other%20day&date=20050116&freq=YEARLY&interval=1&bymonth=1" title="Add National Nothing Day to your calendar">National Nothing Day</a></dt>
<dd class="description">It is no different than any other day</dd>
</dl>
<h2 id="s1-17" title="Monday, January 17th 2005">Monday, January 17th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050117">Monday, January 17th 2005</abbr> <a class="summary" href="createvcal.php?summary=Penguin%20Awareness%20Day&description=&date=20050117&freq=YEARLY&interval=1&bymonth=1" title="Add Penguin Awareness Day to your calendar">Penguin Awareness Day</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050117">Monday, January 17th 2005</abbr> <a class="summary" href="createvcal.php?summary=Pig%20Day&description=&date=20050117&freq=YEARLY&interval=1&bymonth=1" title="Add Pig Day to your calendar">Pig Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s1-18" title="Tuesday, January 18th 2005">Tuesday, January 18th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050118">Tuesday, January 18th 2005</abbr> <a class="summary" href="createvcal.php?summary=Jazz%20Day&description=Put%20on%20that%20Jazz%20CD%20or%20listen%20to%20jazz%20radio%20today&date=20050118&freq=YEARLY&interval=1&bymonth=1" title="Add Jazz Day to your calendar">Jazz Day</a></dt>
<dd class="description">Put on that Jazz CD or listen to jazz radio today</dd>
</dl>
<h2 id="s1-19" title="Wednesday, January 19th 2005">Wednesday, January 19th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050119">Wednesday, January 19th 2005</abbr> <a class="summary" href="createvcal.php?summary=Archery%20Day&description=Bull%27s%20Eye%21&date=20050119&freq=YEARLY&interval=1&bymonth=1" title="Add Archery Day to your calendar">Archery Day</a></dt>
<dd class="description">Bull's Eye!</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050119">Wednesday, January 19th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Popcorn%20Day&description=If%20you%20like%20them%20salted%20or%20sugared%2C%20with%20or%20without%20butter%2C%20pop%20some%20popcorn%20today&date=20050119&freq=YEARLY&interval=1&bymonth=1" title="Add National Popcorn Day to your calendar">National Popcorn Day</a></dt>
<dd class="description">If you like them salted or sugared, with or without butter, pop some popcorn today</dd>
</dl>
<h2 id="s1-20" title="Thursday, January 20th 2005">Thursday, January 20th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050120">Thursday, January 20th 2005</abbr> <a class="summary" href="createvcal.php?summary=Basketball%20Day&description=Play%20around%20of%20basketball%20today%2C%20possibly%20at%20midnight&date=20050120&freq=YEARLY&interval=1&bymonth=1" title="Add Basketball Day to your calendar">Basketball Day</a></dt>
<dd class="description">Play around of basketball today, possibly at midnight</dd>
</dl>
<h2 id="s1-21" title="Friday, January 21st 2005">Friday, January 21st 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050121">Friday, January 21st 2005</abbr> <a class="summary" href="createvcal.php?summary=Granola%20Bar%20Day&description=&date=20050121&freq=YEARLY&interval=1&bymonth=1" title="Add Granola Bar Day to your calendar">Granola Bar Day</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050121">Friday, January 21st 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Hugging%20Day&description=Give%20some%20one%20a%20Hug%20today&date=20050121&freq=YEARLY&interval=1&bymonth=1" title="Add National Hugging Day to your calendar">National Hugging Day</a></dt>
<dd class="description">Give some one a Hug today</dd>
</dl>
<h2 id="s1-22" title="Saturday, January 22nd 2005">Saturday, January 22nd 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050122">Saturday, January 22nd 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Blonde%20Brownie%20Day&description=&date=20050122&freq=YEARLY&interval=1&bymonth=1" title="Add National Blonde Brownie Day to your calendar">National Blonde Brownie Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s1-23" title="Sunday, January 23rd 2005">Sunday, January 23rd 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050123">Sunday, January 23rd 2005</abbr> <a class="summary" href="createvcal.php?summary=Measure%20Your%20Feet%20Day&description=inches%20or%20centimeters%2C%20how%20big%20are%20your%20feet%3F&date=20050123&freq=YEARLY&interval=1&bymonth=1" title="Add Measure Your Feet Day to your calendar">Measure Your Feet Day</a></dt>
<dd class="description">inches or centimeters, how big are your feet?</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050123">Sunday, January 23rd 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Handwritting%20Day&description=Why%20typewrite%20when%20you%20can%20handwrite&date=20050123&freq=YEARLY&interval=1&bymonth=1" title="Add National Handwritting Day to your calendar">National Handwritting Day</a></dt>
<dd class="description">Why typewrite when you can handwrite</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050123">Sunday, January 23rd 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Pie%20Day&description=&date=20050123&freq=YEARLY&interval=1&bymonth=1" title="Add National Pie Day to your calendar">National Pie Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s1-24" title="Monday, January 24th 2005">Monday, January 24th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050124">Monday, January 24th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Peanut%20Butter%20Day&description=There%20are%20over%20100%20different%20uses%20for%20peanut%20butter%2C%20use%20at%20least%20one%20today&date=20050124&freq=YEARLY&interval=1&bymonth=1" title="Add National Peanut Butter Day to your calendar">National Peanut Butter Day</a></dt>
<dd class="description">There are over 100 different uses for peanut butter, use at least one today</dd>
</dl>
<h2 id="s1-25" title="Tuesday, January 25th 2005">Tuesday, January 25th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050125">Tuesday, January 25th 2005</abbr> <a class="summary" href="createvcal.php?summary=Burns%20Night&description=Eat%20some%20haggis%2C%20recite%20some%20poems%2C%20and%20have%20a%20wee%20nip%20of%20scotch&date=20050125&freq=YEARLY&interval=1&bymonth=1" title="Add Burns Night to your calendar">Burns Night</a></dt>
<dd class="description">Eat some haggis, recite some poems, and have a wee nip of scotch</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050125">Tuesday, January 25th 2005</abbr> <a class="summary" href="createvcal.php?summary=Opposite%20Day&description=Do%20the%20opposite%20of%20what%20you%27re%20told%20today&date=20050125&freq=YEARLY&interval=1&bymonth=1" title="Add Opposite Day to your calendar">Opposite Day</a></dt>
<dd class="description">Do the opposite of what you're told today</dd>
</dl>
<h2 id="s1-26" title="Wednesday, January 26th 2005">Wednesday, January 26th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050126">Wednesday, January 26th 2005</abbr> <a class="summary" href="createvcal.php?summary=Spouse%27s%20Day&description=&date=20050126&freq=YEARLY&interval=1&bymonth=1" title="Add Spouse's Day to your calendar">Spouse's Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s1-27" title="Thursday, January 27th 2005">Thursday, January 27th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050127">Thursday, January 27th 2005</abbr> <a class="summary" href="createvcal.php?summary=Thomas%20Crapper%20Day&description=This%20day%20honors%20quite%20possibly%20the%20greatest%20plumber%20ever&date=20050127&freq=YEARLY&interval=1&bymonth=1" title="Add Thomas Crapper Day to your calendar">Thomas Crapper Day</a></dt>
<dd class="description">This day honors quite possibly the greatest plumber ever</dd>
</dl>
<h2 id="s1-28" title="Friday, January 28th 2005">Friday, January 28th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050128">Friday, January 28th 2005</abbr> <a class="summary" href="createvcal.php?summary=Daisy%20Day&description=&date=20050128&freq=YEARLY&interval=1&bymonth=1" title="Add Daisy Day to your calendar">Daisy Day</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050128">Friday, January 28th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Kazoo%20Day&description=get%20the%20Kazoo%20out%20and%20just%20break%20into%20song&date=20050128&freq=YEARLY&interval=1&bymonth=1" title="Add National Kazoo Day to your calendar">National Kazoo Day</a></dt>
<dd class="description">get the Kazoo out and just break into song</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050128">Friday, January 28th 2005</abbr> <a class="summary" href="createvcal.php?summary=Rattle%20Snake%20Round-Up%20Day&description=Breakout%20the%20whacking%20sticks%20and%20round-up%20all%20those%20Rattlers&date=20050128&freq=YEARLY&interval=1&bymonth=1" title="Add Rattle Snake Round-Up Day to your calendar">Rattle Snake Round-Up Day</a></dt>
<dd class="description">Breakout the whacking sticks and round-up all those Rattlers</dd>
</dl>
<h2 id="s1-29" title="Saturday, January 29th 2005">Saturday, January 29th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050129">Saturday, January 29th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Puzzle%20Day&description=&date=20050129&freq=YEARLY&interval=1&bymonth=1" title="Add National Puzzle Day to your calendar">National Puzzle Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s1-30" title="Sunday, January 30th 2005">Sunday, January 30th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050130">Sunday, January 30th 2005</abbr> <a class="summary" href="createvcal.php?summary=Inane%20Answering%20Machine%20Day&description=Leave%20a%20message%20at%20the%20beep%2C%20BEEP%21&date=20050130&freq=YEARLY&interval=1&bymonth=1" title="Add Inane Answering Machine Day to your calendar">Inane Answering Machine Day</a></dt>
<dd class="description">Leave a message at the beep, BEEP!</dd>
</dl>
<h2 id="s1-31" title="Monday, January 31st 2005">Monday, January 31st 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050131">Monday, January 31st 2005</abbr> <a class="summary" href="createvcal.php?summary=Escape%20Day&description=Escape%20from%20something%20today&date=20050131&freq=YEARLY&interval=1&bymonth=1" title="Add Escape Day to your calendar">Escape Day</a></dt>
<dd class="description">Escape from something today</dd>
</dl>
<h1 id="February" title="February">February</h1>
<h2 id="s2-1" title="Tuesday, February 1st 2005">Tuesday, February 1st 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050201">Tuesday, February 1st 2005</abbr> <a class="summary" href="createvcal.php?summary=Robinson%20Crusoe%20Day&description=Pretend%20you%20are%20stranded%20on%20an%20island%20today&date=20050201&freq=YEARLY&interval=1&bymonth=2" title="Add Robinson Crusoe Day to your calendar">Robinson Crusoe Day</a></dt>
<dd class="description">Pretend you are stranded on an island today</dd>
</dl>
<h2 id="s2-2" title="Wednesday, February 2nd 2005">Wednesday, February 2nd 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050202">Wednesday, February 2nd 2005</abbr> <a class="summary" href="createvcal.php?summary=Frozen%20Food&description=It%20if%20wasn%27t%20once%20frozen%2C%20don%27t%20bother%20eating%20it%20today&date=20050202&freq=YEARLY&interval=1&bymonth=2" title="Add Frozen Food to your calendar">Frozen Food</a></dt>
<dd class="description">It if wasn't once frozen, don't bother eating it today</dd>
</dl>
<h2 id="s2-4" title="Friday, February 4th 2005">Friday, February 4th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050204">Friday, February 4th 2005</abbr> <a class="summary" href="createvcal.php?summary=Thank%20a%20Mailman%20Day&description=&date=20050204&freq=YEARLY&interval=1&bymonth=2" title="Add Thank a Mailman Day to your calendar">Thank a Mailman Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s2-5" title="Saturday, February 5th 2005">Saturday, February 5th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050205">Saturday, February 5th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Weatherperson%27s%20Day&description=Thank%20your%20weatherperson%20for%20all%20their%20prediction&date=20050205&freq=YEARLY&interval=1&bymonth=2" title="Add National Weatherperson's Day to your calendar">National Weatherperson's Day</a></dt>
<dd class="description">Thank your weatherperson for all their prediction</dd>
</dl>
<h2 id="s2-6" title="Sunday, February 6th 2005">Sunday, February 6th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050206">Sunday, February 6th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Frozen%20Yogurt%20Day&description=Go%20for%20the%20healthy%20alternative%2C%20go%20for%20yogurt%20today&date=20050206&freq=YEARLY&interval=1&bymonth=2" title="Add National Frozen Yogurt Day to your calendar">National Frozen Yogurt Day</a></dt>
<dd class="description">Go for the healthy alternative, go for yogurt today</dd>
</dl>
<h2 id="s2-7" title="Monday, February 7th 2005">Monday, February 7th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050207">Monday, February 7th 2005</abbr> <a class="summary" href="createvcal.php?summary=Charles%20Dickens%20Day&description=Why%20not%20start%20a%20Dickens%20Novel%20today&date=20050207&freq=YEARLY&interval=1&bymonth=2" title="Add Charles Dickens Day to your calendar">Charles Dickens Day</a></dt>
<dd class="description">Why not start a Dickens Novel today</dd>
</dl>
<h2 id="s2-8" title="Tuesday, February 8th 2005">Tuesday, February 8th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050208">Tuesday, February 8th 2005</abbr> <a class="summary" href="createvcal.php?summary=Kite%20Flying%20Day&description=Get%20outside%20and%20fly%20a%20Kite%20today.&date=20050208&freq=YEARLY&interval=1&bymonth=2" title="Add Kite Flying Day to your calendar">Kite Flying Day</a></dt>
<dd class="description">Get outside and fly a Kite today.</dd>
</dl>
<h2 id="s2-9" title="Wednesday, February 9th 2005">Wednesday, February 9th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050209">Wednesday, February 9th 2005</abbr> <a class="summary" href="createvcal.php?summary=Toothache%20Day&description=Not%20sure%20you%20really%20want%20to%20celebrate%20this%20one%21&date=20050209&freq=YEARLY&interval=1&bymonth=2" title="Add Toothache Day to your calendar">Toothache Day</a></dt>
<dd class="description">Not sure you really want to celebrate this one!</dd>
</dl>
<h2 id="s2-10" title="Thursday, February 10th 2005">Thursday, February 10th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050210">Thursday, February 10th 2005</abbr> <a class="summary" href="createvcal.php?summary=Umbrella%20Day&description=Don%27t%20forget%20your%20umbrella%20rain%20or%20shine%2C%20you%27ll%20need%20it%20today&date=20050210&freq=YEARLY&interval=1&bymonth=2" title="Add Umbrella Day to your calendar">Umbrella Day</a></dt>
<dd class="description">Don't forget your umbrella rain or shine, you'll need it today</dd>
</dl>
<h2 id="s2-11" title="Friday, February 11th 2005">Friday, February 11th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050211">Friday, February 11th 2005</abbr> <a class="summary" href="createvcal.php?summary=Don%27t%20Cry%20Over%20Spilled%20Milk%20Day&description=Don%27t%20do%20it%21%20atleast%20not%20today&date=20050211&freq=YEARLY&interval=1&bymonth=2" title="Add Don't Cry Over Spilled Milk Day to your calendar">Don't Cry Over Spilled Milk Day</a></dt>
<dd class="description">Don't do it! atleast not today</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050211">Friday, February 11th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Inventor%27s%20Day&description=If%20you%20have%20an%20idea%2C%20don%27t%20tell%20anyone%2C%20today%20everyone%20is%20trying%20to%20invent%20something&date=20050211&freq=YEARLY&interval=1&bymonth=2" title="Add National Inventor's Day to your calendar">National Inventor's Day</a></dt>
<dd class="description">If you have an idea, don't tell anyone, today everyone is trying to invent something</dd>
</dl>
<h2 id="s2-12" title="Saturday, February 12th 2005">Saturday, February 12th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050212">Saturday, February 12th 2005</abbr> <a class="summary" href="createvcal.php?summary=Darwin%20Day&description=He%20gave%20us%20the%20theory%20of%20evolution%2C%20today%20is%20his%20special%20day&date=20050212&freq=YEARLY&interval=1&bymonth=2" title="Add Darwin Day to your calendar">Darwin Day</a></dt>
<dd class="description">He gave us the theory of evolution, today is his special day</dd>
</dl>
<h2 id="s2-13" title="Sunday, February 13th 2005">Sunday, February 13th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050213">Sunday, February 13th 2005</abbr> <a class="summary" href="createvcal.php?summary=Get%20a%20Different%20Name%20Day&description=Bill%2C%20Jane%2C%20Nick%2C%20or%20anything%20you%20like...&date=20050213&freq=YEARLY&interval=1&bymonth=2" title="Add Get a Different Name Day to your calendar">Get a Different Name Day</a></dt>
<dd class="description">Bill, Jane, Nick, or anything you like...</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050213">Sunday, February 13th 2005</abbr> <a class="summary" href="createvcal.php?summary=Stamp%20Collectors%20Day&description=&date=20050213&freq=YEARLY&interval=1&bymonth=2" title="Add Stamp Collectors Day to your calendar">Stamp Collectors Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s2-14" title="Monday, February 14th 2005">Monday, February 14th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050214">Monday, February 14th 2005</abbr> <a class="summary" href="createvcal.php?summary=Ferris%20Wheel%20Day&description=If%20you%20can%20get%20on%20a%20Ferris%20Wheel%20and%20enjoy%20the%20ride&date=20050214&freq=YEARLY&interval=1&bymonth=2" title="Add Ferris Wheel Day to your calendar">Ferris Wheel Day</a></dt>
<dd class="description">If you can get on a Ferris Wheel and enjoy the ride</dd>
</dl>
<h2 id="s2-17" title="Thursday, February 17th 2005">Thursday, February 17th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050217">Thursday, February 17th 2005</abbr> <a class="summary" href="createvcal.php?summary=Champion%20Crab%20Races%20Day&description=Gather-up%20everyone%20you%20know%20and%20race%20your%20friends%20on%20your%20hands%20and%20knees&date=20050217&freq=YEARLY&interval=1&bymonth=2" title="Add Champion Crab Races Day to your calendar">Champion Crab Races Day</a></dt>
<dd class="description">Gather-up everyone you know and race your friends on your hands and knees</dd>
</dl>
<h2 id="s2-18" title="Friday, February 18th 2005">Friday, February 18th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050218">Friday, February 18th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Battery%20Day&description=clean%20out%20that%20draw%20full%20of%20batteries%2C%20test-em%2C%20recharge-em%2C%20or%20send%20them%20to%20the%20recycler&date=20050218&freq=YEARLY&interval=1&bymonth=2" title="Add National Battery Day to your calendar">National Battery Day</a></dt>
<dd class="description">clean out that draw full of batteries, test-em, recharge-em, or send them to the recycler</dd>
</dl>
<h2 id="s2-21" title="Monday, February 21st 2005">Monday, February 21st 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050221">Monday, February 21st 2005</abbr> <a class="summary" href="createvcal.php?summary=International%20Mother%20Language%20Day&description=Speak%20only%20in%20your%20native%20tonge%20today&date=20050221&freq=YEARLY&interval=1&bymonth=2" title="Add International Mother Language Day to your calendar">International Mother Language Day</a></dt>
<dd class="description">Speak only in your native tonge today</dd>
</dl>
<h2 id="s2-22" title="Tuesday, February 22nd 2005">Tuesday, February 22nd 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050222">Tuesday, February 22nd 2005</abbr> <a class="summary" href="createvcal.php?summary=Thinking%20Day&description=&date=20050222&freq=YEARLY&interval=1&bymonth=2" title="Add Thinking Day to your calendar">Thinking Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s2-23" title="Wednesday, February 23rd 2005">Wednesday, February 23rd 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050223">Wednesday, February 23rd 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Dog%20Biscuit%20Day&description=Not%20for%20you%2C%20but%20for%20the%20dog&date=20050223&freq=YEARLY&interval=1&bymonth=2" title="Add National Dog Biscuit Day to your calendar">National Dog Biscuit Day</a></dt>
<dd class="description">Not for you, but for the dog</dd>
</dl>
<h2 id="s2-24" title="Thursday, February 24th 2005">Thursday, February 24th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050224">Thursday, February 24th 2005</abbr> <a class="summary" href="createvcal.php?summary=International%20Pancake%20Day&description=Today%20the%20world%20dines%20on%20Pancakes&date=20050224&freq=YEARLY&interval=1&bymonth=2" title="Add International Pancake Day to your calendar">International Pancake Day</a></dt>
<dd class="description">Today the world dines on Pancakes</dd>
</dl>
<h2 id="s2-25" title="Friday, February 25th 2005">Friday, February 25th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050225">Friday, February 25th 2005</abbr> <a class="summary" href="createvcal.php?summary=Go%20Bowling%20Day&description=Practice%20that%207-10%20split%20today&date=20050225&freq=YEARLY&interval=1&bymonth=2" title="Add Go Bowling Day to your calendar">Go Bowling Day</a></dt>
<dd class="description">Practice that 7-10 split today</dd>
</dl>
<h2 id="s2-26" title="Saturday, February 26th 2005">Saturday, February 26th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050226">Saturday, February 26th 2005</abbr> <a class="summary" href="createvcal.php?summary=International%20Very%20Good%20Looking%20Smart%20People%20Day&description=&date=20050226&freq=YEARLY&interval=1&bymonth=2" title="Add International Very Good Looking Smart People Day to your calendar">International Very Good Looking Smart People Day</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050226">Saturday, February 26th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Pistachio%20Day&description=Go%20nuts%20today%20eating%20pistachios&date=20050226&freq=YEARLY&interval=1&bymonth=2" title="Add National Pistachio Day to your calendar">National Pistachio Day</a></dt>
<dd class="description">Go nuts today eating pistachios</dd>
</dl>
<h2 id="s2-27" title="Sunday, February 27th 2005">Sunday, February 27th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050227">Sunday, February 27th 2005</abbr> <a class="summary" href="createvcal.php?summary=International%20Polar%20Bear%20Day&description=If%20you%27re%20a%20polar%20bear%2C%20you%20know%20what%20to%20do&date=20050227&freq=YEARLY&interval=1&bymonth=2" title="Add International Polar Bear Day to your calendar">International Polar Bear Day</a></dt>
<dd class="description">If you're a polar bear, you know what to do</dd>
</dl>
<h2 id="s2-28" title="Monday, February 28th 2005">Monday, February 28th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050228">Monday, February 28th 2005</abbr> <a class="summary" href="createvcal.php?summary=Public%20Sleeping%20Day&description=A%20public%20holiday%20devoted%20to%20sleeping&date=20050228&freq=YEARLY&interval=1&bymonth=2" title="Add Public Sleeping Day to your calendar">Public Sleeping Day</a></dt>
<dd class="description">A public holiday devoted to sleeping</dd>
</dl>
<h2 id="s2-29" title="Tuesday, March 1st 2005">Tuesday, March 1st 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050301">Tuesday, March 1st 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Surf%20and%20Turf%20Day&description=This%20only%20happens%20every%20fourth%20year%2C%20so%20enjoy%20the%20surf%20and%20the%20turf&date=20050301&freq=YEARLY&interval=1&bymonth=2" title="Add National Surf and Turf Day to your calendar">National Surf and Turf Day</a></dt>
<dd class="description">This only happens every fourth year, so enjoy the surf and the turf</dd>
</dl>
<h1 id="March" title="March">March</h1>
<h2 id="s3-1" title="Tuesday, March 1st 2005">Tuesday, March 1st 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050301">Tuesday, March 1st 2005</abbr> <a class="summary" href="createvcal.php?summary=International%20Day%20of%20the%20Seal&description=&date=20050301&freq=YEARLY&interval=1&bymonth=3" title="Add International Day of the Seal to your calendar">International Day of the Seal</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050301">Tuesday, March 1st 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Pig%20Day&description=Think%20Pig%20today&date=20050301&freq=YEARLY&interval=1&bymonth=3" title="Add National Pig Day to your calendar">National Pig Day</a></dt>
<dd class="description">Think Pig today</dd>
</dl>
<h2 id="s3-2" title="Wednesday, March 2nd 2005">Wednesday, March 2nd 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050302">Wednesday, March 2nd 2005</abbr> <a class="summary" href="createvcal.php?summary=Old%20Stuff%20Day&description=&date=20050302&freq=YEARLY&interval=1&bymonth=3" title="Add Old Stuff Day to your calendar">Old Stuff Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s3-3" title="Thursday, March 3rd 2005">Thursday, March 3rd 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050303">Thursday, March 3rd 2005</abbr> <a class="summary" href="createvcal.php?summary=What%20if%20Cats%20and%20Dogs%20has%20opposable%20Thumbs%20day&description=We%27re%20all%20introuble%21&date=20050303&freq=YEARLY&interval=1&bymonth=3" title="Add What if Cats and Dogs has opposable Thumbs day to your calendar">What if Cats and Dogs has opposable Thumbs day</a></dt>
<dd class="description">We're all introuble!</dd>
</dl>
<h2 id="s3-5" title="Saturday, March 5th 2005">Saturday, March 5th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050305">Saturday, March 5th 2005</abbr> <a class="summary" href="createvcal.php?summary=Bridge%20Players%20Day&description=&date=20050305&freq=YEARLY&interval=1&bymonth=3" title="Add Bridge Players Day to your calendar">Bridge Players Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s3-6" title="Sunday, March 6th 2005">Sunday, March 6th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050306">Sunday, March 6th 2005</abbr> <a class="summary" href="createvcal.php?summary=International%20Book%20Day&description=Start%20reading%20a%20book%20today.&date=20050306&freq=YEARLY&interval=1&bymonth=3" title="Add International Book Day to your calendar">International Book Day</a></dt>
<dd class="description">Start reading a book today.</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050306">Sunday, March 6th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Frozen%20Food%20Day&description=don%27t%20plan%20on%20cooking%20today%2C%20just%20defrost.&date=20050306&freq=YEARLY&interval=1&bymonth=3" title="Add National Frozen Food Day to your calendar">National Frozen Food Day</a></dt>
<dd class="description">don't plan on cooking today, just defrost.</dd>
</dl>
<h2 id="s3-7" title="Monday, March 7th 2005">Monday, March 7th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050307">Monday, March 7th 2005</abbr> <a class="summary" href="createvcal.php?summary=Namesake%20Day&description=Search%20out%20someone%20with%20the%20same%20name%20as%20you%2C%20and%20if%20that%27s%20too%20hard%2C%20try%20for%20initials&date=20050307&freq=YEARLY&interval=1&bymonth=3" title="Add Namesake Day to your calendar">Namesake Day</a></dt>
<dd class="description">Search out someone with the same name as you, and if that's too hard, try for initials</dd>
</dl>
<h2 id="s3-8" title="Tuesday, March 8th 2005">Tuesday, March 8th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050308">Tuesday, March 8th 2005</abbr> <a class="summary" href="createvcal.php?summary=Farmer%27s%20Day&description=If%20you%20are%20a%20farmer%2C%20today%20is%20your%20day&date=20050308&freq=YEARLY&interval=1&bymonth=3" title="Add Farmer's Day to your calendar">Farmer's Day</a></dt>
<dd class="description">If you are a farmer, today is your day</dd>
</dl>
<h2 id="s3-9" title="Wednesday, March 9th 2005">Wednesday, March 9th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050309">Wednesday, March 9th 2005</abbr> <a class="summary" href="createvcal.php?summary=Unique%20Names%20Day&description=Give%20yourself%20a%20unique%20name%20today&date=20050309&freq=YEARLY&interval=1&bymonth=3" title="Add Unique Names Day to your calendar">Unique Names Day</a></dt>
<dd class="description">Give yourself a unique name today</dd>
</dl>
<h2 id="s3-10" title="Thursday, March 10th 2005">Thursday, March 10th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050310">Thursday, March 10th 2005</abbr> <a class="summary" href="createvcal.php?summary=Raven%20Legend%20Day&description=&date=20050310&freq=YEARLY&interval=1&bymonth=3" title="Add Raven Legend Day to your calendar">Raven Legend Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s3-11" title="Friday, March 11th 2005">Friday, March 11th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050311">Friday, March 11th 2005</abbr> <a class="summary" href="createvcal.php?summary=Johnny%20Appleseed%20Day&description=Eat%20an%20apple%20or%20plan%20an%20apple%20seed%20for%20one%20of%20america%27s%20greatest%20folk%20legends.&date=20050311&freq=YEARLY&interval=1&bymonth=3" title="Add Johnny Appleseed Day to your calendar">Johnny Appleseed Day</a></dt>
<dd class="description">Eat an apple or plan an apple seed for one of america's greatest folk legends.</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050311">Friday, March 11th 2005</abbr> <a class="summary" href="createvcal.php?summary=Nametag%20Day&description=Put%20on%20a%20nametag%20today%20and%20write%20any%20name%20you%20want%20on%20it&date=20050311&freq=YEARLY&interval=1&bymonth=3" title="Add Nametag Day to your calendar">Nametag Day</a></dt>
<dd class="description">Put on a nametag today and write any name you want on it</dd>
</dl>
<h2 id="s3-12" title="Saturday, March 12th 2005">Saturday, March 12th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050312">Saturday, March 12th 2005</abbr> <a class="summary" href="createvcal.php?summary=Middle%20Name%20Pride%20Day&description=Take%20pride%20in%20your%20middle%20name%20and%20if%20you%20don%27t%20have%20one%2C%20make%20one%20up&date=20050312&freq=YEARLY&interval=1&bymonth=3" title="Add Middle Name Pride Day to your calendar">Middle Name Pride Day</a></dt>
<dd class="description">Take pride in your middle name and if you don't have one, make one up</dd>
</dl>
<h2 id="s3-13" title="Sunday, March 13th 2005">Sunday, March 13th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050313">Sunday, March 13th 2005</abbr> <a class="summary" href="createvcal.php?summary=Genealogy%20Day&description=Take%20some%20time%20out%20and%20remember%20your%20ansetors&date=20050313&freq=YEARLY&interval=1&bymonth=3" title="Add Genealogy Day to your calendar">Genealogy Day</a></dt>
<dd class="description">Take some time out and remember your ansetors</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050313">Sunday, March 13th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Open%20An%20Umbrella%20Indoors%20Day&description=It%20is%20not%20bad%20luck%20to%20open%20an%20Umbrella%20indoors%2C%20as%20long%20as%20its%20today&date=20050313&freq=YEARLY&interval=1&bymonth=3" title="Add National Open An Umbrella Indoors Day to your calendar">National Open An Umbrella Indoors Day</a></dt>
<dd class="description">It is not bad luck to open an Umbrella indoors, as long as its today</dd>
</dl>
<h2 id="s3-14" title="Monday, March 14th 2005">Monday, March 14th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050314">Monday, March 14th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Potato%20Chip%20Day&description=Wonder%20in%20awe%20of%20the%20variety%20of%20flavours%20of%20potato%20chips&date=20050314&freq=YEARLY&interval=1&bymonth=3" title="Add National Potato Chip Day to your calendar">National Potato Chip Day</a></dt>
<dd class="description">Wonder in awe of the variety of flavours of potato chips</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050314">Monday, March 14th 2005</abbr> <a class="summary" href="createvcal.php?summary=Pi%20Day&description=The%203rd%20month%20and%2014th%20day%2C%20celebrate%20Pi&date=20050314&freq=YEARLY&interval=1&bymonth=3" title="Add Pi Day to your calendar">Pi Day</a></dt>
<dd class="description">The 3rd month and 14th day, celebrate Pi</dd>
</dl>
<h2 id="s3-15" title="Tuesday, March 15th 2005">Tuesday, March 15th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050315">Tuesday, March 15th 2005</abbr> <a class="summary" href="createvcal.php?summary=Brutus%20Day&description=Beware%20of%20the%20Ides%20of%20march&date=20050315&freq=YEARLY&interval=1&bymonth=3" title="Add Brutus Day to your calendar">Brutus Day</a></dt>
<dd class="description">Beware of the Ides of march</dd>
</dl>
<h2 id="s3-16" title="Wednesday, March 16th 2005">Wednesday, March 16th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050316">Wednesday, March 16th 2005</abbr> <a class="summary" href="createvcal.php?summary=Buzzard%20Day&description=&date=20050316&freq=YEARLY&interval=1&bymonth=3" title="Add Buzzard Day to your calendar">Buzzard Day</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050316">Wednesday, March 16th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Artichoke%20Hearts%20Day&description=Everyday%20is%20for%20the%20Artichoke%2C%20but%20today%20is%20just%20for%20its%20heart&date=20050316&freq=YEARLY&interval=1&bymonth=3" title="Add National Artichoke Hearts Day to your calendar">National Artichoke Hearts Day</a></dt>
<dd class="description">Everyday is for the Artichoke, but today is just for its heart</dd>
</dl>
<h2 id="s3-17" title="Thursday, March 17th 2005">Thursday, March 17th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050317">Thursday, March 17th 2005</abbr> <a class="summary" href="createvcal.php?summary=Submarine%20Day&description=&date=20050317&freq=YEARLY&interval=1&bymonth=3" title="Add Submarine Day to your calendar">Submarine Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s3-18" title="Friday, March 18th 2005">Friday, March 18th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050318">Friday, March 18th 2005</abbr> <a class="summary" href="createvcal.php?summary=Spacewalk%20Day&description=If%20given%20the%20opportunity%20to%20spacewalk%20today%2C%20don%27t%20turn%20it%20down&date=20050318&freq=YEARLY&interval=1&bymonth=3" title="Add Spacewalk Day to your calendar">Spacewalk Day</a></dt>
<dd class="description">If given the opportunity to spacewalk today, don't turn it down</dd>
</dl>
<h2 id="s3-19" title="Saturday, March 19th 2005">Saturday, March 19th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050319">Saturday, March 19th 2005</abbr> <a class="summary" href="createvcal.php?summary=Poultry%20Day&description=Eat%20more%20Chicken&date=20050319&freq=YEARLY&interval=1&bymonth=3" title="Add Poultry Day to your calendar">Poultry Day</a></dt>
<dd class="description">Eat more Chicken</dd>
</dl>
<h2 id="s3-20" title="Sunday, March 20th 2005">Sunday, March 20th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050320">Sunday, March 20th 2005</abbr> <a class="summary" href="createvcal.php?summary=Great%20American%20Meat%20Out%20Day&description=For%20one%20day%20a%20year%20try%20to%20avoid%20eating%20meat%20today.&date=20050320&freq=YEARLY&interval=1&bymonth=3" title="Add Great American Meat Out Day to your calendar">Great American Meat Out Day</a></dt>
<dd class="description">For one day a year try to avoid eating meat today.</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050320">Sunday, March 20th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Agriculture%20Day&description=&date=20050320&freq=YEARLY&interval=1&bymonth=3" title="Add National Agriculture Day to your calendar">National Agriculture Day</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050320">Sunday, March 20th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Quilting%20Day&description=Why%20not%20work%20on%20that%20square%20of%20the%20family%20quilt%20you%27d%20promised%20you%27d%20have%20ready%20for%20last%20year%3F&date=20050320&freq=YEARLY&interval=1&bymonth=3" title="Add National Quilting Day to your calendar">National Quilting Day</a></dt>
<dd class="description">Why not work on that square of the family quilt you'd promised you'd have ready for last year?</dd>
</dl>
<h2 id="s3-21" title="Monday, March 21st 2005">Monday, March 21st 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050321">Monday, March 21st 2005</abbr> <a class="summary" href="createvcal.php?summary=Flower%20Day&description=&date=20050321&freq=YEARLY&interval=1&bymonth=3" title="Add Flower Day to your calendar">Flower Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s3-22" title="Tuesday, March 22nd 2005">Tuesday, March 22nd 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050322">Tuesday, March 22nd 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Goof-off%20Day&description=&date=20050322&freq=YEARLY&interval=1&bymonth=3" title="Add National Goof-off Day to your calendar">National Goof-off Day</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050322">Tuesday, March 22nd 2005</abbr> <a class="summary" href="createvcal.php?summary=World%20Water%20Day&description=Today%20is%20to%20remind%20everybody%20of%20the%20extreme%20importance%20of%20water%20for%20maintaining%20the%20environment%20and%20increasing%20development%20in%20human%20societies&date=20050322&freq=YEARLY&interval=1&bymonth=3" title="Add World Water Day to your calendar">World Water Day</a></dt>
<dd class="description">Today is to remind everybody of the extreme importance of water for maintaining the environment and increasing development in human societies</dd>
</dl>
<h2 id="s3-23" title="Wednesday, March 23rd 2005">Wednesday, March 23rd 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050323">Wednesday, March 23rd 2005</abbr> <a class="summary" href="createvcal.php?summary=Toast%20Day&description=&date=20050323&freq=YEARLY&interval=1&bymonth=3" title="Add Toast Day to your calendar">Toast Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s3-24" title="Thursday, March 24th 2005">Thursday, March 24th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050324">Thursday, March 24th 2005</abbr> <a class="summary" href="createvcal.php?summary=Harry%20Houdini%20Day&description=&date=20050324&freq=YEARLY&interval=1&bymonth=3" title="Add Harry Houdini Day to your calendar">Harry Houdini Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s3-26" title="Saturday, March 26th 2005">Saturday, March 26th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050326">Saturday, March 26th 2005</abbr> <a class="summary" href="createvcal.php?summary=Make-up%20your%20own%20holiday%20day&description=This%20is%20your%20chance%20to%20make-up%20any%20holiday%20you%20want&date=20050326&freq=YEARLY&interval=1&bymonth=3" title="Add Make-up your own holiday day to your calendar">Make-up your own holiday day</a></dt>
<dd class="description">This is your chance to make-up any holiday you want</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050326">Saturday, March 26th 2005</abbr> <a class="summary" href="createvcal.php?summary=Spinach%20Festival%20Day&description=&date=20050326&freq=YEARLY&interval=1&bymonth=3" title="Add Spinach Festival Day to your calendar">Spinach Festival Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s3-28" title="Monday, March 28th 2005">Monday, March 28th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050328">Monday, March 28th 2005</abbr> <a class="summary" href="createvcal.php?summary=Something%20On%20A%20Stick%20Day&description=Put%20something%20on%20a%20stick%2C%20or%20eat%20something%20off%20of%20one...%20either%20way%20it%20better%20be%20stick%20related%20today%21&date=20050328&freq=YEARLY&interval=1&bymonth=3" title="Add Something On A Stick Day to your calendar">Something On A Stick Day</a></dt>
<dd class="description">Put something on a stick, or eat something off of one... either way it better be stick related today!</dd>
</dl>
<h2 id="s3-30" title="Wednesday, March 30th 2005">Wednesday, March 30th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050330">Wednesday, March 30th 2005</abbr> <a class="summary" href="createvcal.php?summary=Doctor%27s%20Day&description=&date=20050330&freq=YEARLY&interval=1&bymonth=3" title="Add Doctor's Day to your calendar">Doctor's Day</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050330">Wednesday, March 30th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Hot%20Dog%20Day&description=There%20are%20hundreds%20of%20flavours%20and%20styles%2C%20eat%20atleast%20one%20today&date=20050330&freq=YEARLY&interval=1&bymonth=3" title="Add National Hot Dog Day to your calendar">National Hot Dog Day</a></dt>
<dd class="description">There are hundreds of flavours and styles, eat atleast one today</dd>
</dl>
<h2 id="s3-31" title="Thursday, March 31st 2005">Thursday, March 31st 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050331">Thursday, March 31st 2005</abbr> <a class="summary" href="createvcal.php?summary=Bunsen%20Burner%20Day&description=Careful%20not%20to%20burn%20yourself&date=20050331&freq=YEARLY&interval=1&bymonth=3" title="Add Bunsen Burner Day to your calendar">Bunsen Burner Day</a></dt>
<dd class="description">Careful not to burn yourself</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050331">Thursday, March 31st 2005</abbr> <a class="summary" href="createvcal.php?summary=Oranges%20and%20Lemon%20Day&description=&date=20050331&freq=YEARLY&interval=1&bymonth=3" title="Add Oranges and Lemon Day to your calendar">Oranges and Lemon Day</a></dt>
<dd class="description"></dd>
</dl>
<h1 id="April" title="April">April</h1>
<h2 id="s4-2" title="Saturday, April 2nd 2005">Saturday, April 2nd 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050402">Saturday, April 2nd 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Peanut%20Butter%20and%20Jelly%20Day&description=Pack%20your%20lunch%20today%2C%20but%20make%20sure%20that%20it%20is%20Peanut%20Butter%20and%20Jelly%20Sandwich.&date=20050402&freq=YEARLY&interval=1&bymonth=4" title="Add National Peanut Butter and Jelly Day to your calendar">National Peanut Butter and Jelly Day</a></dt>
<dd class="description">Pack your lunch today, but make sure that it is Peanut Butter and Jelly Sandwich.</dd>
</dl>
<h2 id="s4-3" title="Sunday, April 3rd 2005">Sunday, April 3rd 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050403">Sunday, April 3rd 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Find-A-Rainbow%20Day&description=&date=20050403&freq=YEARLY&interval=1&bymonth=4" title="Add National Find-A-Rainbow Day to your calendar">National Find-A-Rainbow Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s4-4" title="Monday, April 4th 2005">Monday, April 4th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050404">Monday, April 4th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Reading%20a%20Roadmap%20Day&description=Practice%20reading%20a%20road%20map%20today%2C%20find%20out%20which%20was%20is%20north%20and%20plot%20your%20journey&date=20050404&freq=YEARLY&interval=1&bymonth=4" title="Add National Reading a Roadmap Day to your calendar">National Reading a Roadmap Day</a></dt>
<dd class="description">Practice reading a road map today, find out which was is north and plot your journey</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050404">Monday, April 4th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Repot%20your%20Plant%20Day&description=Your%20plants%20keep%20growing%2C%20give%20them%20a%20bigger%20home%20today&date=20050404&freq=YEARLY&interval=1&bymonth=4" title="Add National Repot your Plant Day to your calendar">National Repot your Plant Day</a></dt>
<dd class="description">Your plants keep growing, give them a bigger home today</dd>
</dl>
<h2 id="s4-5" title="Tuesday, April 5th 2005">Tuesday, April 5th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050405">Tuesday, April 5th 2005</abbr> <a class="summary" href="createvcal.php?summary=Go%20For%20Broke%20Day&description=This%20might%20be%20your%20last%20chance...%20make%20it%20count%21&date=20050405&freq=YEARLY&interval=1&bymonth=4" title="Add Go For Broke Day to your calendar">Go For Broke Day</a></dt>
<dd class="description">This might be your last chance... make it count!</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050405">Tuesday, April 5th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Workplace%20Napping%20Day&description=Eat%20your%20lunch%2C%20then%20tuck-in%20for%20a%20nice%20afternoon%20nap&date=20050405&freq=YEARLY&interval=1&bymonth=4" title="Add National Workplace Napping Day to your calendar">National Workplace Napping Day</a></dt>
<dd class="description">Eat your lunch, then tuck-in for a nice afternoon nap</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050405">Tuesday, April 5th 2005</abbr> <a class="summary" href="createvcal.php?summary=Stop%20the%20Clocks%20Day&description=Imagine%20if%20time%20stood%20still%20today&date=20050405&freq=YEARLY&interval=1&bymonth=4" title="Add Stop the Clocks Day to your calendar">Stop the Clocks Day</a></dt>
<dd class="description">Imagine if time stood still today</dd>
</dl>
<h2 id="s4-6" title="Wednesday, April 6th 2005">Wednesday, April 6th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050406">Wednesday, April 6th 2005</abbr> <a class="summary" href="createvcal.php?summary=Tartan%20Day&description=Join%20the%20tartan%20army%20and%20wear%20some%20plaid&date=20050406&freq=YEARLY&interval=1&bymonth=4" title="Add Tartan Day to your calendar">Tartan Day</a></dt>
<dd class="description">Join the tartan army and wear some plaid</dd>
</dl>
<h2 id="s4-7" title="Thursday, April 7th 2005">Thursday, April 7th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050407">Thursday, April 7th 2005</abbr> <a class="summary" href="createvcal.php?summary=No%20Housework%20Day&description=Skip%20making%20the%20bed%20and%20doing%20dishes%2C%20because%20today%20is%20no%20housework%20day%21&date=20050407&freq=YEARLY&interval=1&bymonth=4" title="Add No Housework Day to your calendar">No Housework Day</a></dt>
<dd class="description">Skip making the bed and doing dishes, because today is no housework day!</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050407">Thursday, April 7th 2005</abbr> <a class="summary" href="createvcal.php?summary=World%20Health%20Day&description=&date=20050407&freq=YEARLY&interval=1&bymonth=4" title="Add World Health Day to your calendar">World Health Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s4-8" title="Friday, April 8th 2005">Friday, April 8th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050408">Friday, April 8th 2005</abbr> <a class="summary" href="createvcal.php?summary=International%20Bird%20Day&description=&date=20050408&freq=YEARLY&interval=1&bymonth=4" title="Add International Bird Day to your calendar">International Bird Day</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050408">Friday, April 8th 2005</abbr> <a class="summary" href="createvcal.php?summary=International%20Feng%20Shui%20Awareness%20Day&description=be%20aware%20of%20the%20wood%2C%20metal%2C%20fire%2C%20earth%2C%20and%20wind%20elements%20around%2C%20it%20is%20good%20chi&date=20050408&freq=YEARLY&interval=1&bymonth=4" title="Add International Feng Shui Awareness Day to your calendar">International Feng Shui Awareness Day</a></dt>
<dd class="description">be aware of the wood, metal, fire, earth, and wind elements around, it is good chi</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050408">Friday, April 8th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Empanada%20Day&description=&date=20050408&freq=YEARLY&interval=1&bymonth=4" title="Add National Empanada Day to your calendar">National Empanada Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s4-9" title="Saturday, April 9th 2005">Saturday, April 9th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050409">Saturday, April 9th 2005</abbr> <a class="summary" href="createvcal.php?summary=Name%20Yourself%20Day&description=&date=20050409&freq=YEARLY&interval=1&bymonth=4" title="Add Name Yourself Day to your calendar">Name Yourself Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s4-10" title="Sunday, April 10th 2005">Sunday, April 10th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050410">Sunday, April 10th 2005</abbr> <a class="summary" href="createvcal.php?summary=Golfers%20Day&description=Play%20around%20of%209%20or%20even%2018&date=20050410&freq=YEARLY&interval=1&bymonth=4" title="Add Golfers Day to your calendar">Golfers Day</a></dt>
<dd class="description">Play around of 9 or even 18</dd>
</dl>
<h2 id="s4-11" title="Monday, April 11th 2005">Monday, April 11th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050411">Monday, April 11th 2005</abbr> <a class="summary" href="createvcal.php?summary=Barbershop%20Quartet%20Day&description=Find%20three%20friends%20and%20start%20singing%20acapella&date=20050411&freq=YEARLY&interval=1&bymonth=4" title="Add Barbershop Quartet Day to your calendar">Barbershop Quartet Day</a></dt>
<dd class="description">Find three friends and start singing acapella</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050411">Monday, April 11th 2005</abbr> <a class="summary" href="createvcal.php?summary=Dandelion%20Day&description=&date=20050411&freq=YEARLY&interval=1&bymonth=4" title="Add Dandelion Day to your calendar">Dandelion Day</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050411">Monday, April 11th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Cheese%20Fondue%20Day&description=careful%2C%20it%27s%20HOT%21&date=20050411&freq=YEARLY&interval=1&bymonth=4" title="Add National Cheese Fondue Day to your calendar">National Cheese Fondue Day</a></dt>
<dd class="description">careful, it's HOT!</dd>
</dl>
<h2 id="s4-12" title="Tuesday, April 12th 2005">Tuesday, April 12th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050412">Tuesday, April 12th 2005</abbr> <a class="summary" href="createvcal.php?summary=Look%20Up%20At%20The%20Sky%20Day&description=Stare%20up%20at%20the%20sky%2C%20ponder%20why%20it%20is%20blue%2C%20and%20see%20how%20many%20clouds%20look%20like%20animals%20today&date=20050412&freq=YEARLY&interval=1&bymonth=4" title="Add Look Up At The Sky Day to your calendar">Look Up At The Sky Day</a></dt>
<dd class="description">Stare up at the sky, ponder why it is blue, and see how many clouds look like animals today</dd>
</dl>
<h2 id="s4-13" title="Wednesday, April 13th 2005">Wednesday, April 13th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050413">Wednesday, April 13th 2005</abbr> <a class="summary" href="createvcal.php?summary=Blame%20Somebody%20Else%20Day&description=A%20super%20excuse%20which%20your%20colleagues%2F%20pals%20are%20gonna%20love.&date=20050413&freq=YEARLY&interval=1&bymonth=4" title="Add Blame Somebody Else Day to your calendar">Blame Somebody Else Day</a></dt>
<dd class="description">A super excuse which your colleagues/ pals are gonna love.</dd>
</dl>
<h2 id="s4-15" title="Friday, April 15th 2005">Friday, April 15th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050415">Friday, April 15th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Glazed%20Ham%20Day&description=Not%20just%20any%20ham%2C%20Glazed%20ham%21&date=20050415&freq=YEARLY&interval=1&bymonth=4" title="Add National Glazed Ham Day to your calendar">National Glazed Ham Day</a></dt>
<dd class="description">Not just any ham, Glazed ham!</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050415">Friday, April 15th 2005</abbr> <a class="summary" href="createvcal.php?summary=Rubber%20Eraser%20Day&description=Be%20glad%20your%20pencil%20has%20an%20eraser%2C%20use%20it%20proudly%20today&date=20050415&freq=YEARLY&interval=1&bymonth=4" title="Add Rubber Eraser Day to your calendar">Rubber Eraser Day</a></dt>
<dd class="description">Be glad your pencil has an eraser, use it proudly today</dd>
</dl>
<h2 id="s4-18" title="Monday, April 18th 2005">Monday, April 18th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050418">Monday, April 18th 2005</abbr> <a class="summary" href="createvcal.php?summary=International%20Jugglers%20Day&description=Learn%20to%20juggle%2C%20or%20if%20you%20know%20how%20then%20teach%20someone&date=20050418&freq=YEARLY&interval=1&bymonth=4" title="Add International Jugglers Day to your calendar">International Jugglers Day</a></dt>
<dd class="description">Learn to juggle, or if you know how then teach someone</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050418">Monday, April 18th 2005</abbr> <a class="summary" href="createvcal.php?summary=Look-Alike%20Day&description=Beware%20of%20dopplegangers&date=20050418&freq=YEARLY&interval=1&bymonth=4" title="Add Look-Alike Day to your calendar">Look-Alike Day</a></dt>
<dd class="description">Beware of dopplegangers</dd>
</dl>
<h2 id="s4-19" title="Tuesday, April 19th 2005">Tuesday, April 19th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050419">Tuesday, April 19th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Hanging%20Out%20Day&description=Save%20money%20and%20enery%20by%20hanging%20your%20laundry%20on%20a%20line%20today&date=20050419&freq=YEARLY&interval=1&bymonth=4" title="Add National Hanging Out Day to your calendar">National Hanging Out Day</a></dt>
<dd class="description">Save money and enery by hanging your laundry on a line today</dd>
</dl>
<h2 id="s4-20" title="Wednesday, April 20th 2005">Wednesday, April 20th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050420">Wednesday, April 20th 2005</abbr> <a class="summary" href="createvcal.php?summary=Look%20Alike%20Day&description=&date=20050420&freq=YEARLY&interval=1&bymonth=4" title="Add Look Alike Day to your calendar">Look Alike Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s4-21" title="Thursday, April 21st 2005">Thursday, April 21st 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050421">Thursday, April 21st 2005</abbr> <a class="summary" href="createvcal.php?summary=Kindergarten%20Day&description=If%20you%20are%20in%20Kindergarden%2C%20today%20is%20your%20special%20day&date=20050421&freq=YEARLY&interval=1&bymonth=4" title="Add Kindergarten Day to your calendar">Kindergarten Day</a></dt>
<dd class="description">If you are in Kindergarden, today is your special day</dd>
</dl>
<h2 id="s4-22" title="Friday, April 22nd 2005">Friday, April 22nd 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050422">Friday, April 22nd 2005</abbr> <a class="summary" href="createvcal.php?summary=Earth%20Day&description=Respect%20and%20learn%20more%20about%20your%20earth%20today%2C%20it%27s%20the%20only%20one%20you%20got&date=20050422&freq=YEARLY&interval=1&bymonth=4" title="Add Earth Day to your calendar">Earth Day</a></dt>
<dd class="description">Respect and learn more about your earth today, it's the only one you got</dd>
</dl>
<h2 id="s4-23" title="Saturday, April 23rd 2005">Saturday, April 23rd 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050423">Saturday, April 23rd 2005</abbr> <a class="summary" href="createvcal.php?summary=Laboratory%20Day&description=A%20Mad%20scientisits%20Favourite%20Day&date=20050423&freq=YEARLY&interval=1&bymonth=4" title="Add Laboratory Day to your calendar">Laboratory Day</a></dt>
<dd class="description">A Mad scientisits Favourite Day</dd>
</dl>
<h2 id="s4-24" title="Sunday, April 24th 2005">Sunday, April 24th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050424">Sunday, April 24th 2005</abbr> <a class="summary" href="createvcal.php?summary=24%20Hour%20Comics%20Day&description=A%20day%20to%20not%20only%20celebrate%2C%20but%20to%20engage%20in%20the%20creation%20of%20comics.%20Ttry%20to%20create%20your%20own%20full%2024%20page%20comic%20book%20in%2024%20consecutive%20hours.&date=20050424&freq=YEARLY&interval=1&bymonth=4" title="Add 24 Hour Comics Day to your calendar">24 Hour Comics Day</a></dt>
<dd class="description">A day to not only celebrate, but to engage in the creation of comics. Ttry to create your own full 24 page comic book in 24 consecutive hours.</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050424">Sunday, April 24th 2005</abbr> <a class="summary" href="createvcal.php?summary=Astronomy%20Day&description=It%20should%20be%20called%20Astronomy%20Night%2C%20have%20a%20look%20up%20at%20the%20stars%20tonight&date=20050424&freq=YEARLY&interval=1&bymonth=4" title="Add Astronomy Day to your calendar">Astronomy Day</a></dt>
<dd class="description">It should be called Astronomy Night, have a look up at the stars tonight</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050424">Sunday, April 24th 2005</abbr> <a class="summary" href="createvcal.php?summary=Plumber%27s%20Day&description=&date=20050424&freq=YEARLY&interval=1&bymonth=4" title="Add Plumber's Day to your calendar">Plumber's Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s4-26" title="Tuesday, April 26th 2005">Tuesday, April 26th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050426">Tuesday, April 26th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Pretzel%20Day&description=Eat%20your%20heart%20out%20on%20pretzels%2C%20but%20be%20sure%20not%20to%20choke.&date=20050426&freq=YEARLY&interval=1&bymonth=4" title="Add National Pretzel Day to your calendar">National Pretzel Day</a></dt>
<dd class="description">Eat your heart out on pretzels, but be sure not to choke.</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050426">Tuesday, April 26th 2005</abbr> <a class="summary" href="createvcal.php?summary=Shuffleboard%20Day&description=Get%20out%20and%20play%20a%20round%20of%20Shuffleboard%20today&date=20050426&freq=YEARLY&interval=1&bymonth=4" title="Add Shuffleboard Day to your calendar">Shuffleboard Day</a></dt>
<dd class="description">Get out and play a round of Shuffleboard today</dd>
</dl>
<h2 id="s4-27" title="Wednesday, April 27th 2005">Wednesday, April 27th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050427">Wednesday, April 27th 2005</abbr> <a class="summary" href="createvcal.php?summary=Write%20an%20Old%20Friend%20Today%20Day&description=Compose%20and%20eMail%20or%20letter%20to%20someone%20you%20haven%27t%20talked%20to%20in%20awhile&date=20050427&freq=YEARLY&interval=1&bymonth=4" title="Add Write an Old Friend Today Day to your calendar">Write an Old Friend Today Day</a></dt>
<dd class="description">Compose and eMail or letter to someone you haven't talked to in awhile</dd>
</dl>
<h2 id="s4-28" title="Thursday, April 28th 2005">Thursday, April 28th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050428">Thursday, April 28th 2005</abbr> <a class="summary" href="createvcal.php?summary=Great%20Poetry%20Reading%20Day&description=&date=20050428&freq=YEARLY&interval=1&bymonth=4" title="Add Great Poetry Reading Day to your calendar">Great Poetry Reading Day</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050428">Thursday, April 28th 2005</abbr> <a class="summary" href="createvcal.php?summary=Santa%20Fe%20Trail%20Day&description=&date=20050428&freq=YEARLY&interval=1&bymonth=4" title="Add Santa Fe Trail Day to your calendar">Santa Fe Trail Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s4-30" title="Saturday, April 30th 2005">Saturday, April 30th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050430">Saturday, April 30th 2005</abbr> <a class="summary" href="createvcal.php?summary=Hairstyle%20Appreciation%20Day&description=&date=20050430&freq=YEARLY&interval=1&bymonth=4" title="Add Hairstyle Appreciation Day to your calendar">Hairstyle Appreciation Day</a></dt>
<dd class="description"></dd>
</dl>
<h1 id="May" title="May">May</h1>
<h2 id="s5-1" title="Sunday, May 1st 2005">Sunday, May 1st 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050501">Sunday, May 1st 2005</abbr> <a class="summary" href="createvcal.php?summary=Save%20a%20Rhino%20Day&description=If%20you%20see%20a%20rhino%20in%20need%2C%20save%20its%20life%20and%20it%20will%20grant%20you%20three%20wishes&date=20050501&freq=YEARLY&interval=1&bymonth=5" title="Add Save a Rhino Day to your calendar">Save a Rhino Day</a></dt>
<dd class="description">If you see a rhino in need, save its life and it will grant you three wishes</dd>
</dl>
<h2 id="s5-2" title="Monday, May 2nd 2005">Monday, May 2nd 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050502">Monday, May 2nd 2005</abbr> <a class="summary" href="createvcal.php?summary=Roberts%20Rule%20of%20Order%20Day&description=I%20second%20that%20motion&date=20050502&freq=YEARLY&interval=1&bymonth=5" title="Add Roberts Rule of Order Day to your calendar">Roberts Rule of Order Day</a></dt>
<dd class="description">I second that motion</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050502">Monday, May 2nd 2005</abbr> <a class="summary" href="createvcal.php?summary=Space%20Day&description=Learn%20something%20about%20outerspace%20today&date=20050502&freq=YEARLY&interval=1&bymonth=5" title="Add Space Day to your calendar">Space Day</a></dt>
<dd class="description">Learn something about outerspace today</dd>
</dl>
<h2 id="s5-4" title="Wednesday, May 4th 2005">Wednesday, May 4th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050504">Wednesday, May 4th 2005</abbr> <a class="summary" href="createvcal.php?summary=Kite%20Day&description=&date=20050504&freq=YEARLY&interval=1&bymonth=5" title="Add Kite Day to your calendar">Kite Day</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050504">Wednesday, May 4th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Weather%20Observer%27s%20Day&description=&date=20050504&freq=YEARLY&interval=1&bymonth=5" title="Add National Weather Observer's Day to your calendar">National Weather Observer's Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s5-5" title="Thursday, May 5th 2005">Thursday, May 5th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050505">Thursday, May 5th 2005</abbr> <a class="summary" href="createvcal.php?summary=Cinco%20de%20Mustache&description=Grow%20the%20best%20Mustache%20posible%20and%20compete%20with%20your%20friends%20for%20their%20adoration.&date=20050505&freq=YEARLY&interval=1&bymonth=5" title="Add Cinco de Mustache to your calendar">Cinco de Mustache</a></dt>
<dd class="description">Grow the best Mustache posible and compete with your friends for their adoration.</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050505">Thursday, May 5th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Hoagie%20Day&description=Stuff%20yourself%20silly%20with%20a%20good%20ol%27fashion%20Hoagie%20Roll.&date=20050505&freq=YEARLY&interval=1&bymonth=5" title="Add National Hoagie Day to your calendar">National Hoagie Day</a></dt>
<dd class="description">Stuff yourself silly with a good ol'fashion Hoagie Roll.</dd>
</dl>
<h2 id="s5-6" title="Friday, May 6th 2005">Friday, May 6th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050506">Friday, May 6th 2005</abbr> <a class="summary" href="createvcal.php?summary=Nurses%27%20Day&description=&date=20050506&freq=YEARLY&interval=1&bymonth=5" title="Add Nurses' Day to your calendar">Nurses' Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s5-7" title="Saturday, May 7th 2005">Saturday, May 7th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050507">Saturday, May 7th 2005</abbr> <a class="summary" href="createvcal.php?summary=International%20Tuba%20Day&description=Listen%20to%20some%20Polka%20music%20and%20enjoy%20the%20sounds%20of%20one%20of%20the%20biggest%20brass%20instruments&date=20050507&freq=YEARLY&interval=1&bymonth=5" title="Add International Tuba Day to your calendar">International Tuba Day</a></dt>
<dd class="description">Listen to some Polka music and enjoy the sounds of one of the biggest brass instruments</dd>
</dl>
<h2 id="s5-8" title="Sunday, May 8th 2005">Sunday, May 8th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050508">Sunday, May 8th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Teacher%20Day&description=&date=20050508&freq=YEARLY&interval=1&bymonth=5" title="Add National Teacher Day to your calendar">National Teacher Day</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050508">Sunday, May 8th 2005</abbr> <a class="summary" href="createvcal.php?summary=No%20Socks%20Day&description=Put%20on%20some%20sandles%20and%20go%20sockless%20today.&date=20050508&freq=YEARLY&interval=1&bymonth=5" title="Add No Socks Day to your calendar">No Socks Day</a></dt>
<dd class="description">Put on some sandles and go sockless today.</dd>
</dl>
<h2 id="s5-9" title="Monday, May 9th 2005">Monday, May 9th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050509">Monday, May 9th 2005</abbr> <a class="summary" href="createvcal.php?summary=Lost%20Sock%20Memorial%20Day&description=Take%20a%20moment%20of%20silence%20for%20all%20the%20lost%20socks%20and%20their%20loved%20ones.&date=20050509&freq=YEARLY&interval=1&bymonth=5" title="Add Lost Sock Memorial Day to your calendar">Lost Sock Memorial Day</a></dt>
<dd class="description">Take a moment of silence for all the lost socks and their loved ones.</dd>
</dl>
<h2 id="s5-10" title="Tuesday, May 10th 2005">Tuesday, May 10th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050510">Tuesday, May 10th 2005</abbr> <a class="summary" href="createvcal.php?summary=Golden%20Spike%20Day&description=&date=20050510&freq=YEARLY&interval=1&bymonth=5" title="Add Golden Spike Day to your calendar">Golden Spike Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s5-11" title="Wednesday, May 11th 2005">Wednesday, May 11th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050511">Wednesday, May 11th 2005</abbr> <a class="summary" href="createvcal.php?summary=Eat%20What%20You%20Want%20Day&description=Better%20than%20meat%20day%20and%20vegitarian%20day%20combined...%20eat%20what%20ever%20you%20want%20today&date=20050511&freq=YEARLY&interval=1&bymonth=5" title="Add Eat What You Want Day to your calendar">Eat What You Want Day</a></dt>
<dd class="description">Better than meat day and vegitarian day combined... eat what ever you want today</dd>
</dl>
<h2 id="s5-12" title="Thursday, May 12th 2005">Thursday, May 12th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050512">Thursday, May 12th 2005</abbr> <a class="summary" href="createvcal.php?summary=Another%20Kite%20Day&description=&date=20050512&freq=YEARLY&interval=1&bymonth=5" title="Add Another Kite Day to your calendar">Another Kite Day</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050512">Thursday, May 12th 2005</abbr> <a class="summary" href="createvcal.php?summary=Limerick%20Day&description=&date=20050512&freq=YEARLY&interval=1&bymonth=5" title="Add Limerick Day to your calendar">Limerick Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s5-15" title="Sunday, May 15th 2005">Sunday, May 15th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050515">Sunday, May 15th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Chocolate%20Chip%20Day&description=Put%20chocolate%20chips%20in%20everything%20today%2C%20your%20cookies%2C%20coffee%2C%20everything&date=20050515&freq=YEARLY&interval=1&bymonth=5" title="Add National Chocolate Chip Day to your calendar">National Chocolate Chip Day</a></dt>
<dd class="description">Put chocolate chips in everything today, your cookies, coffee, everything</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050515">Sunday, May 15th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Receptionists%20Day&description=Be%20extra%20nice%20to%20your%20receptionist%20today&date=20050515&freq=YEARLY&interval=1&bymonth=5" title="Add National Receptionists Day to your calendar">National Receptionists Day</a></dt>
<dd class="description">Be extra nice to your receptionist today</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050515">Sunday, May 15th 2005</abbr> <a class="summary" href="createvcal.php?summary=Straw%20Hat%20Day&description=Break%20out%20the%20straw%20hats%20today%20and%20wear%20them%20with%20pride&date=20050515&freq=YEARLY&interval=1&bymonth=5" title="Add Straw Hat Day to your calendar">Straw Hat Day</a></dt>
<dd class="description">Break out the straw hats today and wear them with pride</dd>
</dl>
<h2 id="s5-16" title="Monday, May 16th 2005">Monday, May 16th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050516">Monday, May 16th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Sea%20Monkey%20Day&description=&date=20050516&freq=YEARLY&interval=1&bymonth=5" title="Add National Sea Monkey Day to your calendar">National Sea Monkey Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s5-18" title="Wednesday, May 18th 2005">Wednesday, May 18th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050518">Wednesday, May 18th 2005</abbr> <a class="summary" href="createvcal.php?summary=International%20Museum%20Day&description=Take%20the%20day%20off%20and%20go%20to%20at%20least%20one%20museam%20today.&date=20050518&freq=YEARLY&interval=1&bymonth=5" title="Add International Museum Day to your calendar">International Museum Day</a></dt>
<dd class="description">Take the day off and go to at least one museam today.</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050518">Wednesday, May 18th 2005</abbr> <a class="summary" href="createvcal.php?summary=Rooster%20Day&description=&date=20050518&freq=YEARLY&interval=1&bymonth=5" title="Add Rooster Day to your calendar">Rooster Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s5-19" title="Thursday, May 19th 2005">Thursday, May 19th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050519">Thursday, May 19th 2005</abbr> <a class="summary" href="createvcal.php?summary=Bike%20to%20Work%20Day&description=Get%20some%20exercise%20and%20bike%20to%20work%20today&date=20050519&freq=YEARLY&interval=1&bymonth=5" title="Add Bike to Work Day to your calendar">Bike to Work Day</a></dt>
<dd class="description">Get some exercise and bike to work today</dd>
</dl>
<h2 id="s5-20" title="Friday, May 20th 2005">Friday, May 20th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050520">Friday, May 20th 2005</abbr> <a class="summary" href="createvcal.php?summary=Weights%20and%20Measures%20Day&description=Metric%20or%20Imperial%2C%20which%20are%20you%3F&date=20050520&freq=YEARLY&interval=1&bymonth=5" title="Add Weights and Measures Day to your calendar">Weights and Measures Day</a></dt>
<dd class="description">Metric or Imperial, which are you?</dd>
</dl>
<h2 id="s5-21" title="Saturday, May 21st 2005">Saturday, May 21st 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050521">Saturday, May 21st 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Bike%20to%20Work%20Day&description=It%27s%20a%20nice%20day%2C%20why%20not%20ride%20your%20bike%20to%20work%20and%20enjoy%20the%20fresh-air&date=20050521&freq=YEARLY&interval=1&bymonth=5" title="Add National Bike to Work Day to your calendar">National Bike to Work Day</a></dt>
<dd class="description">It's a nice day, why not ride your bike to work and enjoy the fresh-air</dd>
</dl>
<h2 id="s5-22" title="Sunday, May 22nd 2005">Sunday, May 22nd 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050522">Sunday, May 22nd 2005</abbr> <a class="summary" href="createvcal.php?summary=Buy-A-Musical%20Instrument%20Day&description=Buy%20one%2C%20then%20more%20importantly%20learn%20how%20to%20play%20it&date=20050522&freq=YEARLY&interval=1&bymonth=5" title="Add Buy-A-Musical Instrument Day to your calendar">Buy-A-Musical Instrument Day</a></dt>
<dd class="description">Buy one, then more importantly learn how to play it</dd>
</dl>
<h2 id="s5-23" title="Monday, May 23rd 2005">Monday, May 23rd 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050523">Monday, May 23rd 2005</abbr> <a class="summary" href="createvcal.php?summary=Bifocals%20Invented&description=&date=20050523&freq=YEARLY&interval=1&bymonth=5" title="Add Bifocals Invented to your calendar">Bifocals Invented</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050523">Monday, May 23rd 2005</abbr> <a class="summary" href="createvcal.php?summary=World%20Turtle%20Day&description=The%20worlds%20loves%20a%20turtle&date=20050523&freq=YEARLY&interval=1&bymonth=5" title="Add World Turtle Day to your calendar">World Turtle Day</a></dt>
<dd class="description">The worlds loves a turtle</dd>
</dl>
<h2 id="s5-25" title="Wednesday, May 25th 2005">Wednesday, May 25th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050525">Wednesday, May 25th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Tap%20Dancing%20Day&description=&date=20050525&freq=YEARLY&interval=1&bymonth=5" title="Add National Tap Dancing Day to your calendar">National Tap Dancing Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s5-27" title="Friday, May 27th 2005">Friday, May 27th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050527">Friday, May 27th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Grape%20Popsicle%20Day&description=&date=20050527&freq=YEARLY&interval=1&bymonth=5" title="Add National Grape Popsicle Day to your calendar">National Grape Popsicle Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s5-28" title="Saturday, May 28th 2005">Saturday, May 28th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050528">Saturday, May 28th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Hamburger%20Day&description=Eat%20as%20many%20burgers%20as%20you%20can%20today.&date=20050528&freq=YEARLY&interval=1&bymonth=5" title="Add National Hamburger Day to your calendar">National Hamburger Day</a></dt>
<dd class="description">Eat as many burgers as you can today.</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050528">Saturday, May 28th 2005</abbr> <a class="summary" href="createvcal.php?summary=Whale%20Day&description=It%27s%20a%20whale%20of%20a%20day%20today&date=20050528&freq=YEARLY&interval=1&bymonth=5" title="Add Whale Day to your calendar">Whale Day</a></dt>
<dd class="description">It's a whale of a day today</dd>
</dl>
<h2 id="s5-29" title="Sunday, May 29th 2005">Sunday, May 29th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050529">Sunday, May 29th 2005</abbr> <a class="summary" href="createvcal.php?summary=End%20Of%20The%20Middle%20Ages%20Day&description=The%20middle%20ages%20ended%20long%20ago%2C%20and%20we%27re%20glad%20they%20did%2C%20so%20lets%20celebrate&date=20050529&freq=YEARLY&interval=1&bymonth=5" title="Add End Of The Middle Ages Day to your calendar">End Of The Middle Ages Day</a></dt>
<dd class="description">The middle ages ended long ago, and we're glad they did, so lets celebrate</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050529">Sunday, May 29th 2005</abbr> <a class="summary" href="createvcal.php?summary=International%20Jazz%20Day&description=&date=20050529&freq=YEARLY&interval=1&bymonth=5" title="Add International Jazz Day to your calendar">International Jazz Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s5-31" title="Tuesday, May 31st 2005">Tuesday, May 31st 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050531">Tuesday, May 31st 2005</abbr> <a class="summary" href="createvcal.php?summary=Speak%20in%20Complete%20Sentences%20Day&description=&date=20050531&freq=YEARLY&interval=1&bymonth=5" title="Add Speak in Complete Sentences Day to your calendar">Speak in Complete Sentences Day</a></dt>
<dd class="description"></dd>
</dl>
<h1 id="June" title="June">June</h1>
<h2 id="s6-1" title="Wednesday, June 1st 2005">Wednesday, June 1st 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050601">Wednesday, June 1st 2005</abbr> <a class="summary" href="createvcal.php?summary=Doughnut%20Day&description=Stuff%20your%20face%20silly%20with%20Doughnuts%20today&date=20050601&freq=YEARLY&interval=1&bymonth=6" title="Add Doughnut Day to your calendar">Doughnut Day</a></dt>
<dd class="description">Stuff your face silly with Doughnuts today</dd>
</dl>
<h2 id="s6-2" title="Thursday, June 2nd 2005">Thursday, June 2nd 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050602">Thursday, June 2nd 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Rocky%20Road%20Day&description=&date=20050602&freq=YEARLY&interval=1&bymonth=6" title="Add National Rocky Road Day to your calendar">National Rocky Road Day</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050602">Thursday, June 2nd 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Tailors%20Day&description=&date=20050602&freq=YEARLY&interval=1&bymonth=6" title="Add National Tailors Day to your calendar">National Tailors Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s6-3" title="Friday, June 3rd 2005">Friday, June 3rd 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050603">Friday, June 3rd 2005</abbr> <a class="summary" href="createvcal.php?summary=Egg%20Day&description=&date=20050603&freq=YEARLY&interval=1&bymonth=6" title="Add Egg Day to your calendar">Egg Day</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050603">Friday, June 3rd 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Doughnut%20Day&description=Tigertails%20or%20holes%2C%20powdered%20or%20chocolate%2C%20get%20yourself%20a%20doughnut%20today&date=20050603&freq=YEARLY&interval=1&bymonth=6" title="Add National Doughnut Day to your calendar">National Doughnut Day</a></dt>
<dd class="description">Tigertails or holes, powdered or chocolate, get yourself a doughnut today</dd>
</dl>
<h2 id="s6-4" title="Saturday, June 4th 2005">Saturday, June 4th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050604">Saturday, June 4th 2005</abbr> <a class="summary" href="createvcal.php?summary=Another%20Cheese%20Day&description=&date=20050604&freq=YEARLY&interval=1&bymonth=6" title="Add Another Cheese Day to your calendar">Another Cheese Day</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050604">Saturday, June 4th 2005</abbr> <a class="summary" href="createvcal.php?summary=Another%20National%20Frozen%20Yogurt%20Day&description=&date=20050604&freq=YEARLY&interval=1&bymonth=6" title="Add Another National Frozen Yogurt Day to your calendar">Another National Frozen Yogurt Day</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050604">Saturday, June 4th 2005</abbr> <a class="summary" href="createvcal.php?summary=Clean%20Air%20Day&description=Do%20what%20you%20can%20to%20keep%20the%20air%20clean%20today&date=20050604&freq=YEARLY&interval=1&bymonth=6" title="Add Clean Air Day to your calendar">Clean Air Day</a></dt>
<dd class="description">Do what you can to keep the air clean today</dd>
</dl>
<h2 id="s6-5" title="Sunday, June 5th 2005">Sunday, June 5th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050605">Sunday, June 5th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Gingerbread%20Day&description=&date=20050605&freq=YEARLY&interval=1&bymonth=6" title="Add National Gingerbread Day to your calendar">National Gingerbread Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s6-6" title="Monday, June 6th 2005">Monday, June 6th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050606">Monday, June 6th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Applesauce%20Cake%20Day&description=&date=20050606&freq=YEARLY&interval=1&bymonth=6" title="Add National Applesauce Cake Day to your calendar">National Applesauce Cake Day</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050606">Monday, June 6th 2005</abbr> <a class="summary" href="createvcal.php?summary=Teacher%27s%20Day&description=Bring%20in%20an%20apple%20for%20your%20teacher&date=20050606&freq=YEARLY&interval=1&bymonth=6" title="Add Teacher's Day to your calendar">Teacher's Day</a></dt>
<dd class="description">Bring in an apple for your teacher</dd>
</dl>
<h2 id="s6-7" title="Tuesday, June 7th 2005">Tuesday, June 7th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050607">Tuesday, June 7th 2005</abbr> <a class="summary" href="createvcal.php?summary=Daniel%20Boone%20Day&description=Put%20on%20those%20%27coon%20skin%20caps&date=20050607&freq=YEARLY&interval=1&bymonth=6" title="Add Daniel Boone Day to your calendar">Daniel Boone Day</a></dt>
<dd class="description">Put on those 'coon skin caps</dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050607">Tuesday, June 7th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Chocolate%20Ice%20Cream%20Day&description=&date=20050607&freq=YEARLY&interval=1&bymonth=6" title="Add National Chocolate Ice Cream Day to your calendar">National Chocolate Ice Cream Day</a></dt>
<dd class="description"></dd>
</dl>
<h2 id="s6-8" title="Wednesday, June 8th 2005">Wednesday, June 8th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050608">Wednesday, June 8th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Jelly-Filled%20Doughnut%20Day&description=&date=20050608&freq=YEARLY&interval=1&bymonth=6" title="Add National Jelly-Filled Doughnut Day to your calendar">National Jelly-Filled Doughnut Day</a></dt>
<dd class="description"></dd>
</dl>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050608">Wednesday, June 8th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Taco%20Day&description=Have%20yourself%20a%20mexican%20sandwich%20eating%20contest%20and%20stuff%20your%20face%20full%20of%20tacos&date=20050608&freq=YEARLY&interval=1&bymonth=6" title="Add National Taco Day to your calendar">National Taco Day</a></dt>
<dd class="description">Have yourself a mexican sandwich eating contest and stuff your face full of tacos</dd>
</dl>
<h2 id="s6-10" title="Friday, June 10th 2005">Friday, June 10th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050610">Friday, June 10th 2005</abbr> <a class="summary" href="createvcal.php?summary=National%20Yo-Yo%20Day&description=Dust%20off%20the%20Yo-Yo%27s%20and%20have%20a%20good%20spin.&date=20050610&freq=YEARLY&interval=1&bymonth=6" title="Add National Yo-Yo Day to your calendar">National Yo-Yo Day</a></dt>
<dd class="description">Dust off the Yo-Yo's and have a good spin.</dd>
</dl>
<h2 id="s6-11" title="Saturday, June 11th 2005">Saturday, June 11th 2005</h2>
<dl class="vevent">
<dt><span style="display: none" class="duration">P1D</span> <abbr style="display: none" class="dtstart" title="20050611">Saturday, June 11th 2005</abbr> <a class="summary" href="createvcal.php?summary=Swimming%20Pool%20Day&description=&date=20050611&freq=YEARLY&interval=1&bymonth=6" title="Add Swimming Pool Day to your calendar">Swimming Pool Day</a></dt>
<dd class="description"></dd>
</dl>