forked from dracos/twitpanto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_post.html
1166 lines (1142 loc) · 615 KB
/
index_post.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-gb">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Twitpanto 2010</title>
<link rel="alternate" type="application/atom+xml" title="Twitter search for #twitpanto" href="http://search.twitter.com/search.atom?q=#twitpanto">
<link type="text/css" rel="stylesheet" href="/css.css">
<link type="text/css" rel="stylesheet" href="/jquery-ui-1.7.2.custom.css">
<script type="text/javascript" src="/js/jquery.js"></script>
<script type="text/javascript" src="/js/jquery.scrollTo.js"></script>
<script type="text/javascript" src="/js/jquery-ui-1.7.2.custom.min.js"></script>
<script type="text/javascript" src="/js/twitpanto-post.js"></script>
</head>
<body>
<div id="loading">There’s a lot of text to load, please be patient…</div>
<div id="stage">
<div class="wrap"><div class="results">
<!-- pre-launch text -->
<div class="a0 pre">
<p><em>“Jack and the Beanstalk”</em></p>
<p>or teh green shoots of recovery</p>
</div>
<div class="a1 pre">
<p><strong>Monday 20<sup>th</sup> December<br>2010, 2pm GMT</strong></p>
</div>
<!-- pre-launch text -->
<!-- STAGE DATA HERE -->
<div class="a0 user_jonhickman"><img src="http://a2.twimg.com/profile_images/1194808212/cow1_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jonhickman" class="user">jonhickman</a> Support <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23Twitpanto">#Twitpanto</a> 2010, add a <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twibbon">#twibbon</a> now! - <a target="_blank" title="Opens in new window" href="http://twb.ly/dZyta6">http://twb.ly/dZyta6</a> - Create one here - <a target="_blank" title="Opens in new window" href="http://twb.ly/f02AU3">http://twb.ly/f02AU3</a> <span><a class="date" target="_blank" href="http://twitter.com/jonhickman/status/16840421032333312"><small>13:00:43</small></a></span></div>
<div class="a1 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> Twitpanto starts in just under an hour (2pm GMT). Now's a good time to stock up on the noisiest snacks you can find <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16841338695716864"><small>13:04:22</small></a></span></div>
<div class="a0 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> Catch <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> as it happens at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16842030109954048"><small>13:07:07</small></a></span></div>
<div class="a1 user_jonhickman"><img src="http://a3.twimg.com/profile_images/1194808655/0143edaf-7eae-4ba9-85eb-aad6c3eadf8c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/jonhickman" class="user">jonhickman</a> http://www.youtube.com/watch?v=AO379gLDebY<a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23t">#t</a>=4m15s "hey I've been turned into a cow..." <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jonhickman/status/16842044035043328"><small>13:07:10</small></a></span></div>
<div class="a0 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/jonhickman">@jonhickman</a> your avatar has mooooooved me <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16842171210539008"><small>13:07:41</small></a></span></div>
<div class="a1 user_jonhickman"><img src="http://a3.twimg.com/profile_images/1194808655/0143edaf-7eae-4ba9-85eb-aad6c3eadf8c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/jonhickman" class="user">jonhickman</a> My <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> avatar was taken in front of my favourite sledging location. It is a Guernsey cow. They are the best cows. Here end the facts <span><a class="date" target="_blank" href="http://twitter.com/jonhickman/status/16842785017565185"><small>13:10:07</small></a></span></div>
<div class="a0 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/graphiquillan">@graphiquillan</a> if that journalist isn't careful, I'll "extradite" them to Never, Never Land <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23stikibeaks">#stikibeaks</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16843094150356992"><small>13:11:21</small></a></span></div>
<div class="a1 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/joannageary">@joannageary</a> *draws over self with highlighter pen* I, too, have highlighted my bits :) <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16843547860799490"><small>13:13:09</small></a></span></div>
<div class="a0 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/proactivepaul">@proactivepaul</a> Oh yes it is :D <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16843979223998464"><small>13:14:52</small></a></span></div>
<div class="a1 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/parboo">@parboo</a> Oh no you won't :D <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16844310292987904"><small>13:16:11</small></a></span></div>
<div class="a0 user_getgood"><img src="http://a3.twimg.com/profile_images/1194767748/175ea6f2-03ed-431c-b952-7eed46c75aec_normal.png" width="32"> <a target="_blank" href="http://twitter.com/getgood" class="user">getgood</a> Getting rather excited now.... RT <a target="_blank" title="Opens in new window" href="http://twitter.com/graphiquillan">@graphiquillan</a> Catch <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> as it happens at <a target="_blank" title="Opens in new window" href="http://bit.ly/h3OzEK">http://bit.ly/h3OzEK</a> <span><a class="date" target="_blank" href="http://twitter.com/getgood/status/16844430543687681"><small>13:16:39</small></a></span></div>
<div class="a1 user_ChrisUnitt"><img src="http://a0.twimg.com/profile_images/1194783558/twitpantoriot_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/ChrisUnitt" class="user">ChrisUnitt</a> Evenin' all <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/ChrisUnitt/status/16845018832576513"><small>13:19:00</small></a></span></div>
<div class="a0 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/tobynutter">@tobynutter</a> The Sound of Music. Julie Andrews belting it out <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16845047198646272"><small>13:19:06</small></a></span></div>
<div class="a1 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/ChrisUnitt">@ChrisUnitt</a> *holes up in a mansion* *taps frantically at laptop* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16845506034536448"><small>13:20:56</small></a></span></div>
<div class="a0 user_dracos"><img src="http://a3.twimg.com/profile_images/1194814545/HandsomePrince_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/dracos" class="user">dracos</a> Getting into costume for<a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/dracos/status/16845601677250560"><small>13:21:19</small></a></span></div>
<div class="a1 user_jonhickman"><img src="http://a3.twimg.com/profile_images/1194808655/0143edaf-7eae-4ba9-85eb-aad6c3eadf8c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/jonhickman" class="user">jonhickman</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/tobynutter">@tobynutter</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> has it's own soundtrack courtesy of <a target="_blank" title="Opens in new window" href="http://twitter.com/mazzawoo">@mazzawoo</a> <span><a class="date" target="_blank" href="http://twitter.com/jonhickman/status/16845713333817345"><small>13:21:45</small></a></span></div>
<div class="a0 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>Just over 1/2 an hour to Twitter's biggest threat to UKPLC… <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Saddle up here: <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16845825485312001"><small>13:22:12</small></a></span></div>
<div class="a1 user_swearynews"><img src="http://a0.twimg.com/profile_images/1194795716/adebb28c-f405-4a96-b50b-a3eea1f7bb50_normal.png" width="32"> <a target="_blank" href="http://twitter.com/swearynews" class="user">swearynews</a> Costume? I'm getting into character. You've got to take the craft seriously... <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/swearynews/status/16846226066505728"><small>13:23:47</small></a></span></div>
<div class="a0 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> just had a couple of bowls of broth and some of that <a target="_blank" title="Opens in new window" href="http://twitter.com/media140">@media140</a> cava - forgot to grind bones to make bread though <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23fail">#fail</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16846254008963072"><small>13:23:54</small></a></span></div>
<div class="a1 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Just over 1/2 an hour to Twitter's biggest threat to UKPLC… <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Saddle up here: <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16846417280630784"><small>13:24:33</small></a></span></div>
<div class="a0 user_bounder"><img src="http://a3.twimg.com/profile_images/1194816135/0dd4f58a-b6b2-4ecf-a61c-e5e1ee4c3eba_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bounder" class="user">bounder</a> oooh i'm soooo kooky <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bounder/status/16846802422599680"><small>13:26:05</small></a></span></div>
<div class="a1 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/catnip">@catnip</a>: Looking forward to <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> live at 2pm. Watch it at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> and use <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> to be in the aud ... <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16846955879600128"><small>13:26:41</small></a></span></div>
<div class="a0 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Just having a quick polish of my pumpkins on my farm on farmville before <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> starts. <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16847008849469440"><small>13:26:54</small></a></span></div>
<div class="a1 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> just noticed I don't come in till scene 2 act 2 - think I'll have a bit of a siesta *yawns* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16847257034817536"><small>13:27:53</small></a></span></div>
<div class="a0 user_mandyrose1"><img src="http://a3.twimg.com/profile_images/1189651915/1c3ef59a-f44f-4eae-9594-3cded3afd90b_normal.png" width="32"> <a target="_blank" href="http://twitter.com/mandyrose1" class="user">mandyrose1</a> warming up the vocal cords ready for some heavy duty shouting <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mandyrose1/status/16847399066533889"><small>13:28:27</small></a></span></div>
<div class="a1 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> *swings round* *floors several people with wings* Sorry about that <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16847540762705920"><small>13:29:01</small></a></span></div>
<div class="a0 user_jonhickman"><img src="http://a3.twimg.com/profile_images/1194808655/0143edaf-7eae-4ba9-85eb-aad6c3eadf8c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/jonhickman" class="user">jonhickman</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/benjiw">@benjiw</a> ZAP! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23warmup">#warmup</a> <span><a class="date" target="_blank" href="http://twitter.com/jonhickman/status/16847906153701376"><small>13:30:28</small></a></span></div>
<div class="a1 user_swearynews"><img src="http://a0.twimg.com/profile_images/1194795716/adebb28c-f405-4a96-b50b-a3eea1f7bb50_normal.png" width="32"> <a target="_blank" href="http://twitter.com/swearynews" class="user">swearynews</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/snowblind">@snowblind</a> You can watch <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> even if you're excited. <span><a class="date" target="_blank" href="http://twitter.com/swearynews/status/16848534028427264"><small>13:32:58</small></a></span></div>
<div class="a0 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> *crosses legs* *jiggles about* Gawwwd, I'm dying for a Wiki <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16848601720295424"><small>13:33:14</small></a></span></div>
<div class="a1 user_mandyrose1"><img src="http://a3.twimg.com/profile_images/1189651915/1c3ef59a-f44f-4eae-9594-3cded3afd90b_normal.png" width="32"> <a target="_blank" href="http://twitter.com/mandyrose1" class="user">mandyrose1</a> don't forget its <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> in around 20 mins..... <span><a class="date" target="_blank" href="http://twitter.com/mandyrose1/status/16849038368309249"><small>13:34:58</small></a></span></div>
<div class="a0 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/graphiquillan">@graphiquillan</a> be careful, they can leak out everywhere <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16849320657555456"><small>13:36:05</small></a></span></div>
<div class="a1 user_jonhickman"><img src="http://a3.twimg.com/profile_images/1194808655/0143edaf-7eae-4ba9-85eb-aad6c3eadf8c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/jonhickman" class="user">jonhickman</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/ChrisUnitt">@ChrisUnitt</a> put the kettle on <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jonhickman/status/16849449175224320"><small>13:36:36</small></a></span></div>
<div class="a0 user_jonhickman"><img src="http://a3.twimg.com/profile_images/1194808655/0143edaf-7eae-4ba9-85eb-aad6c3eadf8c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/jonhickman" class="user">jonhickman</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/philipjohn">@philipjohn</a> keep still bab, I need to back up to you <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jonhickman/status/16850110205919232"><small>13:39:13</small></a></span></div>
<div class="a1 user_philipjohn"><img src="http://a2.twimg.com/profile_images/1194329681/f68649c8-0b87-4520-a03a-ab8930e8c240_normal.png" width="32"> <a target="_blank" href="http://twitter.com/philipjohn" class="user">philipjohn</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/jonhickman">@jonhickman</a> To me, to me..... <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/philipjohn/status/16850239478562816"><small>13:39:44</small></a></span></div>
<div class="a0 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> In the Green Room, pwning the drinks cabinet. Apparently, I have a choice of Wild Turkey or Um Bongo <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16850247959445504"><small>13:39:46</small></a></span></div>
<div class="a1 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> I wonder what's in this cupboard..... *aaaarghhhhh* *slams door shut* That's terrifying. There are 4 Anthea Turners in there. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16850559235522560"><small>13:41:01</small></a></span></div>
<div class="a0 user_philipjohn"><img src="http://a0.twimg.com/profile_images/1194829911/backendcow_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/philipjohn" class="user">philipjohn</a> Support <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23Twitpanto">#Twitpanto</a> 2010, add a <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twibbon">#twibbon</a> now! - <a target="_blank" title="Opens in new window" href="http://twb.ly/dZyta6">http://twb.ly/dZyta6</a> - Create one here - <a target="_blank" title="Opens in new window" href="http://twb.ly/f02AU3">http://twb.ly/f02AU3</a> <span><a class="date" target="_blank" href="http://twitter.com/philipjohn/status/16850563798929409"><small>13:41:02</small></a></span></div>
<div class="a1 user_jonhickman"><img src="http://a3.twimg.com/profile_images/1194808655/0143edaf-7eae-4ba9-85eb-aad6c3eadf8c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/jonhickman" class="user">jonhickman</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/graphiquillan">@graphiquillan</a> wild turkey AND um bongo is a winning combo <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jonhickman/status/16850585617698816"><small>13:41:07</small></a></span></div>
<div class="a0 user_jonhickman"><img src="http://a3.twimg.com/profile_images/1194808655/0143edaf-7eae-4ba9-85eb-aad6c3eadf8c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/jonhickman" class="user">jonhickman</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/philipjohn">@philipjohn</a> I can't see you at all - just sort of reach out and pull me on to you <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jonhickman/status/16850873913184256"><small>13:42:16</small></a></span></div>
<div class="a1 user_getgood"><img src="http://a3.twimg.com/profile_images/1194767748/175ea6f2-03ed-431c-b952-7eed46c75aec_normal.png" width="32"> <a target="_blank" href="http://twitter.com/getgood" class="user">getgood</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/philipjohn">@philipjohn</a> Looking good there! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/getgood/status/16850949150613505"><small>13:42:34</small></a></span></div>
<div class="a0 user_mandyrose1"><img src="http://a3.twimg.com/profile_images/1189651915/1c3ef59a-f44f-4eae-9594-3cded3afd90b_normal.png" width="32"> <a target="_blank" href="http://twitter.com/mandyrose1" class="user">mandyrose1</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/AngryBritain">@AngryBritain</a> tune into <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> today at 2pm that will get you in the mood <span><a class="date" target="_blank" href="http://twitter.com/mandyrose1/status/16850988786782208"><small>13:42:43</small></a></span></div>
<div class="a1 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> Has anyone seen my um bongo? bones will be ground if anyone's drunk it <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16851031887446016"><small>13:42:53</small></a></span></div>
<div class="a0 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> Far too much polyester in these costumes. Get too close and we're in serious danger of becoming a set of performing Tesla Coils <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16851077022359552"><small>13:43:04</small></a></span></div>
<div class="a1 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/cataspanglish">@cataspanglish</a> *noisily drinks through straw* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16851319994191872"><small>13:44:02</small></a></span></div>
<div class="a0 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> testing the acoustics on stage, behind curtains <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16851432225378305"><small>13:44:29</small></a></span></div>
<div class="a1 user_mandyrose1"><img src="http://a3.twimg.com/profile_images/1189651915/1c3ef59a-f44f-4eae-9594-3cded3afd90b_normal.png" width="32"> <a target="_blank" href="http://twitter.com/mandyrose1" class="user">mandyrose1</a> Just been getting some great makeup tips from <a target="_blank" title="Opens in new window" href="http://twitter.com/Julianclary">@Julianclary</a> for <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mandyrose1/status/16851563494514688"><small>13:45:00</small></a></span></div>
<div class="a0 user_getgood"><img src="http://a3.twimg.com/profile_images/1194767748/175ea6f2-03ed-431c-b952-7eed46c75aec_normal.png" width="32"> <a target="_blank" href="http://twitter.com/getgood" class="user">getgood</a> In the dressing room. Who's had my wild turkey and Um Bongo? I can't have anything else on account of my allergies. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/getgood/status/16851628866928640"><small>13:45:16</small></a></span></div>
<div class="a1 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/graphiquillan">@graphiquillan</a> come down here you little minx <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16851669698482176"><small>13:45:25</small></a></span></div>
<div class="a0 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> *commando crawls into front of house and into aisle 3* *deftly obtains punter's Revels* *munchmunch* *blurk it's a coffee one* :/ <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16851691236229120"><small>13:45:30</small></a></span></div>
<div class="a1 user_bounder"><img src="http://a3.twimg.com/profile_images/1194816135/0dd4f58a-b6b2-4ecf-a61c-e5e1ee4c3eba_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bounder" class="user">bounder</a> hoorah <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> gets spam already thanks <a target="_blank" title="Opens in new window" href="http://twitter.com/caterfor">@caterfor</a> you tossers <span><a class="date" target="_blank" href="http://twitter.com/bounder/status/16851740477358080"><small>13:45:42</small></a></span></div>
<div class="a0 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> *to self* You've played Hamlet, Richard III, Dr Prentice, Mr Sloane. You were born to play this role. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16851783020183552"><small>13:45:52</small></a></span></div>
<div class="a1 user_ChrisUnitt"><img src="http://a0.twimg.com/profile_images/1194783558/twitpantoriot_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/ChrisUnitt" class="user">ChrisUnitt</a> Does my ID number look visible in this? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/ChrisUnitt/status/16851786220437504"><small>13:45:53</small></a></span></div>
<div class="a0 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> time for a diva type strop *I Demand Red Bull and Meth* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16851897067507713"><small>13:46:20</small></a></span></div>
<div class="a1 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/ChrisUnitt">@ChrisUnitt</a> not from up here it isn't <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16851938616283136"><small>13:46:29</small></a></span></div>
<div class="a0 user_jonhickman"><img src="http://a3.twimg.com/profile_images/1194808655/0143edaf-7eae-4ba9-85eb-aad6c3eadf8c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/jonhickman" class="user">jonhickman</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/philipjohn">@philipjohn</a> decouple! I need to go the loo. Nerves. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jonhickman/status/16852029582352386"><small>13:46:51</small></a></span></div>
<div class="a1 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> I've just accidentally squashed someone called Michael. Sorry about that :/ <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23mickysqueaks">#mickysqueaks</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16852035102052352"><small>13:46:52</small></a></span></div>
<div class="a0 user_getgood"><img src="http://a3.twimg.com/profile_images/1194767748/175ea6f2-03ed-431c-b952-7eed46c75aec_normal.png" width="32"> <a target="_blank" href="http://twitter.com/getgood" class="user">getgood</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/ChrisUnitt">@ChrisUnitt</a> I couldn't decipher it when you were boshing me over the head. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/getgood/status/16852099455262720"><small>13:47:08</small></a></span></div>
<div class="a1 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> Quick! Look! A naked person has just run in front of the stage :O <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23quickystreaks">#quickystreaks</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16852280477229057"><small>13:47:51</small></a></span></div>
<div class="a0 user_philipjohn"><img src="http://a2.twimg.com/profile_images/1194831400/backendcow_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/philipjohn" class="user">philipjohn</a> I am now definitely the back end of a cow... thanks to <a target="_blank" title="Opens in new window" href="http://bit.ly/hcwrmX">http://bit.ly/hcwrmX</a> but Twibbon won't let me get the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> on! <span><a class="date" target="_blank" href="http://twitter.com/philipjohn/status/16852375566295041"><small>13:48:14</small></a></span></div>
<div class="a1 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> I've got a couple of bottles of <a target="_blank" title="Opens in new window" href="http://twitter.com/media140">@media140</a> cava at a good price if anyone in the audience is interested <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16852423259717634"><small>13:48:25</small></a></span></div>
<div class="a0 user_philipjohn"><img src="http://a2.twimg.com/profile_images/1194831400/backendcow_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/philipjohn" class="user">philipjohn</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/jonhickman">@jonhickman</a> Go, go! I don't want you smelling me out! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/philipjohn/status/16852449268596736"><small>13:48:31</small></a></span></div>
<div class="a1 user_jonhickman"><img src="http://a3.twimg.com/profile_images/1194808655/0143edaf-7eae-4ba9-85eb-aad6c3eadf8c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/jonhickman" class="user">jonhickman</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/ChrisUnitt">@ChrisUnitt</a> is that one of the truncheons that gets bigger, or is it a one size fits all job? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jonhickman/status/16852527861473281"><small>13:48:50</small></a></span></div>
<div class="a0 user_philipjohn"><img src="http://a2.twimg.com/profile_images/1194831400/backendcow_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/philipjohn" class="user">philipjohn</a> Nearly time for <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>.... watch here <a target="_blank" title="Opens in new window" href="http://bit.ly/gntvPq">http://bit.ly/gntvPq</a> <span><a class="date" target="_blank" href="http://twitter.com/philipjohn/status/16852559981453312"><small>13:48:58</small></a></span></div>
<div class="a1 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> I WANT A GLASS TOPPED COFFEE TABLE, A LENGTH OF RUBBER HOSE AND THE CAST OF 'ANNIE' IN MY DRESSING ROOM NOW <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16852589777780738"><small>13:49:05</small></a></span></div>
<div class="a0 user_Daneed4"><img src="http://a0.twimg.com/profile_images/1194156334/bowler1_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Daneed4" class="user">Daneed4</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> la la la lar la la lar <span><a class="date" target="_blank" href="http://twitter.com/Daneed4/status/16852634346455041"><small>13:49:15</small></a></span></div>
<div class="a1 user_cybrum"><img src="http://a1.twimg.com/profile_images/1194834277/3da7b0b5-eea6-4329-805a-dbdda457b270_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cybrum" class="user">cybrum</a> Support <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23Twitpanto">#Twitpanto</a> 2010, add a <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twibbon">#twibbon</a> now! - <a target="_blank" title="Opens in new window" href="http://twb.ly/dZyta6">http://twb.ly/dZyta6</a> - Create one here - <a target="_blank" title="Opens in new window" href="http://twb.ly/f02AU3">http://twb.ly/f02AU3</a> <span><a class="date" target="_blank" href="http://twitter.com/cybrum/status/16852678818664448"><small>13:49:26</small></a></span></div>
<div class="a0 user_dracos"><img src="http://a3.twimg.com/profile_images/1194814545/HandsomePrince_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/dracos" class="user">dracos</a> If you aren't seeing any other panto this year (or even if you are), come and watch ours now at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/dracos/status/16852737568276480"><small>13:49:40</small></a></span></div>
<div class="a1 user_ChrisUnitt"><img src="http://a0.twimg.com/profile_images/1194783558/twitpantoriot_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/ChrisUnitt" class="user">ChrisUnitt</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/jonhickman">@jonhickman</a> You know how they say that love will find a way? Me too <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/ChrisUnitt/status/16853078158352386"><small>13:51:01</small></a></span></div>
<div class="a0 user_jonhickman"><img src="http://a3.twimg.com/profile_images/1194808655/0143edaf-7eae-4ba9-85eb-aad6c3eadf8c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/jonhickman" class="user">jonhickman</a> *checks script to make sure there isn't any reference to <a target="_blank" title="Opens in new window" href="http://twitter.com/chrisunitt">@chrisunitt</a>'s truncheon as well* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jonhickman/status/16853092234432512"><small>13:51:04</small></a></span></div>
<div class="a1 user_swearynews"><img src="http://a0.twimg.com/profile_images/1194795716/adebb28c-f405-4a96-b50b-a3eea1f7bb50_normal.png" width="32"> <a target="_blank" href="http://twitter.com/swearynews" class="user">swearynews</a> [wets self] Bloody hell, there's a ghost in this 'ere theatre. Where's my proton pack. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/swearynews/status/16853341237678080"><small>13:52:04</small></a></span></div>
<div class="a0 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/cataspanglish">@cataspanglish</a> easy Tiger <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16853345851416576"><small>13:52:05</small></a></span></div>
<div class="a1 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> 10 minutes till curtain up if we are running on English punctuality - who knows how long if we're on Spanish time concepts <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16853377895890944"><small>13:52:13</small></a></span></div>
<div class="a0 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>Attention! This is a ten minute call to all <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> cast and audience. We have 10mins before the start of the performance.</strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16853404789772289"><small>13:52:19</small></a></span></div>
<div class="a1 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Attention! This is a ten minute call to all <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> cast and audience. We have 10mins before the start of the performance. <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16853467800801280"><small>13:52:34</small></a></span></div>
<div class="a0 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>Please take your <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> seats at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16853485576265729"><small>13:52:38</small></a></span></div>
<div class="a1 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Attention! This is a ten minute call to all <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> cast and audience. We have 10mins before the start of the performance. <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16853538969755648"><small>13:52:51</small></a></span></div>
<div class="a0 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Please take your <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> seats at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16853566815739904"><small>13:52:58</small></a></span></div>
<div class="a1 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Please take your <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> seats at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16853616862175233"><small>13:53:10</small></a></span></div>
<div class="a0 user_philipjohn"><img src="http://a1.twimg.com/profile_images/1194835785/efb0f29f-cff4-4108-a126-ab0725e667e6_normal.png" width="32"> <a target="_blank" href="http://twitter.com/philipjohn" class="user">philipjohn</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Attention! This is a ten minute call to all <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> cast and audience. We have 10mins before the start of the performance. <span><a class="date" target="_blank" href="http://twitter.com/philipjohn/status/16853672327643137"><small>13:53:23</small></a></span></div>
<div class="a1 user_mazzawoo"><img src="http://a2.twimg.com/profile_images/1194836970/download_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/mazzawoo" class="user">mazzawoo</a> Phew, just time to struggle into my <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> cozzie - I think I may have put weight on :'( (thanks <a target="_blank" title="Opens in new window" href="http://twitter.com/alexhughes">@alexhughes</a> x) <span><a class="date" target="_blank" href="http://twitter.com/mazzawoo/status/16853810332827648"><small>13:53:56</small></a></span></div>
<div class="a0 user_mandyrose1"><img src="http://a3.twimg.com/profile_images/1189651915/1c3ef59a-f44f-4eae-9594-3cded3afd90b_normal.png" width="32"> <a target="_blank" href="http://twitter.com/mandyrose1" class="user">mandyrose1</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/cataspanglish">@cataspanglish</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Please take your <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> seats at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/mandyrose1/status/16853872291086337"><small>13:54:10</small></a></span></div>
<div class="a1 user_swearynews"><img src="http://a0.twimg.com/profile_images/1194795716/adebb28c-f405-4a96-b50b-a3eea1f7bb50_normal.png" width="32"> <a target="_blank" href="http://twitter.com/swearynews" class="user">swearynews</a> That's right, shove and punch to get the last box of sweets from the little window before the shutter comes down <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/swearynews/status/16853874652483584"><small>13:54:11</small></a></span></div>
<div class="a0 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> Have any over-excited children in the audience thrown up yet? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16854049898893312"><small>13:54:53</small></a></span></div>
<div class="a1 user_philipjohn"><img src="http://a1.twimg.com/profile_images/1194835785/efb0f29f-cff4-4108-a126-ab0725e667e6_normal.png" width="32"> <a target="_blank" href="http://twitter.com/philipjohn" class="user">philipjohn</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Please take your <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> seats at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/philipjohn/status/16854080475373568"><small>13:55:00</small></a></span></div>
<div class="a0 user_cybrum"><img src="http://a1.twimg.com/profile_images/1194834277/3da7b0b5-eea6-4329-805a-dbdda457b270_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cybrum" class="user">cybrum</a> Getting my placard ready (and slipping a couple of snooker balls in my pocket) for the protest <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cybrum/status/16854112108810241"><small>13:55:08</small></a></span></div>
<div class="a1 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>Attention! This is a FIVE MINUTE call to <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> cast and audience. FIVE MINUTES before curtain up. (Dead exciting innit!)</strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16854217004163073"><small>13:55:33</small></a></span></div>
<div class="a0 user_ChrisUnitt"><img src="http://a0.twimg.com/profile_images/1194783558/twitpantoriot_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/ChrisUnitt" class="user">ChrisUnitt</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Please take your <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> seats at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/ChrisUnitt/status/16854217515864065"><small>13:55:33</small></a></span></div>
<div class="a1 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Attention! This is a FIVE MINUTE call to <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> cast and audience. FIVE MINUTES before curtain up. (Dead exciting innit!) <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16854303394238466"><small>13:55:53</small></a></span></div>
<div class="a0 user_cybrum"><img src="http://a1.twimg.com/profile_images/1194834277/3da7b0b5-eea6-4329-805a-dbdda457b270_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cybrum" class="user">cybrum</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Please take your <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> seats at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/cybrum/status/16854362919804928"><small>13:56:07</small></a></span></div>
<div class="a1 user_philipjohn"><img src="http://a1.twimg.com/profile_images/1194835785/efb0f29f-cff4-4108-a126-ab0725e667e6_normal.png" width="32"> <a target="_blank" href="http://twitter.com/philipjohn" class="user">philipjohn</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/willperrin">@willperrin</a>: follow <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> for some improvised fun this afternoon <span><a class="date" target="_blank" href="http://twitter.com/philipjohn/status/16854372495396864"><small>13:56:10</small></a></span></div>
<div class="a0 user_ChrisUnitt"><img src="http://a0.twimg.com/profile_images/1194783558/twitpantoriot_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/ChrisUnitt" class="user">ChrisUnitt</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/James_Rock">@James_Rock</a> There'll be no food, no drink and no moving anywhere until I say so <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/ChrisUnitt/status/16854852239892480"><small>13:58:04</small></a></span></div>
<div class="a1 user_swearynews"><img src="http://a0.twimg.com/profile_images/1194795716/adebb28c-f405-4a96-b50b-a3eea1f7bb50_normal.png" width="32"> <a target="_blank" href="http://twitter.com/swearynews" class="user">swearynews</a> [peeks through curtains] What a beautiful and attractive looking audience we have today. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/swearynews/status/16855018736979968"><small>13:58:44</small></a></span></div>
<div class="a0 user_bounder"><img src="http://a3.twimg.com/profile_images/1194816135/0dd4f58a-b6b2-4ecf-a61c-e5e1ee4c3eba_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bounder" class="user">bounder</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/philipjohn">@philipjohn</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/willperrin">@willperrin</a> improvised? Script took me 5 hours! ;) <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bounder/status/16855031227613184"><small>13:58:47</small></a></span></div>
<div class="a1 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> ooh me nerves...
<a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16855207627456512"><small>13:59:29</small></a></span></div>
<div class="a0 user_karmadillo"><img src="http://a1.twimg.com/profile_images/1194839295/waterhouse_juliet_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/karmadillo" class="user">karmadillo</a> oo oo is it time?! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/karmadillo/status/16855315584651265"><small>13:59:55</small></a></span></div>
<div class="a1 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>*The curtain raises* *gets stuck a bit* *curtain raises some more* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16855326678581248"><small>13:59:57</small></a></span></div>
<div class="a0 user_mandyrose1"><img src="http://a3.twimg.com/profile_images/1189651915/1c3ef59a-f44f-4eae-9594-3cded3afd90b_normal.png" width="32"> <a target="_blank" href="http://twitter.com/mandyrose1" class="user">mandyrose1</a> My plackards are not quite dry yet <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mandyrose1/status/16855349860507648"><small>14:00:03</small></a></span></div>
<div class="a1 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>Scene One: Welcome to austerity Pantoland, a cold hard place where even hard working single parents are struggling to survive. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16855375986819072"><small>14:00:09</small></a></span></div>
<div class="a0 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Nadine: Oh woe is me, oh woe is me. We haven't a penny to rub together. What ever shall we do? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16855503820820480"><small>14:00:39</small></a></span></div>
<div class="a1 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: Don't worry mum, nothing is ever as bad as you think. We've got savings. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16855641171689472"><small>14:01:12</small></a></span></div>
<div class="a0 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Nadine: Had savings, Jack. Some I've spent on booze, fags and Yahoo! shares. The rest I've squandered. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16855757119029248"><small>14:01:40</small></a></span></div>
<div class="a1 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Nadine: And now we're no longer to get any TMA (tights maintenance allowance) for you… you're going to have to get a job my lad. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16855805072515072"><small>14:01:51</small></a></span></div>
<div class="a0 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: There's no work out there mum, even Snow White is laying men off. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16855925369339904"><small>14:02:20</small></a></span></div>
<div class="a1 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: Dandini's on the dole, Buttons has taken voluntary redundancy, even Puss is now only wearing knock-off Uggs. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16855946441523201"><small>14:02:25</small></a></span></div>
<div class="a0 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Nadine: I've heard that about her. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16856031145500672"><small>14:02:45</small></a></span></div>
<div class="a1 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: Old King Cole is now being waited on by two volunteer kazooists. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16856140692324352"><small>14:03:11</small></a></span></div>
<div class="a0 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Nadine: Well then, there's nothing for it. We're going to have to sell Daisy. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16856197202186242"><small>14:03:25</small></a></span></div>
<div class="a1 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Nadine: Take her to market, Jack. And see you get a good price. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16856229146001408"><small>14:03:32</small></a></span></div>
<div class="a0 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>Scene Two: So young Jack is sent off to market to sell Daisy the cow. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16856305532674048"><small>14:03:51</small></a></span></div>
<div class="a1 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: Come on Daisy, you'll like it at the market — there's lots of man cows there to meet. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16856480359653376"><small>14:04:32</small></a></span></div>
<div class="a0 user_jonhickman"><img src="http://a3.twimg.com/profile_images/1194808655/0143edaf-7eae-4ba9-85eb-aad6c3eadf8c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/jonhickman" class="user">jonhickman</a> Daisy: Bullocks. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jonhickman/status/16856499129159681"><small>14:04:37</small></a></span></div>
<div class="a1 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: No, there are, really. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16856604037095424"><small>14:05:02</small></a></span></div>
<div class="a0 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: Where's that bloody cow got to? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16856689676390401"><small>14:05:22</small></a></span></div>
<div class="a1 user_jonhickman"><img src="http://a3.twimg.com/profile_images/1194808655/0143edaf-7eae-4ba9-85eb-aad6c3eadf8c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/jonhickman" class="user">jonhickman</a> Daisy: moo? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jonhickman/status/16856831712301057"><small>14:05:56</small></a></span></div>
<div class="a0 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>Where is Daisy audience? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16856861353451520"><small>14:06:03</small></a></span></div>
<div class="a1 user_jonhickman"><img src="http://a3.twimg.com/profile_images/1194808655/0143edaf-7eae-4ba9-85eb-aad6c3eadf8c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/jonhickman" class="user">jonhickman</a> Daisy: MOOO! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jonhickman/status/16856951430316032"><small>14:06:25</small></a></span></div>
<div class="a0 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>But when Jack got to market he was in for a surprise. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16857011358539776"><small>14:06:39</small></a></span></div>
<div class="a1 user_philipjohn"><img src="http://a1.twimg.com/profile_images/1194835785/efb0f29f-cff4-4108-a126-ab0725e667e6_normal.png" width="32"> <a target="_blank" href="http://twitter.com/philipjohn" class="user">philipjohn</a> Daisy: Parp! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/philipjohn/status/16857047945453569"><small>14:06:48</small></a></span></div>
<div class="a0 user_getgood"><img src="http://a3.twimg.com/profile_images/1194767748/175ea6f2-03ed-431c-b952-7eed46c75aec_normal.png" width="32"> <a target="_blank" href="http://twitter.com/getgood" class="user">getgood</a> Jeremy: You can't come in. We're staging a sit in. Shutting the market <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23mademesmile">#mademesmile</a>. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/getgood/status/16857068434620416"><small>14:06:52</small></a></span></div>
<div class="a1 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: where boy and girls? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16857101670289408"><small>14:07:00</small></a></span></div>
<div class="a0 user_dracos"><img src="http://a3.twimg.com/profile_images/1194814545/HandsomePrince_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/dracos" class="user">dracos</a> Jocasta: The market is owned by Sir Philip The Green, he owes six billion groats in back taxes and we're protesting. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/dracos/status/16857176270184448"><small>14:07:18</small></a></span></div>
<div class="a1 user_philipjohn"><img src="http://a1.twimg.com/profile_images/1194835785/efb0f29f-cff4-4108-a126-ab0725e667e6_normal.png" width="32"> <a target="_blank" href="http://twitter.com/philipjohn" class="user">philipjohn</a> Daisy: *kicks legs out at mention of Sir Philip Green* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/philipjohn/status/16857329584570369"><small>14:07:55</small></a></span></div>
<div class="a0 user_cybrum"><img src="http://a1.twimg.com/profile_images/1194834277/3da7b0b5-eea6-4329-805a-dbdda457b270_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cybrum" class="user">cybrum</a> Jeremy: Next we're off to picket TopShoppe. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cybrum/status/16857594463256576"><small>14:08:58</small></a></span></div>
<div class="a1 user_cybrum"><img src="http://a1.twimg.com/profile_images/1194834277/3da7b0b5-eea6-4329-805a-dbdda457b270_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cybrum" class="user">cybrum</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/getgood">@getgood</a> What do we want? Pants? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cybrum/status/16858021049147392"><small>14:10:40</small></a></span></div>
<div class="a0 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: Oh let me in, I've got to sell this cow or my mother and me will starve. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16858075256328193"><small>14:10:53</small></a></span></div>
<div class="a1 user_mandyrose1"><img src="http://a3.twimg.com/profile_images/1189651915/1c3ef59a-f44f-4eae-9594-3cded3afd90b_normal.png" width="32"> <a target="_blank" href="http://twitter.com/mandyrose1" class="user">mandyrose1</a> Jocasta: And then to PHS, Panto Home Store <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mandyrose1/status/16858079429656576"><small>14:10:54</small></a></span></div>
<div class="a0 user_TomAttwood"><img src="http://a1.twimg.com/profile_images/580775133/twitterProfilePhoto_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/TomAttwood" class="user">TomAttwood</a> The Butcher: I'll buy the cow, young sir. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/TomAttwood/status/16858130793111552"><small>14:11:06</small></a></span></div>
<div class="a1 user_jonhickman"><img src="http://a3.twimg.com/profile_images/1194808655/0143edaf-7eae-4ba9-85eb-aad6c3eadf8c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/jonhickman" class="user">jonhickman</a> Daisy: mooooooooooooooo! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jonhickman/status/16858156881678336"><small>14:11:12</small></a></span></div>
<div class="a0 user_TomAttwood"><img src="http://a1.twimg.com/profile_images/580775133/twitterProfilePhoto_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/TomAttwood" class="user">TomAttwood</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/tom_watson">@tom_watson</a> The Butcher: I have no money, but I will trade you this sack of magic beans for the beast. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/TomAttwood/status/16858451145658369"><small>14:12:22</small></a></span></div>
<div class="a1 user_TomAttwood"><img src="http://a1.twimg.com/profile_images/580775133/twitterProfilePhoto_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/TomAttwood" class="user">TomAttwood</a> The Butcher: It's the best offer you'll get. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/TomAttwood/status/16858543235801089"><small>14:12:44</small></a></span></div>
<div class="a0 user_jonhickman"><img src="http://a3.twimg.com/profile_images/1194808655/0143edaf-7eae-4ba9-85eb-aad6c3eadf8c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/jonhickman" class="user">jonhickman</a> Daisy: Moo? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jonhickman/status/16858590761459714"><small>14:12:55</small></a></span></div>
<div class="a1 user_philipjohn"><img src="http://a1.twimg.com/profile_images/1194835785/efb0f29f-cff4-4108-a126-ab0725e667e6_normal.png" width="32"> <a target="_blank" href="http://twitter.com/philipjohn" class="user">philipjohn</a> Daisy: *kicks the butcher, HARD* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/philipjohn/status/16858786794835968"><small>14:13:42</small></a></span></div>
<div class="a0 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: Oh no it isn't. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16858992412200960"><small>14:14:31</small></a></span></div>
<div class="a1 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>Is it the best deal Jack will get for Daisy audience? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16859160587014144"><small>14:15:11</small></a></span></div>
<div class="a0 user_jonhickman"><img src="http://a3.twimg.com/profile_images/1194808655/0143edaf-7eae-4ba9-85eb-aad6c3eadf8c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/jonhickman" class="user">jonhickman</a> Daisy: moo moo moo moosn't <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jonhickman/status/16859264475729920"><small>14:15:36</small></a></span></div>
<div class="a1 user_cybrum"><img src="http://a1.twimg.com/profile_images/1194834277/3da7b0b5-eea6-4329-805a-dbdda457b270_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cybrum" class="user">cybrum</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/jonhickman">@jonhickman</a> Run out of milk for my coffee here, can I squeeze your udders <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cybrum/status/16859299217145856"><small>14:15:44</small></a></span></div>
<div class="a0 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: Magic beans? You must think I have all the economic nous of an old Etonian. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16859465508716544"><small>14:16:24</small></a></span></div>
<div class="a1 user_philipjohn"><img src="http://a1.twimg.com/profile_images/1194835785/efb0f29f-cff4-4108-a126-ab0725e667e6_normal.png" width="32"> <a target="_blank" href="http://twitter.com/philipjohn" class="user">philipjohn</a> Daisy: *kicks <a target="_blank" title="Opens in new window" href="http://twitter.com/cybrum">@cybrum</a>* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/philipjohn/status/16859506675818496"><small>14:16:34</small></a></span></div>
<div class="a0 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>The butcher took Daisy off to investigate the King's wine cellar, and Jack trudged home alone. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16859516670840832"><small>14:16:36</small></a></span></div>
<div class="a1 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>Suddenly Assangelina the Good Fairy appears. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16859659235233792"><small>14:17:10</small></a></span></div>
<div class="a0 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> Assangelina: Jack, I've something to tell you. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16859683260207104"><small>14:17:16</small></a></span></div>
<div class="a1 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: Who are you? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16859802646876160"><small>14:17:44</small></a></span></div>
<div class="a0 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> Assangelina: I'm your Guardian angel, keeper of the secrets. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16859833315631104"><small>14:17:52</small></a></span></div>
<div class="a1 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> Assangelina: Those beans are magic, you must plant them. You will find great riches. And also Dick Whittington wears a wig. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16859876063969280"><small>14:18:02</small></a></span></div>
<div class="a0 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> Assangelina: Oh and by the way… have you ever thought of becoming a Scientologist? Or a Mormon? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16859924541734912"><small>14:18:13</small></a></span></div>
<div class="a1 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: Those sects took me by surprise. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16860026178113536"><small>14:18:38</small></a></span></div>
<div class="a0 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>Scene Three: Jack's mum wasn't happy. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16860083593945088"><small>14:18:51</small></a></span></div>
<div class="a1 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Nadine: Stupid boy! I sent you to sell our last cow and you bring me beans? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16860147582242816"><small>14:19:07</small></a></span></div>
<div class="a0 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Nadine: I sent you out for Lemsip and you bought a suppository. For all the good it did I may as well have stuck it up my arse. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16860209058160640"><small>14:19:21</small></a></span></div>
<div class="a1 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/probablydrunk">@probablydrunk</a> Jack: Magic beans mum, it's not like I've swapped Daisy for a can of Heinz. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16860279082057728"><small>14:19:38</small></a></span></div>
<div class="a0 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Nadine: At least we could eat them, I may as well sling these out of the bloody window. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16860415183036416"><small>14:20:10</small></a></span></div>
<div class="a1 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>Scene One: While Jack and his mum sleep hungry, the magic beans grew. By the next morning the beanstalk reached the clouds. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16860502504243201"><small>14:20:31</small></a></span></div>
<div class="a0 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>(this is Act II btw!) <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16860663104147456"><small>14:21:09</small></a></span></div>
<div class="a1 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/probablydrunk">@probablydrunk</a> Jack: Mum, mum look—the beans have grown like off of the Internet. <a target="_blank" title="Opens in new window" href="http://fybeanstalks.tumblr.com/">http://fybeanstalks.tumblr.com/</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16860670276411392"><small>14:21:11</small></a></span></div>
<div class="a0 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Nadine: So we've got a big shaft in the back garden—what good's it going to do us?. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16860802740916225"><small>14:21:43</small></a></span></div>
<div class="a1 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: About as much as you changing your Facebook picture to the witch out of Terrahawks will do to stop peados. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16861006198214656"><small>14:22:31</small></a></span></div>
<div class="a0 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Nadine: You cheeky sod, that's my new hairdo. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16861164801626112"><small>14:23:09</small></a></span></div>
<div class="a1 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: Anyway it's there, and I'm going to climb it. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16861253523738624"><small>14:23:30</small></a></span></div>
<div class="a0 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>So Jack got out his crampons and mounted the shaft. He climbed and climbed until he reached the clouds. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16861313024139264"><small>14:23:44</small></a></span></div>
<div class="a1 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: My God, that's high. Where am I? Good Fairy what are you doing here? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16861446906322944"><small>14:24:16</small></a></span></div>
<div class="a0 user_cybrum"><img src="http://a1.twimg.com/profile_images/1194834277/3da7b0b5-eea6-4329-805a-dbdda457b270_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cybrum" class="user">cybrum</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/ChrisUnitt">@ChrisUnitt</a> Put the 'kettle' on, there's a good chap. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cybrum/status/16861459568918529"><small>14:24:19</small></a></span></div>
<div class="a1 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> Assangelina: This is the land of the Giant, you must defeat him to fulfil your destiny.... <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16861485867208705"><small>14:24:26</small></a></span></div>
<div class="a0 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> Assangelina: ... And also Mother Goose knocks 10 years off her 'panto age' <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16861524815519744"><small>14:24:35</small></a></span></div>
<div class="a1 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> Assangelina: Look over yonder, see his castle. Great riches lie within. And also The Old Woman in the shoe eats odor eaters. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16861582403305472"><small>14:24:49</small></a></span></div>
<div class="a0 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>Scene Two: Jack sneaks through a crack in the door and into the castle. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16861653006028800"><small>14:25:06</small></a></span></div>
<div class="a1 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> The Giant: (on phone) I don't care if taxes are up. Robin Hood's got a week to get his shit together or he gets blown sky high. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16861712477061120"><small>14:25:20</small></a></span></div>
<div class="a0 user_swearynews"><img src="http://a0.twimg.com/profile_images/1194795716/adebb28c-f405-4a96-b50b-a3eea1f7bb50_normal.png" width="32"> <a target="_blank" href="http://twitter.com/swearynews" class="user">swearynews</a> The Chicken: Squaaark! Bloody Hell that was a big one. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/swearynews/status/16861771365089280"><small>14:25:34</small></a></span></div>
<div class="a1 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> The Giant: Another golden egg. Good bird! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16861811399725057"><small>14:25:43</small></a></span></div>
<div class="a0 user_swearynews"><img src="http://a0.twimg.com/profile_images/1194795716/adebb28c-f405-4a96-b50b-a3eea1f7bb50_normal.png" width="32"> <a target="_blank" href="http://twitter.com/swearynews" class="user">swearynews</a> The Chicken: Get me to a vet, Gideon. This isn't bleeding natural. It is however, bleeding. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/swearynews/status/16861855725125632"><small>14:25:54</small></a></span></div>
<div class="a1 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> The Giant: Enough! Harp! Some music. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16861918463528961"><small>14:26:09</small></a></span></div>
<div class="a0 user_swearynews"><img src="http://a0.twimg.com/profile_images/1194795716/adebb28c-f405-4a96-b50b-a3eea1f7bb50_normal.png" width="32"> <a target="_blank" href="http://twitter.com/swearynews" class="user">swearynews</a> The Chicken: Another bastard. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> I'm gonna kill the golden cock. <span><a class="date" target="_blank" href="http://twitter.com/swearynews/status/16861947316142080"><small>14:26:16</small></a></span></div>
<div class="a1 user_mazzawoo"><img src="http://a2.twimg.com/profile_images/1194836970/download_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/mazzawoo" class="user">mazzawoo</a> The Harp: ♫… your Honda Civic, I've a horse outside… ♫ <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mazzawoo/status/16862014999633920"><small>14:26:32</small></a></span></div>
<div class="a0 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> The Giant: Yawwwn. All this Gianting is making me tired, a nap before more volunteer loan sharking I think. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16862087359758336"><small>14:26:49</small></a></span></div>
<div class="a1 user_mazzawoo"><img src="http://a2.twimg.com/profile_images/1194836970/download_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/mazzawoo" class="user">mazzawoo</a> The Harp: ♫… your Subaru, I've a horse outside… ♫ <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mazzawoo/status/16862091390488576"><small>14:26:50</small></a></span></div>
<div class="a0 user_cybrum"><img src="http://a1.twimg.com/profile_images/1194834277/3da7b0b5-eea6-4329-805a-dbdda457b270_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cybrum" class="user">cybrum</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/benjiw">@benjiw</a> I've heard you can fit 29 Chilean miners in your big shaft? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cybrum/status/16862171581390850"><small>14:27:09</small></a></span></div>
<div class="a1 user_mazzawoo"><img src="http://a2.twimg.com/profile_images/1194836970/download_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/mazzawoo" class="user">mazzawoo</a> The Harp: …ish Gas a tariff that is only going up 20% this year. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mazzawoo/status/16862171849826304"><small>14:27:09</small></a></span></div>
<div class="a0 user_mazzawoo"><img src="http://a2.twimg.com/profile_images/1194836970/download_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/mazzawoo" class="user">mazzawoo</a> The Harp: ♫… Hi, I'm Maria from Harpify. … ♫ <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mazzawoo/status/16862234030383105"><small>14:27:24</small></a></span></div>
<div class="a1 user_swearynews"><img src="http://a0.twimg.com/profile_images/1194795716/adebb28c-f405-4a96-b50b-a3eea1f7bb50_normal.png" width="32"> <a target="_blank" href="http://twitter.com/swearynews" class="user">swearynews</a> The Chicken: Squuaaarrrrk! Bastard What're you doing? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/swearynews/status/16862277051359232"><small>14:27:34</small></a></span></div>
<div class="a0 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/probablydrunk">@probablydrunk</a> Jack: <a target="_blank" title="Opens in new window" href="http://twitter.com/swearynews">@swearynews</a> You're coming with me. You've laid enough eggs for this Giant. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16862375823020032"><small>14:27:58</small></a></span></div>
<div class="a1 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: A magic harp, golden eggs, just like the fairy said. Enough to buy back the cow and be rich! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16862453811904513"><small>14:28:16</small></a></span></div>
<div class="a0 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> The Giant: Fee Fi Fo Fum, I hear the voice of a proletarian. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16862494970613760"><small>14:28:26</small></a></span></div>
<div class="a1 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>With his hands full of chicken and harp, Jack ran back down to safety. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16862544836698112"><small>14:28:38</small></a></span></div>
<div class="a0 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>Scene Three: Two inarticulate teenagers are wondering through our social space. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16862625400889345"><small>14:28:57</small></a></span></div>
<div class="a1 user_Daneed4"><img src="http://a0.twimg.com/profile_images/1194156334/bowler1_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Daneed4" class="user">Daneed4</a> Romeo: <a target="_blank" title="Opens in new window" href="http://twitter.com/karmadillo">@karmadillo</a> Juliet, U haz my art enit, even those U wer once a fella! *poke*. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Daneed4/status/16862659940982785"><small>14:29:06</small></a></span></div>
<div class="a0 user_karmadillo"><img src="http://a1.twimg.com/profile_images/1194839295/waterhouse_juliet_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/karmadillo" class="user">karmadillo</a> Juliet: <a target="_blank" title="Opens in new window" href="http://twitter.com/Daneed4">@Daneed4</a> awwww and I <3 u 2 Romeo, innit. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/karmadillo/status/16862701741408256"><small>14:29:16</small></a></span></div>
<div class="a1 user_Daneed4"><img src="http://a0.twimg.com/profile_images/1194156334/bowler1_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Daneed4" class="user">Daneed4</a> Romeo: LOL!!! U is well worth a poking ja get me. Big up 2 facebookers <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Daneed4/status/16862757529845760"><small>14:29:29</small></a></span></div>
<div class="a0 user_karmadillo"><img src="http://a1.twimg.com/profile_images/1194839295/waterhouse_juliet_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/karmadillo" class="user">karmadillo</a> Juliet: Look! Itz a giant beanstalk, innit tho?! Fo shizzle! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/karmadillo/status/16862865696759808"><small>14:29:55</small></a></span></div>
<div class="a1 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/pdavenne">@pdavenne</a> you wanna make something of it? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16862903349026816"><small>14:30:04</small></a></span></div>
<div class="a0 user_Daneed4"><img src="http://a0.twimg.com/profile_images/1194156334/bowler1_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Daneed4" class="user">Daneed4</a> Romeo: <a target="_blank" title="Opens in new window" href="http://twitter.com/karmadillo">@karmadillo</a> Juliet, back atcha, but dat aint now beanstalk!*blink* I heart u Juliet! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Daneed4/status/16862934797910016"><small>14:30:11</small></a></span></div>
<div class="user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: You two don't half go on. Get out of the way. Anyone would think you'd been paid to be here. #twitpant <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16863074724089856"><small>14:31:00</small></a></span></div>
<div class="a1 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Nadine: Jack, I'm so glad you're safe. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16863211022196736"><small>14:31:17</small></a></span></div>
<div class="a0 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: There is a castle up there, and in there lives a Giant who expects other people to do his work for him. I stole these. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16863378051956736"><small>14:31:57</small></a></span></div>
<div class="a1 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Nadine: A chicken, well it'll do for tea I suppose. And the harp might fetch a few groats. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16863543261396992"><small>14:32:36</small></a></span></div>
<div class="a0 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: These are magic mum, the chicken lays golden eggs and the harp plays Unlimited music, plus a few adverts. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16863648945278977"><small>14:33:01</small></a></span></div>
<div class="a1 user_mazzawoo"><img src="http://a2.twimg.com/profile_images/1194836970/download_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/mazzawoo" class="user">mazzawoo</a> The Harp: Upgrade to Hapify pro for only ten groats a month. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mazzawoo/status/16863701457965056"><small>14:33:14</small></a></span></div>
<div class="a0 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/pdavenne">@pdavenne</a>: To all those who're not following <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>, shame on you ;-) <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16863751936417793"><small>14:33:26</small></a></span></div>
<div class="a1 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Nadine: Those were your father’s! They were taken off us in inheritance tax when he died. Justice is served! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16863856290701313"><small>14:33:51</small></a></span></div>
<div class="a0 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: We're rich! Beyond our wildest dreams, I may even have a crack with the Princess. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16863986649669632"><small>14:34:22</small></a></span></div>
<div class="a1 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Nadine: Oooh and I can afford to go get vajazzled. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16864142581301248"><small>14:34:59</small></a></span></div>
<div class="a0 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>Should Nadine get vajazzled audience? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16864165926797313"><small>14:35:05</small></a></span></div>
<div class="a1 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Nadine: Oh yes I can... <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16864294817759234"><small>14:35:35</small></a></span></div>
<div class="a0 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>OK, now it's ACT III (See! I knew I could remember if I put my mind to it!) <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16864510568570880"><small>14:36:27</small></a></span></div>
<div class="a1 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>Scene One: Later that night Gideon the Giant was awoken by a terrible howling. Albeit with a phat bass line. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16864567418159105"><small>14:36:40</small></a></span></div>
<div class="a0 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: dear god, oh no she shouldnt. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16864573743173632"><small>14:36:42</small></a></span></div>
<div class="a1 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Nadine: Oh yes I should, bitches! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16864661467037696"><small>14:37:03</small></a></span></div>
<div class="a0 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> The Giant: W-who are you? What do you want? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16864671931834368"><small>14:37:05</small></a></span></div>
<div class="a1 user_gavinwray"><img src="http://a2.twimg.com/profile_images/1194834207/a2197104-ceaa-4c76-84fb-6f5c482e336e_normal.png" width="32"> <a target="_blank" href="http://twitter.com/gavinwray" class="user">gavinwray</a> Bob Marley's Ghost: T'night ya will be visited ba tree spirits. Dey will show you de error a I and I ways. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/gavinwray/status/16864702202118144"><small>14:37:12</small></a></span></div>
<div class="a0 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> The Giant: The error of my ways? I was living here quietly on a cloud and I keep getting robbed. My cook has left, I'm starving. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16864747810979841"><small>14:37:23</small></a></span></div>
<div class="a1 user_gavinwray"><img src="http://a2.twimg.com/profile_images/1194834207/a2197104-ceaa-4c76-84fb-6f5c482e336e_normal.png" width="32"> <a target="_blank" href="http://twitter.com/gavinwray" class="user">gavinwray</a> Bob Marley's Ghost: No Woman, No Pie. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/gavinwray/status/16864768396627969"><small>14:37:28</small></a></span></div>
<div class="a0 user_gavinwray"><img src="http://a2.twimg.com/profile_images/1194834207/a2197104-ceaa-4c76-84fb-6f5c482e336e_normal.png" width="32"> <a target="_blank" href="http://twitter.com/gavinwray" class="user">gavinwray</a> Bob Marley's Ghost: I and I are de ghost of your former business partner. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/gavinwray/status/16864847123709953"><small>14:37:47</small></a></span></div>
<div class="a1 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> The Giant:I've never had a business partner, Gianting is strictly a Sole Trader industry. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16864883475750912"><small>14:37:56</small></a></span></div>
<div class="a0 user_gavinwray"><img src="http://a2.twimg.com/profile_images/1194834207/a2197104-ceaa-4c76-84fb-6f5c482e336e_normal.png" width="32"> <a target="_blank" href="http://twitter.com/gavinwray" class="user">gavinwray</a> Bob Marley's Ghost: Ah, Ja! Ave I took de wrong turnin' again? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/gavinwray/status/16864938249158657"><small>14:38:09</small></a></span></div>
<div class="a1 user_gavinwray"><img src="http://a2.twimg.com/profile_images/1194834207/a2197104-ceaa-4c76-84fb-6f5c482e336e_normal.png" width="32"> <a target="_blank" href="http://twitter.com/gavinwray" class="user">gavinwray</a> Bob Marley's Ghost: I and I aven't been well since dat Danny Baker trod on me foot. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/gavinwray/status/16865010504441856"><small>14:38:26</small></a></span></div>
<div class="a0 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>Scene II <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16865041248686080"><small>14:38:33</small></a></span></div>
<div class="a1 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Nadine: Oh I'm so happy Jack, we've enough money to live on, and if that bloody harp would just shut up life would be perfect. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16865449685815296"><small>14:40:11</small></a></span></div>
<div class="a0 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Nadine: Put the kettle on. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16865538638614528"><small>14:40:32</small></a></span></div>
<div class="a1 user_ChrisUnitt"><img src="http://a0.twimg.com/profile_images/1194783558/twitpantoriot_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/ChrisUnitt" class="user">ChrisUnitt</a> Sgt Wagner: Yes ma'am, 200 students contained in the Castle courtyard. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/ChrisUnitt/status/16865573547806721"><small>14:40:40</small></a></span></div>
<div class="a0 user_ChrisUnitt"><img src="http://a0.twimg.com/profile_images/1194783558/twitpantoriot_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/ChrisUnitt" class="user">ChrisUnitt</a> Sgt Wagner: They're cold and wet, it's so funny I've nearly pissed myself. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/ChrisUnitt/status/16865649959641088"><small>14:40:58</small></a></span></div>
<div class="a1 user_ChrisUnitt"><img src="http://a0.twimg.com/profile_images/1194783558/twitpantoriot_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/ChrisUnitt" class="user">ChrisUnitt</a> Sgt Wagner: Which is ironic, because… <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/ChrisUnitt/status/16865704535916544"><small>14:41:11</small></a></span></div>
<div class="a0 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: Mum, I can't rest. I've struck out with the Princess, despite the money she won't marry me. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16865744985784320"><small>14:41:21</small></a></span></div>
<div class="a1 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Nadine: Ohh I love a Royal Wedding. And I could do with some new crockery. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16865820063825920"><small>14:41:39</small></a></span></div>
<div class="a0 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: Maybe, I… <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16865901861142528"><small>14:41:59</small></a></span></div>
<div class="a1 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> Assangelina: You must slay the giant. That way you'll get the respect of the Princess, and btw Abanazer is gay. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16865950515077121"><small>14:42:10</small></a></span></div>
<div class="a0 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>So to slay the Giant, and by extension lay the girl. Jack climbs up the beanstalk one last time. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16866006060244992"><small>14:42:23</small></a></span></div>
<div class="a1 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> I just ousted Gideon G. as the mayor of The Giant's Castle on <a target="_blank" title="Opens in new window" href="http://twitter.com/foursquare">@foursquare</a>! <a target="_blank" title="Opens in new window" href="http://foursquare.com/venue/14365301">http://foursquare.com/venue/14365301</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16866090894233600"><small>14:42:44</small></a></span></div>
<div class="a0 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> The Giant: Fee Fi Fo Fum, I see the checkin of a Foursquarian <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16866135316111361"><small>14:42:54</small></a></span></div>
<div class="a1 user_mazzawoo"><img src="http://a2.twimg.com/profile_images/1194836970/download_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/mazzawoo" class="user">mazzawoo</a> The Harp: ♫… unlimited music… ♫ <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mazzawoo/status/16866152173019136"><small>14:42:58</small></a></span></div>
<div class="a0 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: Oh shit. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16866207516856320"><small>14:43:11</small></a></span></div>
<div class="a1 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>Jack runs from the Castle, and climbs down the beanstalk with the Giant in hot pursuit <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16866253587091456"><small>14:43:22</small></a></span></div>
<div class="a0 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> The Giant: Fee Fi Fo Fum, I smell the lack of good roles for giants, and it hurts. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16866308717023232"><small>14:43:36</small></a></span></div>
<div class="a1 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: Mum, fetch my axe <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16866419740250113"><small>14:44:02</small></a></span></div>
<div class="a0 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Nadine: Quickly Jack, he's behind you! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16866540074835968"><small>14:44:31</small></a></span></div>
<div class="a1 user_mandyrose1"><img src="http://a3.twimg.com/profile_images/1189651915/1c3ef59a-f44f-4eae-9594-3cded3afd90b_normal.png" width="32"> <a target="_blank" href="http://twitter.com/mandyrose1" class="user">mandyrose1</a> Jocasta: Stop the Cuts *shoutingshakingfists* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mandyrose1/status/16866587000709120"><small>14:44:42</small></a></span></div>
<div class="a0 user_dracos"><img src="http://a3.twimg.com/profile_images/1194814545/HandsomePrince_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/dracos" class="user">dracos</a> Stop the cuts! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/dracos/status/16866595318013954"><small>14:44:44</small></a></span></div>
<div class="a1 user_cybrum"><img src="http://a1.twimg.com/profile_images/1194834277/3da7b0b5-eea6-4329-805a-dbdda457b270_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cybrum" class="user">cybrum</a> Stop the cuts! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cybrum/status/16866611445108736"><small>14:44:48</small></a></span></div>
<div class="a0 user_getgood"><img src="http://a3.twimg.com/profile_images/1194767748/175ea6f2-03ed-431c-b952-7eed46c75aec_normal.png" width="32"> <a target="_blank" href="http://twitter.com/getgood" class="user">getgood</a> Stop the cuts! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/getgood/status/16866683561975808"><small>14:45:05</small></a></span></div>
<div class="a1 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/probablydrunk">@probablydrunk</a> Jack: Christ won't this axe chop quicker, the Giant is gaining. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16866728935952385"><small>14:45:16</small></a></span></div>
<div class="a0 user_dracos"><img src="http://a3.twimg.com/profile_images/1194814545/HandsomePrince_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/dracos" class="user">dracos</a> Jocasta: Stop the cuts! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/dracos/status/16866783680008192"><small>14:45:29</small></a></span></div>
<div class="a1 user_mazzawoo"><img src="http://a2.twimg.com/profile_images/1194836970/download_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/mazzawoo" class="user">mazzawoo</a> The Harp: Let’s take a little tour of the features that make Harpify such a pleasure to use . . . <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mazzawoo/status/16866873844965376"><small>14:45:50</small></a></span></div>
<div class="a0 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/probablydrunk">@probablydrunk</a> Jack: Come on! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16867059736510464"><small>14:46:35</small></a></span></div>
<div class="a1 user_cybrum"><img src="http://a1.twimg.com/profile_images/1194834277/3da7b0b5-eea6-4329-805a-dbdda457b270_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cybrum" class="user">cybrum</a> RT: Stop the cuts! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cybrum/status/16867077713301504"><small>14:46:39</small></a></span></div>
<div class="a0 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> The Giant: Fee Fi Fo Fum… <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16867129592643584"><small>14:46:51</small></a></span></div>
<div class="a1 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>The Pantoland Daily is out! <a target="_blank" title="Opens in new window" href="http://upthear.se/1qm">http://upthear.se/1qm</a> ▸ Top stories today by <a target="_blank" title="Opens in new window" href="http://twitter.com/oldmotherhubbard">@oldmotherhubbard</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/pussinboots">@pussinboots</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/aladdin">@aladdin</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16867168511590400"><small>14:47:01</small></a></span></div>
<div class="a0 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>Finally the beanstalk fell and the giant plummeted to his death. Which shows the danger of keeping your assets in the cloud. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16867229484191744"><small>14:47:15</small></a></span></div>
<div class="a1 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Nadine: My son the hero! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16867341560184832"><small>14:47:42</small></a></span></div>
<div class="a0 user_bounder"><img src="http://a3.twimg.com/profile_images/1194816135/0dd4f58a-b6b2-4ecf-a61c-e5e1ee4c3eba_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bounder" class="user">bounder</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/bounder">@bounder</a> Princess: And so masterful with that large tool. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bounder/status/16867366226886657"><small>14:47:48</small></a></span></div>
<div class="a1 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> Jack: Oh Princess! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16867474528010240"><small>14:48:13</small></a></span></div>
<div class="a0 user_bounder"><img src="http://a3.twimg.com/profile_images/1194816135/0dd4f58a-b6b2-4ecf-a61c-e5e1ee4c3eba_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bounder" class="user">bounder</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/bounder">@bounder</a> Princess: Oh Jack, my hero <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bounder/status/16867494203490304"><small>14:48:18</small></a></span></div>
<div class="a1 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>This ending has been blocked by <a target="_blank" title="Opens in new window" href="http://twitter.com/edvaizey">@edvaizey</a> as it may contain adult scenes. Get your hands out of your pants, filthy peasants. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16867546661650434"><small>14:48:31</small></a></span></div>
<div class="a0 user_swearynews"><img src="http://a0.twimg.com/profile_images/1194795716/adebb28c-f405-4a96-b50b-a3eea1f7bb50_normal.png" width="32"> <a target="_blank" href="http://twitter.com/swearynews" class="user">swearynews</a> The Chicken: [Bows] I'm now available in the Lobby as Bernard Matthews memorial golden chicken twislers. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/swearynews/status/16867781723033601"><small>14:49:27</small></a></span></div>
<div class="a1 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>*Curtain descends* *Curtain rises for cast to take a bow" <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16867782708695040"><small>14:49:27</small></a></span></div>
<div class="a0 user_Daneed4"><img src="http://a0.twimg.com/profile_images/1194156334/bowler1_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Daneed4" class="user">Daneed4</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/parboo">@parboo</a>: <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> hurrah, hurrah more more where's the feel good song gone? <span><a class="date" target="_blank" href="http://twitter.com/Daneed4/status/16867844167827456"><small>14:49:42</small></a></span></div>
<div class="a1 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> *waves to <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> audience* <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16867879446122496"><small>14:49:50</small></a></span></div>
<div class="a0 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> Assangelina: *takes a bow* *dodges flying poison dart* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16867938120237057"><small>14:50:04</small></a></span></div>
<div class="a1 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/Joyouscomms">@Joyouscomms</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16867956688424960"><small>14:50:08</small></a></span></div>
<div class="a0 user_ChrisUnitt"><img src="http://a0.twimg.com/profile_images/1194783558/twitpantoriot_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/ChrisUnitt" class="user">ChrisUnitt</a> Sgt Wagner: *bows* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/ChrisUnitt/status/16868010400681984"><small>14:50:21</small></a></span></div>
<div class="a1 user_jonhickman"><img src="http://a3.twimg.com/profile_images/1194808655/0143edaf-7eae-4ba9-85eb-aad6c3eadf8c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/jonhickman" class="user">jonhickman</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/philipjohn">@philipjohn</a> unbuckle me. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jonhickman/status/16868032160735232"><small>14:50:26</small></a></span></div>
<div class="a0 user_Daneed4"><img src="http://a0.twimg.com/profile_images/1194156334/bowler1_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Daneed4" class="user">Daneed4</a> Congrats to all and a big thank you to <a target="_blank" title="Opens in new window" href="http://twitter.com/bounder">@bounder</a> xx <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Daneed4/status/16868033494515712"><small>14:50:27</small></a></span></div>
<div class="a1 user_karmadillo"><img src="http://a1.twimg.com/profile_images/1194839295/waterhouse_juliet_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/karmadillo" class="user">karmadillo</a> Can I get this frock off now?! And start using proper grammar?! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/karmadillo/status/16868042956865539"><small>14:50:29</small></a></span></div>
<div class="a0 user_probablydrunk"><img src="http://a1.twimg.com/profile_images/1194775183/35324979-815b-458e-b1da-66b08aca721c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/probablydrunk" class="user">probablydrunk</a> *BOWS, CURTIES, AND DEMANDS FLOWERS AND HOOKERS* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/probablydrunk/status/16868124234096640"><small>14:50:48</small></a></span></div>
<div class="a1 user_philipjohn"><img src="http://a1.twimg.com/profile_images/1194835785/efb0f29f-cff4-4108-a126-ab0725e667e6_normal.png" width="32"> <a target="_blank" href="http://twitter.com/philipjohn" class="user">philipjohn</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/jonhickman">@jonhickman</a> *click* off you go sir <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/philipjohn/status/16868129632157696"><small>14:50:50</small></a></span></div>
<div class="a0 user_jonhickman"><img src="http://a3.twimg.com/profile_images/1194808655/0143edaf-7eae-4ba9-85eb-aad6c3eadf8c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/jonhickman" class="user">jonhickman</a> *bows* thank you, lovely audience. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jonhickman/status/16868163509559296"><small>14:50:58</small></a></span></div>
<div class="a1 user_mandyrose1"><img src="http://a3.twimg.com/profile_images/1189651915/1c3ef59a-f44f-4eae-9594-3cded3afd90b_normal.png" width="32"> <a target="_blank" href="http://twitter.com/mandyrose1" class="user">mandyrose1</a> *waves fist at audience* cut cut <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mandyrose1/status/16868236029071361"><small>14:51:15</small></a></span></div>
<div class="a0 user_philipjohn"><img src="http://a1.twimg.com/profile_images/1194835785/efb0f29f-cff4-4108-a126-ab0725e667e6_normal.png" width="32"> <a target="_blank" href="http://twitter.com/philipjohn" class="user">philipjohn</a> *bows* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/philipjohn/status/16868243746586624"><small>14:51:17</small></a></span></div>
<div class="a1 user_gavinwray"><img src="http://a2.twimg.com/profile_images/1194834207/a2197104-ceaa-4c76-84fb-6f5c482e336e_normal.png" width="32"> <a target="_blank" href="http://twitter.com/gavinwray" class="user">gavinwray</a> Bob Marley's Ghost: Tank you, tank you. Now where the after shoo party at? Am tirsty. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/gavinwray/status/16868257881395200"><small>14:51:20</small></a></span></div>
<div class="a0 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/Kfyra">@Kfyra</a> *weeps* You like me! You really really like me! *weeps* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16868275652665344"><small>14:51:24</small></a></span></div>
<div class="a1 user_jonhickman"><img src="http://a3.twimg.com/profile_images/1194808655/0143edaf-7eae-4ba9-85eb-aad6c3eadf8c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/jonhickman" class="user">jonhickman</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/philipjohn">@philipjohn</a> you're such a gentle man <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jonhickman/status/16868276650901504"><small>14:51:25</small></a></span></div>
<div class="a0 user_ChrisUnitt"><img src="http://a0.twimg.com/profile_images/1194783558/twitpantoriot_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/ChrisUnitt" class="user">ChrisUnitt</a> Sgt Wagner: *applauds <a target="_blank" title="Opens in new window" href="http://twitter.com/bounder">@bounder</a> and takes Assangelina away for a quiet chat* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/ChrisUnitt/status/16868289217036288"><small>14:51:28</small></a></span></div>
<div class="a1 user_bounder"><img src="http://a3.twimg.com/profile_images/1194816135/0dd4f58a-b6b2-4ecf-a61c-e5e1ee4c3eba_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bounder" class="user">bounder</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Come along everyone I've got a <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23horseoutside">#horseoutside</a> <a target="_blank" title="Opens in new window" href="http://www.youtube.com/watch?v=ljPFZrRD3J8">http://www.youtube.com/watch?v=ljPFZrRD3J8</a> <span><a class="date" target="_blank" href="http://twitter.com/bounder/status/16868336126136320"><small>14:51:39</small></a></span></div>
<div class="a0 user_karmadillo"><img src="http://a1.twimg.com/profile_images/1194839295/waterhouse_juliet_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/karmadillo" class="user">karmadillo</a> *snort* You should SEE <a target="_blank" title="Opens in new window" href="http://twitter.com/jonhickman">@jonhickman</a> & <a target="_blank" title="Opens in new window" href="http://twitter.com/philipjohn">@philipjohn</a> backstage WITHOUT the costume!! :O <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/karmadillo/status/16868343877210112"><small>14:51:41</small></a></span></div>
<div class="a1 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> *bows* *swigs cava* moltes gracies <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16868345194221568"><small>14:51:41</small></a></span></div>
<div class="a0 user_philipjohn"><img src="http://a1.twimg.com/profile_images/1194835785/efb0f29f-cff4-4108-a126-ab0725e667e6_normal.png" width="32"> <a target="_blank" href="http://twitter.com/philipjohn" class="user">philipjohn</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/jonhickman">@jonhickman</a> Anytime. No, seriously - anytime *creepy stare* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/philipjohn/status/16868400718417920"><small>14:51:54</small></a></span></div>
<div class="a1 user_mazzawoo"><img src="http://a2.twimg.com/profile_images/1194836970/download_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/mazzawoo" class="user">mazzawoo</a> The Harp: Eeek, I've got me strings caught round me vajazzle :'( <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mazzawoo/status/16868437246611459"><small>14:52:03</small></a></span></div>
<div class="a0 user_philipjohn"><img src="http://a1.twimg.com/profile_images/1194835785/efb0f29f-cff4-4108-a126-ab0725e667e6_normal.png" width="32"> <a target="_blank" href="http://twitter.com/philipjohn" class="user">philipjohn</a> *blush* RT <a target="_blank" title="Opens in new window" href="http://twitter.com/karmadillo">@karmadillo</a>: *snort* You should SEE <a target="_blank" title="Opens in new window" href="http://twitter.com/jonhickman">@jonhickman</a> & <a target="_blank" title="Opens in new window" href="http://twitter.com/philipjohn">@philipjohn</a> backstage WITHOUT the costume!! :O <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/philipjohn/status/16868438639120384"><small>14:52:03</small></a></span></div>
<div class="a1 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>RT <a target="_blank" title="Opens in new window" href="http://twitter.com/bounder">@bounder</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Come along everyone I've got a <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23horseoutside">#horseoutside</a> <a target="_blank" title="Opens in new window" href="http://www.youtube.com/watch?v=ljPFZrRD3J8">http://www.youtube.com/watch?v=ljPFZrRD3J8</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16868459325427712"><small>14:52:08</small></a></span></div>
<div class="a0 user_jonhickman"><img src="http://a3.twimg.com/profile_images/1194808655/0143edaf-7eae-4ba9-85eb-aad6c3eadf8c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/jonhickman" class="user">jonhickman</a> bear hug for <a target="_blank" title="Opens in new window" href="http://twitter.com/bounder">@bounder</a>. Bravo darling, bravo. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jonhickman/status/16868497833332736"><small>14:52:17</small></a></span></div>
<div class="a1 user_dracos"><img src="http://a3.twimg.com/profile_images/1194814545/HandsomePrince_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/dracos" class="user">dracos</a> *bow* Up on Theatricalia at <a target="_blank" title="Opens in new window" href="http://theatricalia.com/d/nds">http://theatricalia.com/d/nds</a> :-) <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/dracos/status/16868547519053824"><small>14:52:29</small></a></span></div>
<div class="a0 user_Daneed4"><img src="http://a0.twimg.com/profile_images/1194156334/bowler1_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Daneed4" class="user">Daneed4</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/karmadillo">@karmadillo</a> harhar twitpic
<a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Daneed4/status/16868548936728576"><small>14:52:30</small></a></span></div>
<div class="a1 user_mandyrose1"><img src="http://a3.twimg.com/profile_images/1189651915/1c3ef59a-f44f-4eae-9594-3cded3afd90b_normal.png" width="32"> <a target="_blank" href="http://twitter.com/mandyrose1" class="user">mandyrose1</a> when is Joan Collins coming on ? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mandyrose1/status/16868567358111744"><small>14:52:34</small></a></span></div>
<div class="a0 user_swearynews"><img src="http://a0.twimg.com/profile_images/1194795716/adebb28c-f405-4a96-b50b-a3eea1f7bb50_normal.png" width="32"> <a target="_blank" href="http://twitter.com/swearynews" class="user">swearynews</a> Thank you <a target="_blank" title="Opens in new window" href="http://twitter.com/bounder">@bounder</a> So, now where are the drugs for the after-party? Or an Epidural [squark] <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/swearynews/status/16868599704588288"><small>14:52:42</small></a></span></div>
<div class="a1 user_karmadillo"><img src="http://a1.twimg.com/profile_images/1194839295/waterhouse_juliet_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/karmadillo" class="user">karmadillo</a> Thank you <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a> / <a target="_blank" title="Opens in new window" href="http://twitter.com/bounder">@bounder</a> - FABULOUS as ever!! x <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/karmadillo/status/16868640049594369"><small>14:52:51</small></a></span></div>
<div class="a0 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>*Hands a bouquet of flowers to <a target="_blank" title="Opens in new window" href="http://twitter.com/bounder">@bounder</a>, the creator of <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>*</strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16868663831306241"><small>14:52:57</small></a></span></div>
<div class="a1 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Bravo to <a target="_blank" title="Opens in new window" href="http://twitter.com/bounder">@bounder</a> on a cracking script for <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>. The man is a genius! <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16868716398518272"><small>14:53:10</small></a></span></div>
<div class="a0 user_cybrum"><img src="http://a1.twimg.com/profile_images/1194834277/3da7b0b5-eea6-4329-805a-dbdda457b270_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cybrum" class="user">cybrum</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/amandagolding">@amandagolding</a>: *standing ovation for <a target="_blank" title="Opens in new window" href="http://twitter.com/daneed4">@daneed4</a> and <a target="_blank" title="Opens in new window" href="http://twitter.com/karmadillo">@karmadillo</a>* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cybrum/status/16868760644227072"><small>14:53:20</small></a></span></div>
<div class="a1 user_cybrum"><img src="http://a1.twimg.com/profile_images/1194834277/3da7b0b5-eea6-4329-805a-dbdda457b270_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cybrum" class="user">cybrum</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/Kfyra">@Kfyra</a>: <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> - *standing ovation for <a target="_blank" title="Opens in new window" href="http://twitter.com/Benjiw">@Benjiw</a>* <span><a class="date" target="_blank" href="http://twitter.com/cybrum/status/16868823948853248"><small>14:53:35</small></a></span></div>
<div class="a0 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> Wings off to <a target="_blank" title="Opens in new window" href="http://twitter.com/bounder">@bounder</a> for pulling it off again :) <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16868825358147584"><small>14:53:36</small></a></span></div>
<div class="a1 user_jonhickman"><img src="http://a3.twimg.com/profile_images/1194808655/0143edaf-7eae-4ba9-85eb-aad6c3eadf8c_normal.png" width="32"> <a target="_blank" href="http://twitter.com/jonhickman" class="user">jonhickman</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/amandagolding">@amandagolding</a>: *standing ovation for <a target="_blank" title="Opens in new window" href="http://twitter.com/daneed4">@daneed4</a> and <a target="_blank" title="Opens in new window" href="http://twitter.com/karmadillo">@karmadillo</a>* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jonhickman/status/16868840356974592"><small>14:53:39</small></a></span></div>
<div class="a0 user_bounder"><img src="http://a3.twimg.com/profile_images/1194816135/0dd4f58a-b6b2-4ecf-a61c-e5e1ee4c3eba_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bounder" class="user">bounder</a> Take a bow <a target="_blank" title="Opens in new window" href="http://twitter.com/joannageary">@joannageary</a> as <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a> … <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bounder/status/16868859415891968"><small>14:53:44</small></a></span></div>
<div class="a1 user_swearynews"><img src="http://a0.twimg.com/profile_images/1194795716/adebb28c-f405-4a96-b50b-a3eea1f7bb50_normal.png" width="32"> <a target="_blank" href="http://twitter.com/swearynews" class="user">swearynews</a> Not just a cracking script, but <a target="_blank" title="Opens in new window" href="http://twitter.com/bounder">@bounder</a> makes a beautiful princess... <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/swearynews/status/16868872695058433"><small>14:53:47</small></a></span></div>
<div class="a0 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/dracos">@dracos</a>: *bow* Up on Theatricalia at <a target="_blank" title="Opens in new window" href="http://theatricalia.com/d/nds">http://theatricalia.com/d/nds</a> :-) <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16868874821570560"><small>14:53:47</small></a></span></div>
<div class="a1 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> brilliant <a target="_blank" title="Opens in new window" href="http://twitter.com/bounder">@bounder</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16868963757596674"><small>14:54:09</small></a></span></div>
<div class="a0 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>Thank you to <a target="_blank" title="Opens in new window" href="http://twitter.com/dracos">@dracos</a> for setting and to all the cast and audience <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16869056724336640"><small>14:54:31</small></a></span></div>
<div class="a1 user_swearynews"><img src="http://a0.twimg.com/profile_images/1194795716/adebb28c-f405-4a96-b50b-a3eea1f7bb50_normal.png" width="32"> <a target="_blank" href="http://twitter.com/swearynews" class="user">swearynews</a> Big thanks <a target="_blank" title="Opens in new window" href="http://twitter.com/ATTA_grrl">@ATTA_grrl</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> A back-stage pass for you... <span><a class="date" target="_blank" href="http://twitter.com/swearynews/status/16869132507029505"><small>14:54:49</small></a></span></div>
<div class="a0 user_getgood"><img src="http://a3.twimg.com/profile_images/1194767748/175ea6f2-03ed-431c-b952-7eed46c75aec_normal.png" width="32"> <a target="_blank" href="http://twitter.com/getgood" class="user">getgood</a> *bows with placard, which hits <a target="_blank" title="Opens in new window" href="http://twitter.com/chrisunitt">@chrisunitt</a> over the head* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/getgood/status/16869197640372224"><small>14:55:04</small></a></span></div>
<div class="a1 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> any revels left anybody? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16869247972020224"><small>14:55:16</small></a></span></div>
<div class="a0 user_cybrum"><img src="http://a1.twimg.com/profile_images/1194834277/3da7b0b5-eea6-4329-805a-dbdda457b270_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cybrum" class="user">cybrum</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/peteashton">@peteashton</a>: Congrats to <a target="_blank" title="Opens in new window" href="http://twitter.com/bounder">@bounder</a> on another great <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>. I had my doubts but it was marvelous. Relive it at <a target="_blank" title="Opens in new window" href="http://beanstalk.tw">http://beanstalk.tw</a> ... <span><a class="date" target="_blank" href="http://twitter.com/cybrum/status/16869418449506304"><small>14:55:57</small></a></span></div>
<div class="a1 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong>You will be able to relive the whole damn thing here at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> presently <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16869492067934208"><small>14:56:14</small></a></span></div>
<div class="a0 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: You will be able to relive the whole damn thing here at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> presently <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16869560275701760"><small>14:56:31</small></a></span></div>
<div class="a1 user_gavinwray"><img src="http://a1.twimg.com/profile_images/1194874766/avatar-2010-300x300_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/gavinwray" class="user">gavinwray</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: You will be able to relive the whole damn thing here at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> presently <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/gavinwray/status/16869615732793344"><small>14:56:44</small></a></span></div>
<div class="a0 user_karmadillo"><img src="http://a1.twimg.com/profile_images/1194839295/waterhouse_juliet_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/karmadillo" class="user">karmadillo</a> hahahaha!! RT: <a target="_blank" title="Opens in new window" href="http://twitter.com/garethhector">@garethhector</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/Bounder">@Bounder</a> Were you the dog in Neighbours? Oh, Bouncer... # <span><a class="date" target="_blank" href="http://twitter.com/karmadillo/status/16869649371107328"><small>14:56:52</small></a></span></div>
<div class="a1 user_mandyrose1"><img src="http://a3.twimg.com/profile_images/1189651915/1c3ef59a-f44f-4eae-9594-3cded3afd90b_normal.png" width="32"> <a target="_blank" href="http://twitter.com/mandyrose1" class="user">mandyrose1</a> German Market anyone - nice pint of beer <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mandyrose1/status/16869666232213504"><small>14:56:56</small></a></span></div>
<div class="a0 user_karmadillo"><img src="http://a1.twimg.com/profile_images/1194839295/waterhouse_juliet_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/karmadillo" class="user">karmadillo</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a> You will be able to relive the whole damn thing here at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> presently <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/karmadillo/status/16869775607074816"><small>14:57:22</small></a></span></div>
<div class="a1 user_getgood"><img src="http://a3.twimg.com/profile_images/1194767748/175ea6f2-03ed-431c-b952-7eed46c75aec_normal.png" width="32"> <a target="_blank" href="http://twitter.com/getgood" class="user">getgood</a> Bravo to <a target="_blank" title="Opens in new window" href="http://twitter.com/bounder">@bounder</a> for awesome script *claps* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/getgood/status/16869805441159168"><small>14:57:29</small></a></span></div>
<div class="a0 user_graphiquillan"><img src="http://a2.twimg.com/profile_images/1194769792/41f24914-8f7f-4af5-b580-650c20ffc41f_normal.png" width="32"> <a target="_blank" href="http://twitter.com/graphiquillan" class="user">graphiquillan</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: You will be able to relive the whole damn thing here at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> presently <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/graphiquillan/status/16869820242853889"><small>14:57:33</small></a></span></div>
<div class="a1 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> oooh I like this giant look - mind if I hold onto the costume <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto_dir">@twitpanto_dir</a> ? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16869997284429824"><small>14:58:15</small></a></span></div>
<div class="a0 user_philipjohn"><img src="http://a1.twimg.com/profile_images/1194835785/efb0f29f-cff4-4108-a126-ab0725e667e6_normal.png" width="32"> <a target="_blank" href="http://twitter.com/philipjohn" class="user">philipjohn</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/getgood">@getgood</a>: Bravo to <a target="_blank" title="Opens in new window" href="http://twitter.com/bounder">@bounder</a> for awesome script *claps* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/philipjohn/status/16870037054824449"><small>14:58:24</small></a></span></div>
<div class="a1 user_twitpanto"><img src="http://a2.twimg.com/profile_images/570032012/twitpantoav_normal.png" width="32"> <a target="_blank" href="http://twitter.com/twitpanto" class="user">twitpanto</a> <strong><a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Be careful out there, and check your Christmas Cheer at <a target="_blank" title="Opens in new window" href="http://christmasometer.co.uk/">http://christmasometer.co.uk/</a></strong> <span><a class="date" target="_blank" href="http://twitter.com/twitpanto/status/16870125491724289"><small>14:58:46</small></a></span></div>
<div class="a0 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/philipjohn">@philipjohn</a>: RT <a target="_blank" title="Opens in new window" href="http://twitter.com/getgood">@getgood</a>: Bravo to <a target="_blank" title="Opens in new window" href="http://twitter.com/bounder">@bounder</a> for awesome script *claps* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16870145657929728"><small>14:58:50</small></a></span></div>
<div class="a1 user_karmadillo"><img src="http://a1.twimg.com/profile_images/1194839295/waterhouse_juliet_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/karmadillo" class="user">karmadillo</a> Awesome narrator <a target="_blank" title="Opens in new window" href="http://twitter.com/joannageary">@joannageary</a>! *clap clap* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/karmadillo/status/16870223953010689"><small>14:59:09</small></a></span></div>
<div class="a0 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Be careful out there, and check your Christmas Cheer at <a target="_blank" title="Opens in new window" href="http://christmasometer.co.uk/">http://christmasometer.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16870256953794561"><small>14:59:17</small></a></span></div>
<div class="a1 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> Right, now to scrape this slap off my face & return to "normal". <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16870325669068800"><small>14:59:33</small></a></span></div>
<div class="a0 user_bounder"><img src="http://a3.twimg.com/profile_images/1194816135/0dd4f58a-b6b2-4ecf-a61c-e5e1ee4c3eba_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bounder" class="user">bounder</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/cataspanglish">@cataspanglish</a> I'd be disapointed if you didn't <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bounder/status/16870359902982144"><small>14:59:41</small></a></span></div>
<div class="a1 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/benjiw">@benjiw</a> do you think that's all it takes? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16870582477922304"><small>15:00:34</small></a></span></div>
<div class="a0 user_benjiw"><img src="http://a3.twimg.com/profile_images/1194776276/52b28679-debb-41c7-a97c-06bf75b039b1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/benjiw" class="user">benjiw</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: You will be able to relive the whole damn thing here at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> presently <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/benjiw/status/16870602040156160"><small>15:00:39</small></a></span></div>
<div class="a1 user_karmadillo"><img src="http://a1.twimg.com/profile_images/1194839295/waterhouse_juliet_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/karmadillo" class="user">karmadillo</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/TomSprints">@TomSprints</a> ehhh yes ummm I'll ehhhhh opt-out, then, ta! :O <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/karmadillo/status/16871308700680192"><small>15:03:28</small></a></span></div>
<div class="a0 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/pdavenne">@pdavenne</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/MargaOjeda">@MargaOjeda</a> que tal the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> ? <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16871419765854208"><small>15:03:54</small></a></span></div>
<div class="a1 user_dracos"><img src="http://a3.twimg.com/profile_images/1194814545/HandsomePrince_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/dracos" class="user">dracos</a> That went very well! Twitter's streaming API was flawless. Thanks to organising <a target="_blank" title="Opens in new window" href="http://twitter.com/bounder">@bounder</a>, narrating <a target="_blank" title="Opens in new window" href="http://twitter.com/joannageary">@joannageary</a>, and all cast <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/dracos/status/16871448903684096"><small>15:04:01</small></a></span></div>
<div class="a0 user_karmadillo"><img src="http://a1.twimg.com/profile_images/1194839295/waterhouse_juliet_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/karmadillo" class="user">karmadillo</a> Good job, that man <a target="_blank" title="Opens in new window" href="http://twitter.com/draco">@draco</a> :) *claps* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/karmadillo/status/16871896603693056"><small>15:05:48</small></a></span></div>
<div class="a1 user_cataspanglish"><img src="http://a2.twimg.com/profile_images/1194764779/8a67ca3d-eae9-41db-aa78-5a999c2d36b9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/cataspanglish" class="user">cataspanglish</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/pigsonthewing">@pigsonthewing</a>: <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> 2010 event now on Wikipedia, in <a target="_blank" title="Opens in new window" href="http://en.wikipedia.org/wiki/Jon_Bounds">http://en.wikipedia.org/wiki/Jon_Bounds</a> <span><a class="date" target="_blank" href="http://twitter.com/cataspanglish/status/16873152923574272"><small>15:10:47</small></a></span></div>
<div class="a0 user_getgood"><img src="http://a3.twimg.com/profile_images/1194767748/175ea6f2-03ed-431c-b952-7eed46c75aec_normal.png" width="32"> <a target="_blank" href="http://twitter.com/getgood" class="user">getgood</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/dracos">@dracos</a> Thanks for setting a lovely stage and well done <a target="_blank" title="Opens in new window" href="http://twitter.com/joannageary">@joannageary</a> on grand narration. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/getgood/status/16874739083509760"><small>15:17:05</small></a></span></div>
<div class="a1 user_mazzawoo"><img src="http://a2.twimg.com/profile_images/1194836970/download_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/mazzawoo" class="user">mazzawoo</a> Cool! :D RT <a target="_blank" title="Opens in new window" href="http://twitter.com/pigsonthewing">@pigsonthewing</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> 2010 event now on Wikipedia, in <a target="_blank" title="Opens in new window" href="http://en.wikipedia.org/wiki/Jon_Bounds">http://en.wikipedia.org/wiki/Jon_Bounds</a> <span><a class="date" target="_blank" href="http://twitter.com/mazzawoo/status/16875126733676544"><small>15:18:38</small></a></span></div>
<div class="a0 user_bounder"><img src="http://a3.twimg.com/profile_images/1194816135/0dd4f58a-b6b2-4ecf-a61c-e5e1ee4c3eba_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bounder" class="user">bounder</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/cataspanglish">@cataspanglish</a> "picaresca " huh? will follow and practice my appalling Spanish <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpicaresca">#twitpicaresca</a> <span><a class="date" target="_blank" href="http://twitter.com/bounder/status/16876800416153600"><small>15:25:17</small></a></span></div>
<div class="a1 user_bounder"><img src="http://a3.twimg.com/profile_images/1194816135/0dd4f58a-b6b2-4ecf-a61c-e5e1ee4c3eba_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bounder" class="user">bounder</a> This year's <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> wordle shoe <a target="_blank" title="Opens in new window" href="http://www.wordle.net/show/wrdl/2909004/Twitpanto_2010">http://www.wordle.net/show/wrdl/2909004/Twitpanto_2010</a> <span><a class="date" target="_blank" href="http://twitter.com/bounder/status/16881192829714432"><small>15:42:44</small></a></span></div>
<!-- STAGE DATA HERE -->
</div></div>
<img id="curtain-right" src="/i/right_sm.png" alt="">
<img id="curtain-left" src="/i/left_sm.png" alt="">
</div>
<div id="audience">
<div class="wrap"><div class="results">
<!-- post-launch text --><!--
<div class="a0 pre">
<p>A facility to replay this year’s panto will be here soon.</p>
</div>
--><!-- post-launch text -->
<!-- AUDIENCE DATA HERE -->
<div class="a0 user_paulhenderson"><img src="http://a0.twimg.com/profile_images/622751336/profile_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/paulhenderson" class="user">paulhenderson</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/dracos">@dracos</a>: Lights up on the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> stage: <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> (hoping I don't have to ask everyone to refresh at 1.45 ... <span><a class="date" target="_blank" href="http://twitter.com/paulhenderson/status/16840197966663680"><small>12:59:50</small></a></span></div>
<div class="a1 user_shuckle"><img src="http://a0.twimg.com/profile_images/1167160344/profile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/shuckle" class="user">shuckle</a> It's nearly time for <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> (cue "oh, no it isn't!") <span><a class="date" target="_blank" href="http://twitter.com/shuckle/status/16840365336170496"><small>13:00:30</small></a></span></div>
<div class="a0 user_parboo"><img src="http://a3.twimg.com/profile_images/1188793063/786b29fc-6e32-4664-99be-246cc846f193_normal.png" width="32"> <a target="_blank" href="http://twitter.com/parboo" class="user">parboo</a> Best get a shifty if I'm to do a quick whizz round waitrose before the essential <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>. <span><a class="date" target="_blank" href="http://twitter.com/parboo/status/16840610191249408"><small>13:01:29</small></a></span></div>
<div class="a1 user_johnpopham"><img src="http://a0.twimg.com/profile_images/1105154428/JP_at_Thinking_Digital_2010_2_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/johnpopham" class="user">johnpopham</a> Can they not open the doors earlier for <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23TwitPanto">#TwitPanto</a>? It's freezing queueing out here! <span><a class="date" target="_blank" href="http://twitter.com/johnpopham/status/16840789854257152"><small>13:02:11</small></a></span></div>
<div class="a0 user_proactivepaul"><img src="http://a2.twimg.com/profile_images/62243958/1101000123_100100_20081007_1_logo_p_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/proactivepaul" class="user">proactivepaul</a> may need to adjust my afternoon <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23TwitPanto">#TwitPanto</a> cast includes <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23Riot">#Riot</a> police & <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23panto">#panto</a>-uncut protesters! <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/proactivepaul/status/16841374498299904"><small>13:04:31</small></a></span></div>
<div class="a1 user_karenstrunks"><img src="http://a3.twimg.com/profile_images/781259359/twitpic_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/karenstrunks" class="user">karenstrunks</a> http://twitpic.com/3hqwq5 <br><img class="twitpic" src="http://twitpic.com/show/thumb/3hqwq5" alt=""> blinged up my nails for Xmas! Now to put on my posh frock for <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/karenstrunks/status/16841598448959488"><small>13:05:24</small></a></span></div>
<div class="a0 user_proactivepaul"><img src="http://a2.twimg.com/profile_images/62243958/1101000123_100100_20081007_1_logo_p_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/proactivepaul" class="user">proactivepaul</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/graphiquillan">@graphiquillan</a> Now's a good time to stock up on the noisiest snacks you can find <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> // Oh no it isn't! <span><a class="date" target="_blank" href="http://twitter.com/proactivepaul/status/16841737666306048"><small>13:05:57</small></a></span></div>
<div class="a1 user_pthreadneedle"><img src="http://a2.twimg.com/profile_images/1192982960/me_in_space_small_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pthreadneedle" class="user">pthreadneedle</a> Will be attending <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> this year. How futuristic is that? <span><a class="date" target="_blank" href="http://twitter.com/pthreadneedle/status/16842211559743488"><small>13:07:50</small></a></span></div>
<div class="a0 user_joannageary"><img src="http://a0.twimg.com/profile_images/1194806893/a254c683-3452-4258-b22e-2279acaac81d_normal.png" width="32"> <a target="_blank" href="http://twitter.com/joannageary" class="user">joannageary</a> Lines read and highlighted, key characters profiles up in order of appearance, timer at the ready...there's an art to this <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> stuff! <span><a class="date" target="_blank" href="http://twitter.com/joannageary/status/16842229481996290"><small>13:07:55</small></a></span></div>
<div class="a1 user_LittleLaura"><img src="http://a3.twimg.com/profile_images/1192013936/christmas-bg-popobird_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/LittleLaura" class="user">LittleLaura</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/dracos">@dracos</a>: Lights up on the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> stage: <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> (hoping I don't have to ask everyone to refresh at 1.45 ... <span><a class="date" target="_blank" href="http://twitter.com/LittleLaura/status/16842262377930752"><small>13:08:02</small></a></span></div>
<div class="a0 user_tobynutter"><img src="http://a2.twimg.com/profile_images/1167631754/Photo_148_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/tobynutter" class="user">tobynutter</a> Getting ready to watch <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> for the first time. Really looking forward to it! <span><a class="date" target="_blank" href="http://twitter.com/tobynutter/status/16842742780928000"><small>13:09:57</small></a></span></div>
<div class="a1 user_dullaccountant"><img src="http://a2.twimg.com/profile_images/566668786/twitterProfilePhoto_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/dullaccountant" class="user">dullaccountant</a> He's behind you! BOOOOOO! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/dullaccountant/status/16842993390592000"><small>13:10:57</small></a></span></div>
<div class="a0 user_tobynutter"><img src="http://a2.twimg.com/profile_images/1167631754/Photo_148_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/tobynutter" class="user">tobynutter</a> What music would <a target="_blank" title="Opens in new window" href="http://twitter.com/jonhickman">@jonhickman</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/graphiquillan">@graphiquillan</a> et al recommend to accompany <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>, or will the website have sound? <span><a class="date" target="_blank" href="http://twitter.com/tobynutter/status/16843339752013824"><small>13:12:19</small></a></span></div>
<div class="a1 user_proactivepaul"><img src="http://a2.twimg.com/profile_images/62243958/1101000123_100100_20081007_1_logo_p_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/proactivepaul" class="user">proactivepaul</a> via <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/proactivepaul">@proactivepaul</a> if you miss <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>, it'll be archived <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk">http://beanstalk.twitpanto.co.uk</a> // best news on Twitter this year! <span><a class="date" target="_blank" href="http://twitter.com/proactivepaul/status/16843381489532928"><small>13:12:29</small></a></span></div>
<div class="a0 user_parboo"><img src="http://a3.twimg.com/profile_images/1188793063/786b29fc-6e32-4664-99be-246cc846f193_normal.png" width="32"> <a target="_blank" href="http://twitter.com/parboo" class="user">parboo</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/graphiquillan">@graphiquillan</a> oh, I will also be late!!! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/parboo/status/16843883946180608"><small>13:14:29</small></a></span></div>
<div class="a1 user_parboo"><img src="http://a3.twimg.com/profile_images/1188793063/786b29fc-6e32-4664-99be-246cc846f193_normal.png" width="32"> <a target="_blank" href="http://twitter.com/parboo" class="user">parboo</a> Seriously good xmas twitter cheer, now in its 3rd year RT <a target="_blank" title="Opens in new window" href="http://twitter.com/graphiquillan">@graphiquillan</a> Catch <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> as it happens at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/parboo/status/16844207415099392"><small>13:15:46</small></a></span></div>
<div class="a0 user_hannahdev"><img src="http://a3.twimg.com/profile_images/1147251871/twit2_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/hannahdev" class="user">hannahdev</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/timesjoanna">@timesjoanna</a>: As you know, I'm a serious work type, so it'll be <a target="_blank" title="Opens in new window" href="http://twitter.com/joannageary">@joannageary</a> taking the reigns as the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> narrator at 2pm! htt ... <span><a class="date" target="_blank" href="http://twitter.com/hannahdev/status/16844310628532226"><small>13:16:11</small></a></span></div>
<div class="a1 user_pigsonthewing"><img src="http://a2.twimg.com/profile_images/612642446/andymabbettsketchhead150_bigger_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pigsonthewing" class="user">pigsonthewing</a> May not attend <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> this year as i) <a target="_blank" title="Opens in new window" href="http://twitter.com/bounder">@bounder</a> told me there wasn't one and ii) coughing all way through is not fair on audience or cast <span><a class="date" target="_blank" href="http://twitter.com/pigsonthewing/status/16845150462418945"><small>13:19:31</small></a></span></div>
<div class="a0 user_Ilex_Press"><img src="http://a3.twimg.com/profile_images/70350583/ilex-twitter_normal.gif" width="32"> <a target="_blank" href="http://twitter.com/Ilex_Press" class="user">Ilex_Press</a> Ilex is terribly excited about <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> – see if you can guess which character works at Ilex. Oh yes they do. <a target="_blank" title="Opens in new window" href="http://is.gd/j4m64">http://is.gd/j4m64</a> <span><a class="date" target="_blank" href="http://twitter.com/Ilex_Press/status/16845168841854977"><small>13:19:35</small></a></span></div>
<div class="a1 user_tobynutter"><img src="http://a2.twimg.com/profile_images/1167631754/Photo_148_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/tobynutter" class="user">tobynutter</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/ChrisUnitt">@ChrisUnitt</a> nice avatar! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/tobynutter/status/16845265403117568"><small>13:19:58</small></a></span></div>
<div class="a0 user_parboo"><img src="http://a3.twimg.com/profile_images/1188793063/786b29fc-6e32-4664-99be-246cc846f193_normal.png" width="32"> <a target="_blank" href="http://twitter.com/parboo" class="user">parboo</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/graphiquillan">@graphiquillan</a> oh yes I will. Rofl. ;) <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/parboo/status/16845864643338240"><small>13:22:21</small></a></span></div>
<div class="a1 user_catnip"><img src="http://a3.twimg.com/profile_images/1194718788/7821d5e9-135e-4b2e-8935-a054b5287ddd_normal.png" width="32"> <a target="_blank" href="http://twitter.com/catnip" class="user">catnip</a> Looking forward to <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> live at 2pm. Watch it at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> and use <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> to be in the audience! <span><a class="date" target="_blank" href="http://twitter.com/catnip/status/16846515771285504"><small>13:24:57</small></a></span></div>
<div class="a0 user_jigar_patel"><img src="http://a1.twimg.com/profile_images/670193057/n75900042_3127_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jigar_patel" class="user">jigar_patel</a> Can't wait to watch/see <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> this morning! <span><a class="date" target="_blank" href="http://twitter.com/jigar_patel/status/16846735078858752"><small>13:25:49</small></a></span></div>
<div class="a1 user_Thayer"><img src="http://a2.twimg.com/profile_images/1171513278/avatar_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Thayer" class="user">Thayer</a> Ooo excited! Missed it last year! RT <a target="_blank" title="Opens in new window" href="http://twitter.com/dracos">@dracos</a> Getting into costume for <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Thayer/status/16846825306722305"><small>13:26:10</small></a></span></div>
<div class="a0 user_EvaPalazzetti"><img src="http://a3.twimg.com/profile_images/1152122891/Small_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EvaPalazzetti" class="user">EvaPalazzetti</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/catnip">@catnip</a>: Looking forward to <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> live at 2pm. Watch it at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> and use <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> to be in the aud ... <span><a class="date" target="_blank" href="http://twitter.com/EvaPalazzetti/status/16847069247438849"><small>13:27:08</small></a></span></div>
<div class="a1 user_catnip"><img src="http://a3.twimg.com/profile_images/1194718788/7821d5e9-135e-4b2e-8935-a054b5287ddd_normal.png" width="32"> <a target="_blank" href="http://twitter.com/catnip" class="user">catnip</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/pigsonthewing">@pigsonthewing</a> there is one! All very last minute. You should come, we'll put you in a box away from the rest of the audience :) <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/catnip/status/16847131969060864"><small>13:27:23</small></a></span></div>
<div class="a0 user_NaomiGreen"><img src="http://a1.twimg.com/profile_images/72492405/n508245602_1265266_1920_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/NaomiGreen" class="user">NaomiGreen</a> Just getting myself some lunch before settling down to my first <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>. Excited!!! <span><a class="date" target="_blank" href="http://twitter.com/NaomiGreen/status/16847540397805568"><small>13:29:01</small></a></span></div>
<div class="a1 user_IvoryRajkumari"><img src="http://a1.twimg.com/profile_images/405334708/perish_normal.png" width="32"> <a target="_blank" href="http://twitter.com/IvoryRajkumari" class="user">IvoryRajkumari</a> Only found out about <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> 5 minutes ago.
This'll be interesting. <span><a class="date" target="_blank" href="http://twitter.com/IvoryRajkumari/status/16847953075372032"><small>13:30:39</small></a></span></div>
<div class="a0 user_Joyouscomms"><img src="http://a2.twimg.com/profile_images/1194107326/image_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Joyouscomms" class="user">Joyouscomms</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/mandyrose1">@mandyrose1</a>: warming up the vocal cords ready for some heavy duty shouting <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Joyouscomms/status/16848103361482752"><small>13:31:15</small></a></span></div>
<div class="a1 user_snowblind"><img src="http://a0.twimg.com/profile_images/249501212/3360563547_a2f82cde84_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/snowblind" class="user">snowblind</a> if you're bored at 2pm you can watch <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/snowblind/status/16848349021863936"><small>13:32:14</small></a></span></div>
<div class="a0 user_2pmisdie"><img src="http://a0.twimg.com/profile_images/1184498476/21o7v54_normal.gif" width="32"> <a target="_blank" href="http://twitter.com/2pmisdie" class="user">2pmisdie</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/snowblind">@snowblind</a> -if you're bored at 2pm you can watch <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/2pmisdie/status/16848699892178944"><small>13:33:37</small></a></span></div>
<div class="a1 user_tobynutter"><img src="http://a2.twimg.com/profile_images/1167631754/Photo_148_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/tobynutter" class="user">tobynutter</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/graphiquillan">@graphiquillan</a>: *crosses legs* *jiggles about* Gawwwd, I'm dying for a Wiki <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/tobynutter/status/16848732192514050"><small>13:33:45</small></a></span></div>
<div class="a0 user_jemimah_knight"><img src="http://a2.twimg.com/profile_images/602892821/jk_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jemimah_knight" class="user">jemimah_knight</a> Reading tweeters and audience warming up for <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23Twitpanto">#Twitpanto</a> at 2pm <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/jemimah_knight/status/16848984047886336"><small>13:34:45</small></a></span></div>
<div class="a1 user_kazthomas"><img src="http://a3.twimg.com/profile_images/1194789967/f839dde9-a317-4454-b86b-b9c536a54b71_normal.png" width="32"> <a target="_blank" href="http://twitter.com/kazthomas" class="user">kazthomas</a> Getting ready to watch <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> @ 2pm! *Break a Leg* <span><a class="date" target="_blank" href="http://twitter.com/kazthomas/status/16849237757136897"><small>13:35:45</small></a></span></div>
<div class="a0 user_joannageary"><img src="http://a0.twimg.com/profile_images/1194806893/a254c683-3452-4258-b22e-2279acaac81d_normal.png" width="32"> <a target="_blank" href="http://twitter.com/joannageary" class="user">joannageary</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/graphiquillan">@graphiquillan</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23SMUT">#SMUT</a>! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/joannageary/status/16849320783388672"><small>13:36:05</small></a></span></div>
<div class="a1 user_joannageary"><img src="http://a0.twimg.com/profile_images/1194806893/a254c683-3452-4258-b22e-2279acaac81d_normal.png" width="32"> <a target="_blank" href="http://twitter.com/joannageary" class="user">joannageary</a> OK, *asks timidly as scared of getting stage fright* who's going to be watching <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>? <span><a class="date" target="_blank" href="http://twitter.com/joannageary/status/16850110096867329"><small>13:39:13</small></a></span></div>
<div class="a0 user_timesjoanna"><img src="http://a0.twimg.com/profile_images/1194415366/e87df405-7e68-4cda-b23c-0e15544b5188_normal.png" width="32"> <a target="_blank" href="http://twitter.com/timesjoanna" class="user">timesjoanna</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/caitlinmoran">@caitlinmoran</a> Any chance of getting some expert heckling from yourself for <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>? :) (I'm narrating see...) <a target="_blank" title="Opens in new window" href="http://bit.ly/h3OzEK">http://bit.ly/h3OzEK</a> <span><a class="date" target="_blank" href="http://twitter.com/timesjoanna/status/16850379450880000"><small>13:40:18</small></a></span></div>
<div class="a1 user_tobynutter"><img src="http://a2.twimg.com/profile_images/1167631754/Photo_148_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/tobynutter" class="user">tobynutter</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a> I cant seem to sign in on the page, anyone else having this problem? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/tobynutter/status/16850457896951809"><small>13:40:36</small></a></span></div>
<div class="a0 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> starts in 20 minutes : <a target="_blank" title="Opens in new window" href="http://is.gd/j4qEK">http://is.gd/j4qEK</a> <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16850533105012737"><small>13:40:54</small></a></span></div>
<div class="a1 user_jemimah_knight"><img src="http://a2.twimg.com/profile_images/602892821/jk_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jemimah_knight" class="user">jemimah_knight</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/joannageary">@joannageary</a> watching and supporting! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jemimah_knight/status/16850620308791296"><small>13:41:15</small></a></span></div>
<div class="a0 user_Joyouscomms"><img src="http://a2.twimg.com/profile_images/1194107326/image_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Joyouscomms" class="user">Joyouscomms</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/joannageary">@joannageary</a> good luck! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> (any consolation I got stage fright and the fear of 'it' is worse than the 'it') <span><a class="date" target="_blank" href="http://twitter.com/Joyouscomms/status/16850847891722240"><small>13:42:09</small></a></span></div>
<div class="a1 user_belindaparmar"><img src="http://a3.twimg.com/profile_images/60417055/lg-logo_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/belindaparmar" class="user">belindaparmar</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/jemimah_knight">@jemimah_knight</a> Love the idea of <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> :) <span><a class="date" target="_blank" href="http://twitter.com/belindaparmar/status/16850941886078976"><small>13:42:32</small></a></span></div>
<div class="a0 user_tobynutter"><img src="http://a2.twimg.com/profile_images/1167631754/Photo_148_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/tobynutter" class="user">tobynutter</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a> fixed! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/tobynutter/status/16851058076688385"><small>13:42:59</small></a></span></div>
<div class="a1 user_karenstrunks"><img src="http://a3.twimg.com/profile_images/781259359/twitpic_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/karenstrunks" class="user">karenstrunks</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Excuse me. Excuse me! I've got a reserved front row seat. Move! ;D <span><a class="date" target="_blank" href="http://twitter.com/karenstrunks/status/16851230248673280"><small>13:43:41</small></a></span></div>
<div class="a0 user_DuncanMcFadzean"><img src="http://a3.twimg.com/profile_images/1139887807/IMG_0622_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/DuncanMcFadzean" class="user">DuncanMcFadzean</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Just over 1/2 an hour to Twitter's biggest threat to UKPLC… <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Saddle up here: <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/DuncanMcFadzean/status/16851505076240384"><small>13:44:46</small></a></span></div>
<div class="a1 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> probably won't be around for <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> but enjoy, enjoy, enjoy :) <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16851512340779008"><small>13:44:48</small></a></span></div>
<div class="a0 user_CaterFor"><img src="http://a1.twimg.com/profile_images/1168397955/caterfor_normal.gif" width="32"> <a target="_blank" href="http://twitter.com/CaterFor" class="user">CaterFor</a> not long now.. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Cater For - Catering Equipment | Commercial Refrigeration | Next Day Delivery <a target="_blank" title="Opens in new window" href="http://t.co/Bs8rCLW">http://t.co/Bs8rCLW</a> via <a target="_blank" title="Opens in new window" href="http://twitter.com/AddThis">@AddThis</a> <span><a class="date" target="_blank" href="http://twitter.com/CaterFor/status/16851543517040640"><small>13:44:55</small></a></span></div>
<div class="a1 user_Joyouscomms"><img src="http://a2.twimg.com/profile_images/1194107326/image_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Joyouscomms" class="user">Joyouscomms</a> Too cold for ice cream at <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> so going for Fruit Pastels. Nomnomnom. Looking forward to seeing Jack's beanstalk ;-) <span><a class="date" target="_blank" href="http://twitter.com/Joyouscomms/status/16851653676244993"><small>13:45:21</small></a></span></div>
<div class="a0 user_joannageary"><img src="http://a0.twimg.com/profile_images/1194806893/a254c683-3452-4258-b22e-2279acaac81d_normal.png" width="32"> <a target="_blank" href="http://twitter.com/joannageary" class="user">joannageary</a> OK chaps... <a target="_blank" title="Opens in new window" href="http://twitter.com/joannageary">@joannageary</a> is going silent now as I magically transform into <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/joannageary/status/16851778712637440"><small>13:45:51</small></a></span></div>
<div class="a1 user_Joyouscomms"><img src="http://a2.twimg.com/profile_images/1194107326/image_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Joyouscomms" class="user">Joyouscomms</a> Is this seat taken?! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Joyouscomms/status/16851843049070592"><small>13:46:07</small></a></span></div>
<div class="a0 user_jarrodwilliams"><img src="http://a3.twimg.com/profile_images/1181954827/IMG_2410_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jarrodwilliams" class="user">jarrodwilliams</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/KRCSappleMerryH">@KRCSappleMerryH</a> will you be following todays <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://bit.ly/e8SVVe">http://bit.ly/e8SVVe</a> <span><a class="date" target="_blank" href="http://twitter.com/jarrodwilliams/status/16851913735671809"><small>13:46:23</small></a></span></div>
<div class="a1 user_jemimah_knight"><img src="http://a2.twimg.com/profile_images/602892821/jk_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jemimah_knight" class="user">jemimah_knight</a> Snacks, icecreams, drinks....snacks before curtain, ice creams, drinks ... <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jemimah_knight/status/16852008497586176"><small>13:46:46</small></a></span></div>
<div class="a0 user_tobynutter"><img src="http://a2.twimg.com/profile_images/1167631754/Photo_148_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/tobynutter" class="user">tobynutter</a> enjoying the pre-performance warm up for <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/tobynutter/status/16852023924236288"><small>13:46:50</small></a></span></div>
<div class="a1 user_tobynutter"><img src="http://a2.twimg.com/profile_images/1167631754/Photo_148_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/tobynutter" class="user">tobynutter</a> I wonder if there'll be any albatross available in the interval? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/tobynutter/status/16852108368158720"><small>13:47:10</small></a></span></div>
<div class="a0 user_tobynutter"><img src="http://a2.twimg.com/profile_images/1167631754/Photo_148_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/tobynutter" class="user">tobynutter</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/philipjohn">@philipjohn</a>: Nearly time for <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>.... watch here <a target="_blank" title="Opens in new window" href="http://bit.ly/gntvPq">http://bit.ly/gntvPq</a> <span><a class="date" target="_blank" href="http://twitter.com/tobynutter/status/16852626763161600"><small>13:49:13</small></a></span></div>
<div class="a1 user_willperrin"><img src="http://a1.twimg.com/profile_images/352402729/William_Perrin_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/willperrin" class="user">willperrin</a> follow <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> for some improvised fun this afternoon <span><a class="date" target="_blank" href="http://twitter.com/willperrin/status/16852686662008833"><small>13:49:28</small></a></span></div>
<div class="a0 user_Super_Nicktendo"><img src="http://a0.twimg.com/profile_images/1169260657/twitter1_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Super_Nicktendo" class="user">Super_Nicktendo</a> Time to filter <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> then. <span><a class="date" target="_blank" href="http://twitter.com/Super_Nicktendo/status/16852703485362177"><small>13:49:32</small></a></span></div>
<div class="a1 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> I have my box of Celebrations and getting cosy - ready for the start! <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16852864852824064"><small>13:50:10</small></a></span></div>
<div class="a0 user_aysegulyuksel1"><img src="http://a1.twimg.com/profile_images/1155169330/ffea55f9-3a80-4a7a-b87f-6220a207e489_normal.png" width="32"> <a target="_blank" href="http://twitter.com/aysegulyuksel1" class="user">aysegulyuksel1</a> what's happening
here :) <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/aysegulyuksel1/status/16853133623824384"><small>13:51:14</small></a></span></div>
<div class="a1 user_EdinReporter"><img src="http://a0.twimg.com/profile_images/680224138/1987563865_3a0bdbf363_t_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/EdinReporter" class="user">EdinReporter</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/unloveablesteve">@unloveablesteve</a> we are ...... <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/EdinReporter/status/16853404152233984"><small>13:52:19</small></a></span></div>
<div class="a0 user_BennSt"><img src="http://a0.twimg.com/profile_images/1194811989/Ben_Stones_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/BennSt" class="user">BennSt</a> settling down to watch <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>... got the mince pies and mulled wine at the ready. <span><a class="date" target="_blank" href="http://twitter.com/BennSt/status/16853513107673088"><small>13:52:45</small></a></span></div>
<div class="a1 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a> Please take your <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> seats at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16853699716448257"><small>13:53:29</small></a></span></div>
<div class="a0 user_ATTA_grrl"><img src="http://a1.twimg.com/profile_images/626418581/ATTA_LOGO_girlsmall_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/ATTA_grrl" class="user">ATTA_grrl</a> Time for a spot of <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> then! <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk">http://beanstalk.twitpanto.co.uk</a> curtain call has gone out! 2pm start <span><a class="date" target="_blank" href="http://twitter.com/ATTA_grrl/status/16853804691488769"><small>13:53:54</small></a></span></div>
<div class="a1 user_BennSt"><img src="http://a0.twimg.com/profile_images/1194811989/Ben_Stones_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/BennSt" class="user">BennSt</a> i might even do some wrapping during <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> as well (Y) get it all done n'ting. <span><a class="date" target="_blank" href="http://twitter.com/BennSt/status/16853855912337408"><small>13:54:07</small></a></span></div>
<div class="a0 user_scratchradio"><img src="http://a3.twimg.com/profile_images/1168527075/twitterpic_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/scratchradio" class="user">scratchradio</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Please take your <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> seats at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/scratchradio/status/16854008459173889"><small>13:54:43</small></a></span></div>
<div class="a1 user_dandavies23"><img src="http://a2.twimg.com/profile_images/814042382/dandaviessquare_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/dandavies23" class="user">dandavies23</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Please take your <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> seats at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/dandavies23/status/16854088109002752"><small>13:55:02</small></a></span></div>
<div class="a0 user_jemimah_knight"><img src="http://a2.twimg.com/profile_images/602892821/jk_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jemimah_knight" class="user">jemimah_knight</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/cataspanglish">@cataspanglish</a>: RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Please take your <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> seats at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/jemimah_knight/status/16854097277755392"><small>13:55:04</small></a></span></div>
<div class="a1 user_barques"><img src="http://a2.twimg.com/profile_images/1119754182/HD4XNYAII0GGRHAI_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/barques" class="user">barques</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Please take your <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> seats at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/barques/status/16854131822039040"><small>13:55:12</small></a></span></div>
<div class="a0 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/mandyrose1">@mandyrose1</a>: RT <a target="_blank" title="Opens in new window" href="http://twitter.com/cataspanglish">@cataspanglish</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Please take your <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> seats at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16854155972841472"><small>13:55:18</small></a></span></div>
<div class="a1 user_jarrodwilliams"><img src="http://a3.twimg.com/profile_images/1181954827/IMG_2410_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jarrodwilliams" class="user">jarrodwilliams</a> I'm gonna say the Twitter connect widget on the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> site doesn't work... <span><a class="date" target="_blank" href="http://twitter.com/jarrodwilliams/status/16854211983577089"><small>13:55:31</small></a></span></div>
<div class="a0 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> (may be able to sneak a few mins in <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> ) <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16854258448076801"><small>13:55:43</small></a></span></div>
<div class="a1 user_rec53"><img src="http://a1.twimg.com/a/1292531900/images/default_profile_1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/rec53" class="user">rec53</a> About to sit down and watch <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/rec53/status/16854266543087616"><small>13:55:44</small></a></span></div>
<div class="a0 user_sarahkatenorman"><img src="http://a2.twimg.com/profile_images/811120560/Photo_105_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/sarahkatenorman" class="user">sarahkatenorman</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Attention! This is a FIVE MINUTE call to <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> cast and audience. FIVE MINUTES before curtain up. (Dead exciting innit!) <span><a class="date" target="_blank" href="http://twitter.com/sarahkatenorman/status/16854332745977857"><small>13:56:00</small></a></span></div>
<div class="a1 user_EvaPalazzetti"><img src="http://a3.twimg.com/profile_images/1152122891/Small_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EvaPalazzetti" class="user">EvaPalazzetti</a> Nice and comfortable waiting for <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> to start... <span><a class="date" target="_blank" href="http://twitter.com/EvaPalazzetti/status/16854361120444416"><small>13:56:07</small></a></span></div>
<div class="a0 user_chrislangham2"><img src="http://a1.twimg.com/profile_images/553537305/Pride_2009_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/chrislangham2" class="user">chrislangham2</a> Intrigued by the idea of <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Looking forward to it starting in 5 minutes. <span><a class="date" target="_blank" href="http://twitter.com/chrislangham2/status/16854373346836480"><small>13:56:10</small></a></span></div>
<div class="a1 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a> Attention! This is a FIVE MINUTE call to <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> cast and audience. FIVE MINUTES before curtain up. (Dead exciting innit!) <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16854374487695360"><small>13:56:10</small></a></span></div>
<div class="a0 user_NaomiGreen"><img src="http://a1.twimg.com/profile_images/72492405/n508245602_1265266_1920_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/NaomiGreen" class="user">NaomiGreen</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/jarrodwilliams">@jarrodwilliams</a> it just worked for me <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/NaomiGreen/status/16854374814851072"><small>13:56:10</small></a></span></div>
<div class="a1 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23Twitpanto">#Twitpanto</a> 2010 — Jack and the Beanstalk. Dec 20th @ 2pm GMT <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> - I've saved plenty of seats. Get over here. <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16854446562611200"><small>13:56:27</small></a></span></div>
<div class="a0 user_jarrodwilliams"><img src="http://a3.twimg.com/profile_images/1181954827/IMG_2410_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jarrodwilliams" class="user">jarrodwilliams</a> I brought me own sandwiches and a can of pop. I refuse to pay the in theatre prices <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jarrodwilliams/status/16854458768031744"><small>13:56:30</small></a></span></div>
<div class="a1 user_Tiemachine"><img src="http://a2.twimg.com/profile_images/959533614/DSC_6154_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Tiemachine" class="user">Tiemachine</a> Sorry, has anyone seen the packet of revels I brought? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Tiemachine/status/16854494700642304"><small>13:56:39</small></a></span></div>
<div class="a0 user_tobynutter"><img src="http://a2.twimg.com/profile_images/1167631754/Photo_148_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/tobynutter" class="user">tobynutter</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/jarrodwilliams">@jarrodwilliams</a> I had that problem to start, give it a few goes. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/tobynutter/status/16854549964783616"><small>13:56:52</small></a></span></div>
<div class="a1 user_brumculture"><img src="http://a2.twimg.com/profile_images/1165471082/029cfee1-1dac-40f6-a0ad-2eddc8f88efd_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/brumculture" class="user">brumculture</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Attention! This is a FIVE MINUTE call to <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> cast and audience. FIVE MINUTES before curtain up. (Dead exciting innit!) <span><a class="date" target="_blank" href="http://twitter.com/brumculture/status/16854600577449984"><small>13:57:04</small></a></span></div>
<div class="a0 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> can I book a sofa with drinks service just like at The Electric please? <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16854618684260352"><small>13:57:08</small></a></span></div>
<div class="a1 user_EvaPalazzetti"><img src="http://a3.twimg.com/profile_images/1152122891/Small_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EvaPalazzetti" class="user">EvaPalazzetti</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/Kfyra">@Kfyra</a> Hello Dear, hope I'm sitting on the seats you reserved... <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23Twitpanto">#Twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/EvaPalazzetti/status/16854687391154176"><small>13:57:25</small></a></span></div>
<div class="a0 user_Geektown"><img src="http://a1.twimg.com/profile_images/1169967912/geektown_gt_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Geektown" class="user">Geektown</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> due to start in 5mins over at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> for anyone wanting to follow. <span><a class="date" target="_blank" href="http://twitter.com/Geektown/status/16854820073766912"><small>13:57:56</small></a></span></div>
<div class="a1 user_mannyc"><img src="http://a3.twimg.com/profile_images/96363651/Manny_winter_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/mannyc" class="user">mannyc</a> Setting the tone: RT <a target="_blank" title="Opens in new window" href="http://twitter.com/graphiquillan">@graphiquillan</a>: I've just accidentally squashed someone called Michael. Sorry about that :/ <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23mickysqueaks">#mickysqueaks</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mannyc/status/16854833252274176"><small>13:58:00</small></a></span></div>
<div class="a0 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/Evapalazzetti">@Evapalazzetti</a>! Excellent, do you know if Jill, Lumi or Henna will be here? <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16854891179806720"><small>13:58:13</small></a></span></div>
<div class="a1 user_rec53"><img src="http://a1.twimg.com/a/1292531900/images/default_profile_1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/rec53" class="user">rec53</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Attention! This is a FIVE MINUTE call to <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> cast and audience. FIVE MINUTES before curtain up. (Dead exciting innit!) <span><a class="date" target="_blank" href="http://twitter.com/rec53/status/16854941209468928"><small>13:58:25</small></a></span></div>
<div class="a0 user_nina_lovelace"><img src="http://a2.twimg.com/profile_images/1167661934/0d9933b2-5494-4ced-8a72-8bc67cca1c46_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/nina_lovelace" class="user">nina_lovelace</a> Checking out <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>. Should be amusing..<a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/nina_lovelace/status/16854956640313344"><small>13:58:29</small></a></span></div>
<div class="a1 user_voyd"><img src="http://a1.twimg.com/profile_images/1180721999/3cce6a6d-1052-4de7-820d-7dfd68838f40_normal.png" width="32"> <a target="_blank" href="http://twitter.com/voyd" class="user">voyd</a> Time to settle into the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23PeanutGallery">#PeanutGallery</a> for <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/voyd/status/16854977867681792"><small>13:58:34</small></a></span></div>
<div class="a0 user_NaomiGreen"><img src="http://a1.twimg.com/profile_images/72492405/n508245602_1265266_1920_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/NaomiGreen" class="user">NaomiGreen</a> Nom nom not sure there are many pantos where you can eat cheesy beans on toast in the audience <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/NaomiGreen/status/16854984037507072"><small>13:58:36</small></a></span></div>
<div class="a1 user_bobin1983"><img src="http://a2.twimg.com/profile_images/675632946/Photo_1_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/bobin1983" class="user">bobin1983</a> Festive fun at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bobin1983/status/16855047132422144"><small>13:58:51</small></a></span></div>
<div class="a0 user_bigdaddymerk"><img src="http://a1.twimg.com/profile_images/1158705137/merkii_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/bigdaddymerk" class="user">bigdaddymerk</a> is <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> going to start on time? I hear some people are outside redecorating a 30 year old Rolls Royce. <span><a class="date" target="_blank" href="http://twitter.com/bigdaddymerk/status/16855058180218880"><small>13:58:53</small></a></span></div>
<div class="a1 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> is it true some bankers run off with all the golden eggs this year? <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16855073137098752"><small>13:58:57</small></a></span></div>
<div class="a0 user_jarrodwilliams"><img src="http://a3.twimg.com/profile_images/1181954827/IMG_2410_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jarrodwilliams" class="user">jarrodwilliams</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/swearynews">@swearynews</a>: [peeks through curtains] What a beautiful and attractive looking audience we have today. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jarrodwilliams/status/16855160571568128"><small>13:59:18</small></a></span></div>
<div class="a1 user_EmmaFlipz"><img src="http://a3.twimg.com/profile_images/673479815/twitterProfilePhoto_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/EmmaFlipz" class="user">EmmaFlipz</a> Goo on me babby <a target="_blank" title="Opens in new window" href="http://twitter.com/mandyrose1">@mandyrose1</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/EmmaFlipz/status/16855200400670721"><small>13:59:27</small></a></span></div>
<div class="a0 user_PixieSixer"><img src="http://a3.twimg.com/profile_images/977868951/facebookpage_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/PixieSixer" class="user">PixieSixer</a> Lunch ready. Just in time for <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> :) <a target="_blank" title="Opens in new window" href="http://bit.ly/etLKuH">http://bit.ly/etLKuH</a> <span><a class="date" target="_blank" href="http://twitter.com/PixieSixer/status/16855427639681024"><small>14:00:21</small></a></span></div>
<div class="a1 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> wouldn't it be lovely if <a target="_blank" title="Opens in new window" href="http://twitter.com/joancollinsobe">@joancollinsobe</a> joined in with <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> (<a target="_blank" title="Opens in new window" href="http://twitter.com/mandyrose1">@mandyrose1</a> ;) ) <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16855556643889152"><small>14:00:52</small></a></span></div>
<div class="a0 user_NaomiGreen"><img src="http://a1.twimg.com/profile_images/72492405/n508245602_1265266_1920_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/NaomiGreen" class="user">NaomiGreen</a> Oh its snowing out there in B30. Glad I've got something to for next hour <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/NaomiGreen/status/16855565808439296"><small>14:00:54</small></a></span></div>
<div class="a1 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> is this the official <a target="_blank" title="Opens in new window" href="http://twitter.com/theRSC">@theRSC</a> production? <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16855568337608706"><small>14:00:55</small></a></span></div>
<div class="a0 user_pmahnke"><img src="http://a2.twimg.com/profile_images/641619698/sq_mini_peter_normal.png" width="32"> <a target="_blank" href="http://twitter.com/pmahnke" class="user">pmahnke</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Please take your <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> seats at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> (via <a target="_blank" title="Opens in new window" href="http://twitter.com/philipjohn">@philipjohn</a>) <span><a class="date" target="_blank" href="http://twitter.com/pmahnke/status/16855577141448705"><small>14:00:57</small></a></span></div>
<div class="a1 user_sue_allport"><img src="http://a2.twimg.com/profile_images/1144996868/sue_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/sue_allport" class="user">sue_allport</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Attention! This is a FIVE MINUTE call to <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> cast and audience. FIVE MINUTES before curtain up. (Dead exciting innit!) <span><a class="date" target="_blank" href="http://twitter.com/sue_allport/status/16855584888328192"><small>14:00:59</small></a></span></div>
<div class="a0 user_karenstrunks"><img src="http://a3.twimg.com/profile_images/781259359/twitpic_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/karenstrunks" class="user">karenstrunks</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Ooh it's started! Come on over to <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> :) <span><a class="date" target="_blank" href="http://twitter.com/karenstrunks/status/16855704786698240"><small>14:01:27</small></a></span></div>
<div class="a1 user_mannyc"><img src="http://a3.twimg.com/profile_images/96363651/Manny_winter_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/mannyc" class="user">mannyc</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Please take your <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> seats at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/mannyc/status/16855784981790720"><small>14:01:46</small></a></span></div>
<div class="a0 user_editorialgirl"><img src="http://a2.twimg.com/profile_images/582660318/emma_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/editorialgirl" class="user">editorialgirl</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/karenstrunks">@karenstrunks</a>: <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Ooh it's started! Come on over to <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> :) <span><a class="date" target="_blank" href="http://twitter.com/editorialgirl/status/16855784893710336"><small>14:01:46</small></a></span></div>
<div class="a1 user_HollyCParkerx"><img src="http://a0.twimg.com/profile_images/1140045363/profile_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/HollyCParkerx" class="user">HollyCParkerx</a> I've got some instrumental music on in the background to add to the scene. Destitute farm music currently playing... <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/HollyCParkerx/status/16855807266131969"><small>14:01:52</small></a></span></div>
<div class="a0 user_Artwalk2011"><img src="http://a1.twimg.com/profile_images/1193996551/art_walk_e_flyer_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Artwalk2011" class="user">Artwalk2011</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/jonhickman">@jonhickman</a>: <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>, 2pm UK time. If the Internet is your office, this is your office Christmas party. BYOB. <a target="_blank" title="Opens in new window" href="http://j.mp/g1dajF">http://j.mp/g1dajF</a> <span><a class="date" target="_blank" href="http://twitter.com/Artwalk2011/status/16856038842044416"><small>14:02:47</small></a></span></div>
<div class="a1 user_iskandarv"><img src="http://a1.twimg.com/profile_images/472303929/twitterProfilePhoto_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/iskandarv" class="user">iskandarv</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Please take your <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> seats at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/iskandarv/status/16856100112433154"><small>14:03:02</small></a></span></div>
<div class="a0 user_karenstrunks"><img src="http://a3.twimg.com/profile_images/781259359/twitpic_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/karenstrunks" class="user">karenstrunks</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> It's all going very smoothly. Too smoothly ;) <span><a class="date" target="_blank" href="http://twitter.com/karenstrunks/status/16856132886732800"><small>14:03:09</small></a></span></div>
<div class="a1 user_bigheadzach"><img src="http://a1.twimg.com/profile_images/1164495905/grumpyborockbowl_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bigheadzach" class="user">bigheadzach</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/Kfyra">@Kfyra</a> I am watching <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> but I'm not sure how much I can participate. <span><a class="date" target="_blank" href="http://twitter.com/bigheadzach/status/16856149521342465"><small>14:03:13</small></a></span></div>
<div class="a0 user_JMChadd"><img src="http://a3.twimg.com/profile_images/1184267082/superted_normal.gif" width="32"> <a target="_blank" href="http://twitter.com/JMChadd" class="user">JMChadd</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> something to fill the next hour. So eloquently a british thing, this. <span><a class="date" target="_blank" href="http://twitter.com/JMChadd/status/16856201849479168"><small>14:03:26</small></a></span></div>
<div class="a1 user_EdinReporter"><img src="http://a0.twimg.com/profile_images/680224138/1987563865_3a0bdbf363_t_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/EdinReporter" class="user">EdinReporter</a> We are confused - is there more than one panto? or have all these people taken refuge from airports around the country.....<a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/EdinReporter/status/16856236850946048"><small>14:03:34</small></a></span></div>
<div class="a0 user__RebeccaParker_"><img src="http://a0.twimg.com/profile_images/1172907142/5021058379_cdb7344e63_webb_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/_RebeccaParker_" class="user">_RebeccaParker_</a> Just stumbled into <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/_RebeccaParker_/status/16856259412103169"><small>14:03:40</small></a></span></div>
<div class="a1 user_PMStephen"><img src="http://a3.twimg.com/profile_images/1173206935/DSC05255_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/PMStephen" class="user">PMStephen</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/_RebeccaParker_">@_RebeccaParker_</a> mind your feet then as you pass along the row <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/PMStephen/status/16856340269895681"><small>14:03:59</small></a></span></div>
<div class="a0 user_nina_lovelace"><img src="http://a2.twimg.com/profile_images/1167661934/0d9933b2-5494-4ced-8a72-8bc67cca1c46_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/nina_lovelace" class="user">nina_lovelace</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> where's the Carry-On style smut? <span><a class="date" target="_blank" href="http://twitter.com/nina_lovelace/status/16856344736829440"><small>14:04:00</small></a></span></div>
<div class="a1 user_Angelsraven"><img src="http://a2.twimg.com/profile_images/1191300194/4b59846d-e08e-4488-835e-60592c967102_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Angelsraven" class="user">Angelsraven</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/mandyrose1">@mandyrose1</a>: RT <a target="_blank" title="Opens in new window" href="http://twitter.com/cataspanglish">@cataspanglish</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Please take your <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> seats at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/Angelsraven/status/16856365020487680"><small>14:04:05</small></a></span></div>
<div class="a0 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> watch Daisy doesn't slip on the ice - BCC havent got any loot for the gritters you know <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16856387761995776"><small>14:04:10</small></a></span></div>
<div class="a1 user_johnpopham"><img src="http://a0.twimg.com/profile_images/1105154428/JP_at_Thinking_Digital_2010_2_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/johnpopham" class="user">johnpopham</a> Sorry just got in. I froze solid queueing outside <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/johnpopham/status/16856392052776960"><small>14:04:11</small></a></span></div>
<div class="a0 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/BigHeadZach">@BigHeadZach</a> <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> you can watch above. (I don't think we tweet to the characters) <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16856415469568001"><small>14:04:17</small></a></span></div>
<div class="a1 user_carolinebeavon"><img src="http://a1.twimg.com/profile_images/1194776205/c779be49-7b46-4148-9922-8e53127c2a5e_normal.png" width="32"> <a target="_blank" href="http://twitter.com/carolinebeavon" class="user">carolinebeavon</a> Watching <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>. Watch it here <a target="_blank" title="Opens in new window" href="http://bit.ly/hLtM4P">http://bit.ly/hLtM4P</a> <span><a class="date" target="_blank" href="http://twitter.com/carolinebeavon/status/16856427716943872"><small>14:04:20</small></a></span></div>
<div class="a0 user_IdeasForTheKids"><img src="http://a0.twimg.com/profile_images/96356029/Moley_avtar_square4_300x300_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/IdeasForTheKids" class="user">IdeasForTheKids</a> For a bit of festive fun in the next hour: RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Please take your <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> seats at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/IdeasForTheKids/status/16856457924313088"><small>14:04:27</small></a></span></div>
<div class="a1 user_GeoShore"><img src="http://a3.twimg.com/profile_images/1130487603/restatement_normal.jpeg" width="32"> <a target="_blank" href="http://twitter.com/GeoShore" class="user">GeoShore</a> Watching the pantomine in only my superman y-fronts. Thankfully for the rest of the audience it's the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/GeoShore/status/16856482561662977"><small>14:04:33</small></a></span></div>
<div class="a0 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> already confused at <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>! where's the best place to view it? <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16856508218216448"><small>14:04:39</small></a></span></div>
<div class="a1 user_chailey_"><img src="http://a1.twimg.com/profile_images/1180767285/06f7ee08-900d-4ee9-bebc-0c4c4d0cb225_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/chailey_" class="user">chailey_</a> Watching the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> over lunch. Oh yes I am. Oh no I'm not. <span><a class="date" target="_blank" href="http://twitter.com/chailey_/status/16856567727005697"><small>14:04:53</small></a></span></div>
<div class="a0 user_vornster"><img src="http://a1.twimg.com/profile_images/1170999873/jv2_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/vornster" class="user">vornster</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/_RebeccaParker_">@_RebeccaParker_</a>: Just stumbled into <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/vornster/status/16856570046451712"><small>14:04:54</small></a></span></div>
<div class="a1 user_tobynutter"><img src="http://a2.twimg.com/profile_images/1167631754/Photo_148_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/tobynutter" class="user">tobynutter</a> lols <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/tobynutter/status/16856581593366528"><small>14:04:56</small></a></span></div>
<div class="a0 user_bigheadzach"><img src="http://a1.twimg.com/profile_images/1164495905/grumpyborockbowl_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bigheadzach" class="user">bigheadzach</a> Daisy the cow has a speaking part in this version of "Jack and the Beanstalk". <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bigheadzach/status/16856648970670080"><small>14:05:12</small></a></span></div>
<div class="a1 user__RebeccaParker_"><img src="http://a0.twimg.com/profile_images/1172907142/5021058379_cdb7344e63_webb_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/_RebeccaParker_" class="user">_RebeccaParker_</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/PMStephen">@PMStephen</a>: <a target="_blank" title="Opens in new window" href="http://twitter.com/_RebeccaParker_">@_RebeccaParker_</a> mind your feet then as you pass along the row <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/_RebeccaParker_/status/16856672999833600"><small>14:05:18</small></a></span></div>
<div class="a0 user_Katkin5"><img src="http://a3.twimg.com/profile_images/1044760731/Katkin_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Katkin5" class="user">Katkin5</a> Guffaw, guffaw <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Katkin5/status/16856713768472577"><small>14:05:28</small></a></span></div>
<div class="a1 user_mannyc"><img src="http://a3.twimg.com/profile_images/96363651/Manny_winter_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/mannyc" class="user">mannyc</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/JayneHowarth">@JayneHowarth</a> <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mannyc/status/16856724740771840"><small>14:05:31</small></a></span></div>
<div class="a0 user_Artwalk2011"><img src="http://a1.twimg.com/profile_images/1193996551/art_walk_e_flyer_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Artwalk2011" class="user">Artwalk2011</a> Watching <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Artwalk2011/status/16856755241754624"><small>14:05:38</small></a></span></div>
<div class="a1 user_dandavies23"><img src="http://a2.twimg.com/profile_images/814042382/dandaviessquare_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/dandavies23" class="user">dandavies23</a> It's an old one but a goodun! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/dandavies23/status/16856755925426177"><small>14:05:38</small></a></span></div>
<div class="a0 user_thedancingflea"><img src="http://a3.twimg.com/profile_images/1177799599/Me_II_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/thedancingflea" class="user">thedancingflea</a> I hope that everyone is following the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> - what will become of Daisy? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23gasp">#gasp</a> <span><a class="date" target="_blank" href="http://twitter.com/thedancingflea/status/16856756655230977"><small>14:05:38</small></a></span></div>
<div class="a1 user_jemimah_knight"><img src="http://a2.twimg.com/profile_images/602892821/jk_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jemimah_knight" class="user">jemimah_knight</a> Tittering "Bullocks" <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> - yay! <span><a class="date" target="_blank" href="http://twitter.com/jemimah_knight/status/16856768055349248"><small>14:05:41</small></a></span></div>
<div class="a0 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/jaynehowarth">@jaynehowarth</a> try <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16856789798625281"><small>14:05:46</small></a></span></div>
<div class="a1 user_ATTA_grrl"><img src="http://a1.twimg.com/profile_images/626418581/ATTA_LOGO_girlsmall_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/ATTA_grrl" class="user">ATTA_grrl</a> Oh no there isn't! (He's gonna sell you Daisy!!) <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk">http://beanstalk.twitpanto.co.uk</a> <span><a class="date" target="_blank" href="http://twitter.com/ATTA_grrl/status/16856832190451712"><small>14:05:56</small></a></span></div>
<div class="a0 user_theatricalia"><img src="http://a2.twimg.com/profile_images/79260362/duck_normal.png" width="32"> <a target="_blank" href="http://twitter.com/theatricalia" class="user">theatricalia</a> It's behind you! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/theatricalia/status/16856844605587456"><small>14:05:59</small></a></span></div>
<div class="a1 user_juniperific"><img src="http://a3.twimg.com/profile_images/1016527579/Screen_shot_2010-06-23_at_10.46.25_normal.png" width="32"> <a target="_blank" href="http://twitter.com/juniperific" class="user">juniperific</a> He's behind you, you f'ing idiot <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/juniperific/status/16856853178744832"><small>14:06:01</small></a></span></div>
<div class="a0 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> aha! here <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16856866009124864"><small>14:06:04</small></a></span></div>
<div class="a1 user_MrsRachWilliams"><img src="http://a1.twimg.com/profile_images/1128233709/RachelTristan-28_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/MrsRachWilliams" class="user">MrsRachWilliams</a> She's behind you!!!!!!!! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/MrsRachWilliams/status/16856931339599872"><small>14:06:20</small></a></span></div>
<div class="a0 user_Thayer"><img src="http://a2.twimg.com/profile_images/1171513278/avatar_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Thayer" class="user">Thayer</a> She's behind you! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Thayer/status/16856932648222720"><small>14:06:20</small></a></span></div>
<div class="a1 user_tobynutter"><img src="http://a2.twimg.com/profile_images/1167631754/Photo_148_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/tobynutter" class="user">tobynutter</a> its behind you! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/tobynutter/status/16856935148027905"><small>14:06:21</small></a></span></div>
<div class="a0 user_adam_stewart"><img src="http://a3.twimg.com/profile_images/1185951959/Photo_on_2010-12-02_at_21.26__2_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/adam_stewart" class="user">adam_stewart</a> She's behind you!! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/adam_stewart/status/16856936578293760"><small>14:06:21</small></a></span></div>
<div class="a1 user_peteashton"><img src="http://a0.twimg.com/profile_images/1194060384/Supersonic_-11___Flickr_-_Photo_Sharing_-1_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/peteashton" class="user">peteashton</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> She's behind you!!!! <span><a class="date" target="_blank" href="http://twitter.com/peteashton/status/16856939346526208"><small>14:06:22</small></a></span></div>
<div class="a0 user_smithsam"><img src="http://a3.twimg.com/profile_images/1143732315/49139_61409894_6303_n_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/smithsam" class="user">smithsam</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> she's behind you! <span><a class="date" target="_blank" href="http://twitter.com/smithsam/status/16856939942117376"><small>14:06:22</small></a></span></div>
<div class="a1 user_Katkin5"><img src="http://a3.twimg.com/profile_images/1044760731/Katkin_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Katkin5" class="user">Katkin5</a> SHE"S BEHIND YOOOOO <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Katkin5/status/16856948313956352"><small>14:06:24</small></a></span></div>
<div class="a0 user_nina_lovelace"><img src="http://a2.twimg.com/profile_images/1167661934/0d9933b2-5494-4ced-8a72-8bc67cca1c46_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/nina_lovelace" class="user">nina_lovelace</a> She's behind MOO! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/nina_lovelace/status/16856950922805248"><small>14:06:24</small></a></span></div>
<div class="a1 user_scratchradio"><img src="http://a3.twimg.com/profile_images/1168527075/twitterpic_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/scratchradio" class="user">scratchradio</a> She's behind you! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23ohsobritish">#ohsobritish</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/scratchradio/status/16856951753281536"><small>14:06:25</small></a></span></div>
<div class="a0 user_rec53"><img src="http://a1.twimg.com/a/1292531900/images/default_profile_1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/rec53" class="user">rec53</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Whoever is rustling sweets, could they please stop, I think it's someone behind me. <span><a class="date" target="_blank" href="http://twitter.com/rec53/status/16856959370141696"><small>14:06:26</small></a></span></div>
<div class="a1 user_ATTA_grrl"><img src="http://a1.twimg.com/profile_images/626418581/ATTA_LOGO_girlsmall_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/ATTA_grrl" class="user">ATTA_grrl</a> Behind you!!!! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/ATTA_grrl/status/16856965288300544"><small>14:06:28</small></a></span></div>
<div class="a0 user_johnpopham"><img src="http://a0.twimg.com/profile_images/1105154428/JP_at_Thinking_Digital_2010_2_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/johnpopham" class="user">johnpopham</a> Dunno <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/johnpopham/status/16856969331613696"><small>14:06:29</small></a></span></div>
<div class="a1 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> behind you!!!! <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16856976558391296"><small>14:06:31</small></a></span></div>
<div class="a0 user_karenstrunks"><img src="http://a3.twimg.com/profile_images/781259359/twitpic_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/karenstrunks" class="user">karenstrunks</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Unwraps sandwiches and gets flask out, BEHIND YOUUUUUU! <span><a class="date" target="_blank" href="http://twitter.com/karenstrunks/status/16856980329070595"><small>14:06:31</small></a></span></div>
<div class="a1 user_iskandarv"><img src="http://a1.twimg.com/profile_images/472303929/twitterProfilePhoto_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/iskandarv" class="user">iskandarv</a> Daisy's behind you! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> # <span><a class="date" target="_blank" href="http://twitter.com/iskandarv/status/16856983567077376"><small>14:06:32</small></a></span></div>
<div class="a0 user_bashmore"><img src="http://a2.twimg.com/profile_images/880339482/21850_219835088319_507643319_3118300_7966404_n_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/bashmore" class="user">bashmore</a> Now here's a way to spend an afternoon, follow the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> here <a target="_blank" title="Opens in new window" href="http://bit.ly/h3OzEK">http://bit.ly/h3OzEK</a> <span><a class="date" target="_blank" href="http://twitter.com/bashmore/status/16856991364284416"><small>14:06:34</small></a></span></div>
<div class="a1 user_amandagolding"><img src="http://a1.twimg.com/profile_images/1181680789/Eric_normal.png" width="32"> <a target="_blank" href="http://twitter.com/amandagolding" class="user">amandagolding</a> She's behind you! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/amandagolding/status/16856992194760704"><small>14:06:34</small></a></span></div>
<div class="a0 user_jarrodwilliams"><img src="http://a3.twimg.com/profile_images/1181954827/IMG_2410_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jarrodwilliams" class="user">jarrodwilliams</a> behind youuuu <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jarrodwilliams/status/16856999689977856"><small>14:06:36</small></a></span></div>
<div class="a1 user_HollyCParkerx"><img src="http://a0.twimg.com/profile_images/1140045363/profile_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/HollyCParkerx" class="user">HollyCParkerx</a> Man, I am so out of panto practise... She's behind you!!!!!! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/HollyCParkerx/status/16857001371893760"><small>14:06:36</small></a></span></div>
<div class="a0 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>. behind you! <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16857001627750401"><small>14:06:37</small></a></span></div>
<div class="a1 user_juniperific"><img src="http://a3.twimg.com/profile_images/1016527579/Screen_shot_2010-06-23_at_10.46.25_normal.png" width="32"> <a target="_blank" href="http://twitter.com/juniperific" class="user">juniperific</a> Cant' you smell it? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/juniperific/status/16857002059759616"><small>14:06:37</small></a></span></div>
<div class="a0 user_dandavies23"><img src="http://a2.twimg.com/profile_images/814042382/dandaviessquare_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/dandavies23" class="user">dandavies23</a> she''s behind you <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/dandavies23/status/16857012214173696"><small>14:06:39</small></a></span></div>
<div class="a1 user__RebeccaParker_"><img src="http://a0.twimg.com/profile_images/1172907142/5021058379_cdb7344e63_webb_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/_RebeccaParker_" class="user">_RebeccaParker_</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/PMStephen">@PMStephen</a> All settled in now. I've not been to a Panto before! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/_RebeccaParker_/status/16857017922617345"><small>14:06:40</small></a></span></div>
<div class="a0 user_Geektown"><img src="http://a1.twimg.com/profile_images/1169967912/geektown_gt_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Geektown" class="user">Geektown</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> She's Behind you! <span><a class="date" target="_blank" href="http://twitter.com/Geektown/status/16857019671642112"><small>14:06:41</small></a></span></div>
<div class="a1 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> behind youuuuuuu <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16857051900678144"><small>14:06:49</small></a></span></div>
<div class="a0 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> oh no she isn't.... <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16857068761780225"><small>14:06:53</small></a></span></div>
<div class="a1 user_xCLW"><img src="http://a1.twimg.com/profile_images/1183296742/fgeth_normal.jpeg" width="32"> <a target="_blank" href="http://twitter.com/xCLW" class="user">xCLW</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/Geektown">@Geektown</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> oh no she isnt! <span><a class="date" target="_blank" href="http://twitter.com/xCLW/status/16857143802077184"><small>14:07:10</small></a></span></div>
<div class="a0 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> which part is it when the police come in with a water conon? <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16857197791154176"><small>14:07:23</small></a></span></div>
<div class="a1 user_journotutor"><img src="http://a2.twimg.com/profile_images/541484238/marie_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/journotutor" class="user">journotutor</a> Ah, <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> is back. Delightful <a target="_blank" title="Opens in new window" href="http://bit.ly/h3OzEK">http://bit.ly/h3OzEK</a> <span><a class="date" target="_blank" href="http://twitter.com/journotutor/status/16857273682886657"><small>14:07:41</small></a></span></div>
<div class="a0 user_NimbleOgre"><img src="http://a3.twimg.com/profile_images/1124332392/mug_shot_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/NimbleOgre" class="user">NimbleOgre</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/Thayer">@Thayer</a> oh no she isn't! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/NimbleOgre/status/16857320877203456"><small>14:07:53</small></a></span></div>
<div class="a1 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> boooooooooooo Sir Phillp The Green <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16857327458066433"><small>14:07:54</small></a></span></div>
<div class="a0 user_sibob1"><img src="http://a0.twimg.com/profile_images/420102052/clip_image001_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/sibob1" class="user">sibob1</a> Nothing happening at the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> site atm - has it started yet??? <span><a class="date" target="_blank" href="http://twitter.com/sibob1/status/16857331136471040"><small>14:07:55</small></a></span></div>
<div class="a1 user_julesthejourno"><img src="http://a2.twimg.com/profile_images/1177562506/IMG_0204_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/julesthejourno" class="user">julesthejourno</a> Enjoying the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> already <span><a class="date" target="_blank" href="http://twitter.com/julesthejourno/status/16857343014731776"><small>14:07:58</small></a></span></div>
<div class="a0 user_unloveablesteve"><img src="http://a1.twimg.com/profile_images/729706073/face_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/unloveablesteve" class="user">unloveablesteve</a> Oh no you're not! <a target="_blank" title="Opens in new window" href="http://twitter.com/EdinReporter">@EdinReporter</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/unloveablesteve/status/16857368394465280"><small>14:08:04</small></a></span></div>
<div class="a1 user_kencurtin"><img src="http://a2.twimg.com/profile_images/1180758292/n583678065_556047_929_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/kencurtin" class="user">kencurtin</a> just knocked across <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> thanks to <a target="_blank" title="Opens in new window" href="http://twitter.com/thedancingflea">@thedancingflea</a> - well worth checking out <span><a class="date" target="_blank" href="http://twitter.com/kencurtin/status/16857373482156032"><small>14:08:05</small></a></span></div>
<div class="a0 user_JamesFirth"><img src="http://a3.twimg.com/profile_images/1165541590/what_i_see_cropped_med_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JamesFirth" class="user">JamesFirth</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/amandagolding">@amandagolding</a> Oh no she isn't! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JamesFirth/status/16857374388133889"><small>14:08:05</small></a></span></div>
<div class="a1 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> it used to be a canon but the cold weather got to it... <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16857374530732032"><small>14:08:05</small></a></span></div>
<div class="a0 user_NaomiGreen"><img src="http://a1.twimg.com/profile_images/72492405/n508245602_1265266_1920_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/NaomiGreen" class="user">NaomiGreen</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/dracos">@dracos</a> loving the character name! Jocasta! LOL! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/NaomiGreen/status/16857387910569984"><small>14:08:09</small></a></span></div>
<div class="a1 user_jarrodwilliams"><img src="http://a3.twimg.com/profile_images/1181954827/IMG_2410_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jarrodwilliams" class="user">jarrodwilliams</a> boooo hissss
<a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jarrodwilliams/status/16857399172272128"><small>14:08:11</small></a></span></div>
<div class="a0 user_EvaPalazzetti"><img src="http://a3.twimg.com/profile_images/1152122891/Small_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EvaPalazzetti" class="user">EvaPalazzetti</a> Loving the nowadays nature of the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>! <span><a class="date" target="_blank" href="http://twitter.com/EvaPalazzetti/status/16857413340626944"><small>14:08:15</small></a></span></div>
<div class="a1 user_HollyCParkerx"><img src="http://a0.twimg.com/profile_images/1140045363/profile_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/HollyCParkerx" class="user">HollyCParkerx</a> With talks at the Panto turned to protests, I'm not sure I feel comfortable putting the Kettle on. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/HollyCParkerx/status/16857422790402048"><small>14:08:17</small></a></span></div>
<div class="a0 user_mrjohnhinton"><img src="http://a3.twimg.com/profile_images/1118284807/74802157-0d9c-4067-98ce-500b2c85e774_normal.png" width="32"> <a target="_blank" href="http://twitter.com/mrjohnhinton" class="user">mrjohnhinton</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/amandagolding">@amandagolding</a> oh no she isn't <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mrjohnhinton/status/16857625081679872"><small>14:09:05</small></a></span></div>
<div class="a1 user_pthreadneedle"><img src="http://a2.twimg.com/profile_images/1192982960/me_in_space_small_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pthreadneedle" class="user">pthreadneedle</a> For true panto effect, Daisy should have been played by two tweeters, front end and back ;o) <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/pthreadneedle/status/16857634728583168"><small>14:09:07</small></a></span></div>
<div class="a0 user_mannyc"><img src="http://a3.twimg.com/profile_images/96363651/Manny_winter_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/mannyc" class="user">mannyc</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/James_Rock">@James_Rock</a> conon...is that an aquatic conan the barbarian :-) <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mannyc/status/16857639749156864"><small>14:09:09</small></a></span></div>
<div class="a1 user_EvaPalazzetti"><img src="http://a3.twimg.com/profile_images/1152122891/Small_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EvaPalazzetti" class="user">EvaPalazzetti</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/HollyCParkerx">@HollyCParkerx</a>: With talks at the Panto turned to protests, I'm not sure I feel comfortable putting the Kettle on. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/EvaPalazzetti/status/16857667477708800"><small>14:09:15</small></a></span></div>
<div class="a0 user_mr_spoon"><img src="http://a1.twimg.com/profile_images/1182955521/ludwig-1_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/mr_spoon" class="user">mr_spoon</a> Mind out, a fire extinguisher DUCK! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mr_spoon/status/16857673769160704"><small>14:09:17</small></a></span></div>
<div class="a1 user_rec53"><img src="http://a1.twimg.com/a/1292531900/images/default_profile_1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/rec53" class="user">rec53</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/HollyCParkerx">@HollyCParkerx</a>: With talks at the Panto turned to protests, I'm not sure I feel comfortable putting the Kettle on. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/rec53/status/16857759207129088"><small>14:09:37</small></a></span></div>
<div class="a0 user_chrislangham2"><img src="http://a1.twimg.com/profile_images/553537305/Pride_2009_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/chrislangham2" class="user">chrislangham2</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> At last a tweet I thought someone had forgotten their lines! <span><a class="date" target="_blank" href="http://twitter.com/chrislangham2/status/16857761740492800"><small>14:09:38</small></a></span></div>
<div class="a1 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/HollyCParkerx">@HollyCParkerx</a>: With talks at the Panto turned to protests, I'm not sure I feel comfortable putting the Kettle on. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16857770686943232"><small>14:09:40</small></a></span></div>
<div class="a0 user_juniperific"><img src="http://a3.twimg.com/profile_images/1016527579/Screen_shot_2010-06-23_at_10.46.25_normal.png" width="32"> <a target="_blank" href="http://twitter.com/juniperific" class="user">juniperific</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/pthreadneedle">@pthreadneedle</a> It is. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/juniperific/status/16857788797943808"><small>14:09:44</small></a></span></div>
<div class="a1 user_jarrodwilliams"><img src="http://a3.twimg.com/profile_images/1181954827/IMG_2410_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jarrodwilliams" class="user">jarrodwilliams</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/pthreadneedle">@pthreadneedle</a> She is <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jarrodwilliams/status/16857825389060096"><small>14:09:53</small></a></span></div>
<div class="a0 user_jones_alex"><img src="http://a1.twimg.com/profile_images/1183874191/12854_206417314637_505044637_4169287_6557300_n_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jones_alex" class="user">jones_alex</a> tuning into <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>. i hope to see the cast break into some sort of girls aloud medley <span><a class="date" target="_blank" href="http://twitter.com/jones_alex/status/16857867382423553"><small>14:10:03</small></a></span></div>
<div class="a1 user_thedancingflea"><img src="http://a3.twimg.com/profile_images/1177799599/Me_II_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/thedancingflea" class="user">thedancingflea</a> Unexpectedly amused at "TopShoppe". <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23emeftw">#emeftw</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/thedancingflea/status/16857871161499648"><small>14:10:04</small></a></span></div>
<div class="a0 user_Joyouscomms"><img src="http://a2.twimg.com/profile_images/1194107326/image_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Joyouscomms" class="user">Joyouscomms</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Sir Phillip the Green unable to take on Apprentice Tasks says Lord of the shugar <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> <span><a class="date" target="_blank" href="http://twitter.com/Joyouscomms/status/16857880737087488"><small>14:10:06</small></a></span></div>
<div class="a1 user_bigheadzach"><img src="http://a1.twimg.com/profile_images/1164495905/grumpyborockbowl_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bigheadzach" class="user">bigheadzach</a> To the layman, traditional Pantomime sort of resembles Blues Clues. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bigheadzach/status/16857881764696064"><small>14:10:06</small></a></span></div>
<div class="a0 user_thedancingflea"><img src="http://a3.twimg.com/profile_images/1177799599/Me_II_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/thedancingflea" class="user">thedancingflea</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/kencurtin">@kencurtin</a> Birmingham's finest players! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/thedancingflea/status/16857981375225856"><small>14:10:30</small></a></span></div>
<div class="a1 user_Joyouscomms"><img src="http://a2.twimg.com/profile_images/1194107326/image_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Joyouscomms" class="user">Joyouscomms</a> *Puts head in hands* Listen to yourselves!! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Joyouscomms/status/16858015441358848"><small>14:10:38</small></a></span></div>
<div class="a0 user_comeunityarts"><img src="http://a0.twimg.com/profile_images/1187826806/Photo_on_2010-07-17_at_12.06__2_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/comeunityarts" class="user">comeunityarts</a> Watching <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Very funny. <span><a class="date" target="_blank" href="http://twitter.com/comeunityarts/status/16858062916681728"><small>14:10:50</small></a></span></div>
<div class="a1 user_Thayer"><img src="http://a2.twimg.com/profile_images/1171513278/avatar_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Thayer" class="user">Thayer</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/NimbleOgre">@NimbleOgre</a> oh yes she is! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Thayer/status/16858071577919488"><small>14:10:52</small></a></span></div>
<div class="a0 user_smithsam"><img src="http://a3.twimg.com/profile_images/1143732315/49139_61409894_6303_n_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/smithsam" class="user">smithsam</a> wonders how long til <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> starts trending, and the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> gets joined by a lot of confused american tourists <span><a class="date" target="_blank" href="http://twitter.com/smithsam/status/16858072932687872"><small>14:10:52</small></a></span></div>
<div class="a1 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> *passes Malteasers to <a target="_blank" title="Opens in new window" href="http://twitter.com/BigHeadZach">@BigHeadZach</a>* Take some, and pass it along to <a target="_blank" title="Opens in new window" href="http://twitter.com/EvaPalazzetti">@EvaPalazzetti</a> <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16858141014630400"><small>14:11:08</small></a></span></div>
<div class="a0 user_comeunityarts"><img src="http://a0.twimg.com/profile_images/1187826806/Photo_on_2010-07-17_at_12.06__2_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/comeunityarts" class="user">comeunityarts</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/smithsam">@smithsam</a>: wonders how long til <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> starts trending, and the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> gets joined by a lot of confused american tourists <span><a class="date" target="_blank" href="http://twitter.com/comeunityarts/status/16858191979614208"><small>14:11:20</small></a></span></div>
<div class="a1 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> when do we want them? Now <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pants">#pants</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16858194986926081"><small>14:11:21</small></a></span></div>
<div class="a0 user_tomwilliams1990"><img src="http://a1.twimg.com/profile_images/1080665241/Tom_SP_cHARACTER_normal.PNG" width="32"> <a target="_blank" href="http://twitter.com/tomwilliams1990" class="user">tomwilliams1990</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/scratchradio">@scratchradio</a> OH NO SHE ISN'T <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23ohsobritish">#ohsobritish</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/tomwilliams1990/status/16858264868225024"><small>14:11:38</small></a></span></div>
<div class="a1 user_ecopaintstore"><img src="http://a2.twimg.com/profile_images/97630902/jonny_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/ecopaintstore" class="user">ecopaintstore</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/amandagolding">@amandagolding</a>: She's behind you! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Oh NO sheeees NOT <span><a class="date" target="_blank" href="http://twitter.com/ecopaintstore/status/16858280869494784"><small>14:11:42</small></a></span></div>
<div class="a0 user_bigheadzach"><img src="http://a1.twimg.com/profile_images/1164495905/grumpyborockbowl_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bigheadzach" class="user">bigheadzach</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/Kfyra">@Kfyra</a> You mean Whoppers? Cuz that's what these taste like. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bigheadzach/status/16858297277620224"><small>14:11:45</small></a></span></div>
<div class="a1 user_adam_stewart"><img src="http://a3.twimg.com/profile_images/1185951959/Photo_on_2010-12-02_at_21.26__2_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/adam_stewart" class="user">adam_stewart</a> Loving <a target="_blank" title="Opens in new window" href="http://twitter.com/jonhickman">@jonhickman</a>'s input in the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> lol <span><a class="date" target="_blank" href="http://twitter.com/adam_stewart/status/16858300746305536"><small>14:11:46</small></a></span></div>
<div class="a0 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> a nice beef stew would be good in this weather... <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16858370422083584"><small>14:12:03</small></a></span></div>
<div class="a1 user_mrs_eddieizzard"><img src="http://a2.twimg.com/profile_images/1181839515/image_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/mrs_eddieizzard" class="user">mrs_eddieizzard</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/bashmore">@bashmore</a>: Now here's a way to spend an afternoon, follow the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> here <a target="_blank" title="Opens in new window" href="http://bit.ly/h3OzEK">http://bit.ly/h3OzEK</a> <span><a class="date" target="_blank" href="http://twitter.com/mrs_eddieizzard/status/16858397609558017"><small>14:12:09</small></a></span></div>
<div class="a0 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> is that butcher really George Osborne? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16858463904731137"><small>14:12:25</small></a></span></div>
<div class="a1 user_ShivHarrison"><img src="http://a1.twimg.com/profile_images/1080337564/shivtwit_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/ShivHarrison" class="user">ShivHarrison</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> *sneaks in late* 'excuse me, excuse me. <span><a class="date" target="_blank" href="http://twitter.com/ShivHarrison/status/16858535426002944"><small>14:12:42</small></a></span></div>
<div class="a0 user_pthreadneedle"><img src="http://a2.twimg.com/profile_images/1192982960/me_in_space_small_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pthreadneedle" class="user">pthreadneedle</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/jarrodwilliams">@jarrodwilliams</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/tobynutter">@tobynutter</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/juniperific">@juniperific</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/dracos">@dracos</a> Lol, so she is. Shows how good my eyesight is. Please discount previous!! :o) <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/pthreadneedle/status/16858536487157760"><small>14:12:42</small></a></span></div>
<div class="a1 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/bigheadzach">@bigheadzach</a> potayto-potahto <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16858538492035073"><small>14:12:43</small></a></span></div>
<div class="a0 user_EvaPalazzetti"><img src="http://a3.twimg.com/profile_images/1152122891/Small_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EvaPalazzetti" class="user">EvaPalazzetti</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/Kfyra">@Kfyra</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/bigheadzach">@bigheadzach</a> Thanks dears! I brought some Candy Canes, anyone? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23Twitpanto">#Twitpanto</a>... <span><a class="date" target="_blank" href="http://twitter.com/EvaPalazzetti/status/16858566069583872"><small>14:12:50</small></a></span></div>
<div class="a1 user_lucymathers"><img src="http://a3.twimg.com/profile_images/1170861159/lucy-tf_normal.png" width="32"> <a target="_blank" href="http://twitter.com/lucymathers" class="user">lucymathers</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> beans! lots of beans, lots of beans, lots of beans! <span><a class="date" target="_blank" href="http://twitter.com/lucymathers/status/16858597422014464"><small>14:12:57</small></a></span></div>
<div class="a0 user_rec53"><img src="http://a1.twimg.com/a/1292531900/images/default_profile_1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/rec53" class="user">rec53</a> .<a target="_blank" title="Opens in new window" href="http://twitter.com/jonhickman">@jonhickman</a> Get out whilst you still can! He just wants you for your body <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/rec53/status/16858638006099968"><small>14:13:07</small></a></span></div>
<div class="a1 user_Thayer"><img src="http://a2.twimg.com/profile_images/1171513278/avatar_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Thayer" class="user">Thayer</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/ShivHarrison">@ShivHarrison</a> ow! that was my toe!! :-o <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Thayer/status/16858653910892545"><small>14:13:10</small></a></span></div>
<div class="a0 user_chailey_"><img src="http://a1.twimg.com/profile_images/1180767285/06f7ee08-900d-4ee9-bebc-0c4c4d0cb225_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/chailey_" class="user">chailey_</a> Take the beans! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/chailey_/status/16858663679430657"><small>14:13:13</small></a></span></div>
<div class="a1 user_oldtriangles"><img src="http://a1.twimg.com/profile_images/1192093384/20817825-82c2-46ef-8f8c-5f06c4677dca_normal.png" width="32"> <a target="_blank" href="http://twitter.com/oldtriangles" class="user">oldtriangles</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> has made me quite the happy audience member! <span><a class="date" target="_blank" href="http://twitter.com/oldtriangles/status/16858683992440832"><small>14:13:18</small></a></span></div>
<div class="a0 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> wasn't it <a target="_blank" title="Opens in new window" href="http://twitter.com/nick_clegg">@nick_clegg</a> who last had a bag of magic beans and they turned out to be fake <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23libdems">#libdems</a> <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16858705781850112"><small>14:13:23</small></a></span></div>
<div class="a1 user_juniperific"><img src="http://a3.twimg.com/profile_images/1016527579/Screen_shot_2010-06-23_at_10.46.25_normal.png" width="32"> <a target="_blank" href="http://twitter.com/juniperific" class="user">juniperific</a> Oh no it isn't. Surely McDonalds will chip in a fiver? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/juniperific/status/16858751709483008"><small>14:13:34</small></a></span></div>
<div class="a0 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>. Poor Daisy! <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16858755673100288"><small>14:13:35</small></a></span></div>
<div class="a1 user_HollyCParkerx"><img src="http://a0.twimg.com/profile_images/1140045363/profile_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/HollyCParkerx" class="user">HollyCParkerx</a> <y Instrumental Soundtrack to <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> is now playing Harry Potter music. Just at the mention of magic beans. Coincidence?! Or fate? <span><a class="date" target="_blank" href="http://twitter.com/HollyCParkerx/status/16858836820295680"><small>14:13:54</small></a></span></div>
<div class="a0 user_ShivHarrison"><img src="http://a1.twimg.com/profile_images/1080337564/shivtwit_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/ShivHarrison" class="user">ShivHarrison</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/thayer">@thayer</a> whoops, sorry. "hope you don't mind my screaming child" <span><a class="date" target="_blank" href="http://twitter.com/ShivHarrison/status/16858838128918528"><small>14:13:54</small></a></span></div>
<div class="a1 user_ATTA_grrl"><img src="http://a1.twimg.com/profile_images/626418581/ATTA_LOGO_girlsmall_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/ATTA_grrl" class="user">ATTA_grrl</a> Twitter isn't quite keeping up with <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> head to their site where you can see the script properly <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk">http://beanstalk.twitpanto.co.uk</a> <span><a class="date" target="_blank" href="http://twitter.com/ATTA_grrl/status/16858857376587776"><small>14:13:59</small></a></span></div>
<div class="a0 user_jemimah_knight"><img src="http://a2.twimg.com/profile_images/602892821/jk_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jemimah_knight" class="user">jemimah_knight</a> Go Daisy! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23Twitpanto">#Twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jemimah_knight/status/16858877253390338"><small>14:14:04</small></a></span></div>
<div class="a1 user_bigheadzach"><img src="http://a1.twimg.com/profile_images/1164495905/grumpyborockbowl_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bigheadzach" class="user">bigheadzach</a> I'm interpreting the magic beans as a metaphor for campaign finance reform. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bigheadzach/status/16858883083476993"><small>14:14:05</small></a></span></div>
<div class="a0 user_anishasharma10"><img src="http://a0.twimg.com/profile_images/1193400573/Me_and_Danny_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/anishasharma10" class="user">anishasharma10</a> It's that time of the year again! RT <a target="_blank" title="Opens in new window" href="http://twitter.com/journotutor">@journotutor</a>: Ah, <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> is back. Delightful <a target="_blank" title="Opens in new window" href="http://bit.ly/h3OzEK">http://bit.ly/h3OzEK</a> <span><a class="date" target="_blank" href="http://twitter.com/anishasharma10/status/16858918324011009"><small>14:14:14</small></a></span></div>
<div class="a1 user_Katkin5"><img src="http://a3.twimg.com/profile_images/1044760731/Katkin_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Katkin5" class="user">Katkin5</a> Silly old moo <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Katkin5/status/16858929061437440"><small>14:14:16</small></a></span></div>
<div class="a0 user_MargaOjeda"><img src="http://a2.twimg.com/profile_images/254799430/recorte_copy_peque_o_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/MargaOjeda" class="user">MargaOjeda</a> Delirante la <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> con la actuación de <a target="_blank" title="Opens in new window" href="http://twitter.com/cataspanglish">@cataspanglish</a> <a target="_blank" title="Opens in new window" href="http://bit.ly/dPfrKV">http://bit.ly/dPfrKV</a> . Mola la vaca :-) <span><a class="date" target="_blank" href="http://twitter.com/MargaOjeda/status/16858964666875904"><small>14:14:25</small></a></span></div>
<div class="a1 user_pthreadneedle"><img src="http://a2.twimg.com/profile_images/1192982960/me_in_space_small_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pthreadneedle" class="user">pthreadneedle</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> is as good as the last panto I went to in real life, and that came with 3D glasses. High praise indeed. <span><a class="date" target="_blank" href="http://twitter.com/pthreadneedle/status/16858990667374592"><small>14:14:31</small></a></span></div>
<div class="a0 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> dear <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> audience - please stop rustling your sweet wrappers *tsk* <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16859015199858689"><small>14:14:37</small></a></span></div>
<div class="a1 user_Joyouscomms"><img src="http://a2.twimg.com/profile_images/1194107326/image_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Joyouscomms" class="user">Joyouscomms</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/James_Rock">@James_Rock</a>: <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> wasn't it <a target="_blank" title="Opens in new window" href="http://twitter.com/nick_clegg">@nick_clegg</a> who last had a bag of magic beans and they turned out to be fake <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23libdems">#libdems</a> <span><a class="date" target="_blank" href="http://twitter.com/Joyouscomms/status/16859025190686720"><small>14:14:39</small></a></span></div>
<div class="a0 user_chrislangham2"><img src="http://a1.twimg.com/profile_images/553537305/Pride_2009_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/chrislangham2" class="user">chrislangham2</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Come on Daisy. <span><a class="date" target="_blank" href="http://twitter.com/chrislangham2/status/16859043846955008"><small>14:14:43</small></a></span></div>
<div class="a1 user_HollyCParkerx"><img src="http://a0.twimg.com/profile_images/1140045363/profile_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/HollyCParkerx" class="user">HollyCParkerx</a> Oh yes it is!!! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/HollyCParkerx/status/16859048406163457"><small>14:14:45</small></a></span></div>
<div class="a0 user_Thayer"><img src="http://a2.twimg.com/profile_images/1171513278/avatar_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Thayer" class="user">Thayer</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/ShivHarrison">@ShivHarrison</a> love 'em, just can't eat a whole one. Did you bring some popcorn too? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Thayer/status/16859100239368193"><small>14:14:57</small></a></span></div>
<div class="a1 user_peteashton"><img src="http://a0.twimg.com/profile_images/1194060384/Supersonic_-11___Flickr_-_Photo_Sharing_-1_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/peteashton" class="user">peteashton</a> Oh yes it is! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/peteashton/status/16859134901092352"><small>14:15:05</small></a></span></div>
<div class="a0 user_karenstrunks"><img src="http://a3.twimg.com/profile_images/781259359/twitpic_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/karenstrunks" class="user">karenstrunks</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> And right on queue it starts to SNOW! b13 <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23UKSNOW">#UKSNOW</a> 4/10 <span><a class="date" target="_blank" href="http://twitter.com/karenstrunks/status/16859136864034817"><small>14:15:06</small></a></span></div>
<div class="a1 user_juniperific"><img src="http://a3.twimg.com/profile_images/1016527579/Screen_shot_2010-06-23_at_10.46.25_normal.png" width="32"> <a target="_blank" href="http://twitter.com/juniperific" class="user">juniperific</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/nick_clegg">@nick_clegg</a> just said he had magic beans, he's a lying **** <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/juniperific/status/16859158808625152"><small>14:15:11</small></a></span></div>
<div class="a0 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/James_Rock">@James_Rock</a>: <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> wasn't it <a target="_blank" title="Opens in new window" href="http://twitter.com/nick_clegg">@nick_clegg</a> who last had a bag of magic beans and they turned out to be fake <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23libdems">#libdems</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16859177561358336"><small>14:15:15</small></a></span></div>
<div class="a1 user_Joyouscomms"><img src="http://a2.twimg.com/profile_images/1194107326/image_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Joyouscomms" class="user">Joyouscomms</a> Oh yes it iiiiiissss <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Joyouscomms/status/16859201368227840"><small>14:15:21</small></a></span></div>
<div class="a0 user_smithsam"><img src="http://a3.twimg.com/profile_images/1143732315/49139_61409894_6303_n_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/smithsam" class="user">smithsam</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> no! <span><a class="date" target="_blank" href="http://twitter.com/smithsam/status/16859209823948800"><small>14:15:23</small></a></span></div>
<div class="a1 user_tobynutter"><img src="http://a2.twimg.com/profile_images/1167631754/Photo_148_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/tobynutter" class="user">tobynutter</a> NNNNOOOOOOO! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/tobynutter/status/16859216975241216"><small>14:15:25</small></a></span></div>
<div class="a0 user_ShivHarrison"><img src="http://a1.twimg.com/profile_images/1080337564/shivtwit_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/ShivHarrison" class="user">ShivHarrison</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> nooooooooooo. <span><a class="date" target="_blank" href="http://twitter.com/ShivHarrison/status/16859262500208640"><small>14:15:36</small></a></span></div>
<div class="a1 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>. Noooo! <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16859279789133824"><small>14:15:40</small></a></span></div>
<div class="a0 user_PetsServicesUK"><img src="http://a1.twimg.com/profile_images/1169341330/puppy_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/PetsServicesUK" class="user">PetsServicesUK</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> he's behind you !! <span><a class="date" target="_blank" href="http://twitter.com/PetsServicesUK/status/16859291231199232"><small>14:15:42</small></a></span></div>
<div class="a1 user_chrispinchen"><img src="http://a3.twimg.com/profile_images/460067351/ChrisPinchen_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/chrispinchen" class="user">chrispinchen</a> oh yes it is! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/chrispinchen/status/16859292569174018"><small>14:15:43</small></a></span></div>
<div class="a0 user_Thayer"><img src="http://a2.twimg.com/profile_images/1171513278/avatar_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Thayer" class="user">Thayer</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a> OH NO IT IS. No really, it is. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23daisyburgersallround">#daisyburgersallround</a> <span><a class="date" target="_blank" href="http://twitter.com/Thayer/status/16859299913408512"><small>14:15:44</small></a></span></div>
<div class="a1 user_iskandarv"><img src="http://a1.twimg.com/profile_images/472303929/twitterProfilePhoto_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/iskandarv" class="user">iskandarv</a> Surely the butcher can form a coalition with a pie maker to produce a better offer for Daisy & then renege on it? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/iskandarv/status/16859301792448512"><small>14:15:45</small></a></span></div>
<div class="a0 user_pthreadneedle"><img src="http://a2.twimg.com/profile_images/1192982960/me_in_space_small_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pthreadneedle" class="user">pthreadneedle</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/bobbyllew">@bobbyllew</a> Think you might be amused by <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> - a panto being done right now live on Twitter, see <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/pthreadneedle/status/16859301985386496"><small>14:15:45</small></a></span></div>
<div class="a1 user_smithsam"><img src="http://a3.twimg.com/profile_images/1143732315/49139_61409894_6303_n_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/smithsam" class="user">smithsam</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> oh no it isn't! <span><a class="date" target="_blank" href="http://twitter.com/smithsam/status/16859333325225984"><small>14:15:52</small></a></span></div>
<div class="a0 user_amandagolding"><img src="http://a1.twimg.com/profile_images/1181680789/Eric_normal.png" width="32"> <a target="_blank" href="http://twitter.com/amandagolding" class="user">amandagolding</a> Take the magic beans! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/amandagolding/status/16859337926381568"><small>14:15:54</small></a></span></div>
<div class="a1 user_TVLuke"><img src="http://a3.twimg.com/profile_images/1067464607/4693480188_ce06ba31f4_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/TVLuke" class="user">TVLuke</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>. Nooooooooooooooooooooooooooooooo <span><a class="date" target="_blank" href="http://twitter.com/TVLuke/status/16859358251982848"><small>14:15:58</small></a></span></div>
<div class="a0 user_bigheadzach"><img src="http://a1.twimg.com/profile_images/1164495905/grumpyborockbowl_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bigheadzach" class="user">bigheadzach</a> The butcher isn't interested in bi-partisanism, Jack! Just push the deal on through! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bigheadzach/status/16859365579431936"><small>14:16:00</small></a></span></div>
<div class="a1 user_GeoShore"><img src="http://a3.twimg.com/profile_images/1130487603/restatement_normal.jpeg" width="32"> <a target="_blank" href="http://twitter.com/GeoShore" class="user">GeoShore</a> The Twitter Christmas panto has just started. Audience members can watch by following <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>, and/or heckle with the hashtag <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/GeoShore/status/16859366460227584"><small>14:16:00</small></a></span></div>
<div class="a0 user_falsedog"><img src="http://a3.twimg.com/profile_images/789016863/false_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/falsedog" class="user">falsedog</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Yes it is! <span><a class="date" target="_blank" href="http://twitter.com/falsedog/status/16859395681951744"><small>14:16:07</small></a></span></div>
<div class="a1 user_jemimah_knight"><img src="http://a2.twimg.com/profile_images/602892821/jk_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jemimah_knight" class="user">jemimah_knight</a> Noooo! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> (realising how this looks to other twitterers not watching the panto...*shrug* ) <span><a class="date" target="_blank" href="http://twitter.com/jemimah_knight/status/16859420675809280"><small>14:16:13</small></a></span></div>
<div class="a0 user_juniperific"><img src="http://a3.twimg.com/profile_images/1016527579/Screen_shot_2010-06-23_at_10.46.25_normal.png" width="32"> <a target="_blank" href="http://twitter.com/juniperific" class="user">juniperific</a> Yes, in this depressed climate it probably is. Sod it, lets take the hope of magic over the despair of three groats. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/juniperific/status/16859427252477953"><small>14:16:15</small></a></span></div>
<div class="a1 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> oh dear... <a target="_blank" title="Opens in new window" href="http://twitter.com/nick_clegg">@nick_clegg</a> is turning out to be the pantomime baddy now... <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16859438522568705"><small>14:16:18</small></a></span></div>
<div class="a0 user_mattmurtagh"><img src="http://a2.twimg.com/profile_images/1129152494/9f279f09-a3e3-499c-b6a9-4ae4e6f29521_normal.png" width="32"> <a target="_blank" href="http://twitter.com/mattmurtagh" class="user">mattmurtagh</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> (rustles sweet papers) <span><a class="date" target="_blank" href="http://twitter.com/mattmurtagh/status/16859442167418880"><small>14:16:18</small></a></span></div>
<div class="a1 user_IvoryRajkumari"><img src="http://a1.twimg.com/profile_images/405334708/perish_normal.png" width="32"> <a target="_blank" href="http://twitter.com/IvoryRajkumari" class="user">IvoryRajkumari</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/Thayer">@Thayer</a>: <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a> OH NO IT IS. No really, it is. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23daisyburgersallround">#daisyburgersallround</a> <span><a class="date" target="_blank" href="http://twitter.com/IvoryRajkumari/status/16859480113287168"><small>14:16:27</small></a></span></div>
<div class="a0 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> Butcer is selling Daisy down the river. It is* George Osborne <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16859529396355072"><small>14:16:39</small></a></span></div>
<div class="a1 user_Joyouscomms"><img src="http://a2.twimg.com/profile_images/1194107326/image_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Joyouscomms" class="user">Joyouscomms</a> Nooooo <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> magic beans magic beans magic beans <span><a class="date" target="_blank" href="http://twitter.com/Joyouscomms/status/16859540788092928"><small>14:16:42</small></a></span></div>
<div class="a0 user_jarrodwilliams"><img src="http://a3.twimg.com/profile_images/1181954827/IMG_2410_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jarrodwilliams" class="user">jarrodwilliams</a> Yes, in these times it probably is. Although those beans won't help cover the extensive student loan he'll have t
o take out <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jarrodwilliams/status/16859617774534656"><small>14:17:00</small></a></span></div>
<div class="a1 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> mixed metaphors there? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23fail">#fail</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16859712322543618"><small>14:17:23</small></a></span></div>
<div class="a0 user_smithsam"><img src="http://a3.twimg.com/profile_images/1143732315/49139_61409894_6303_n_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/smithsam" class="user">smithsam</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> surely it should be the Govt's wine cellar? cc <a target="_blank" title="Opens in new window" href="http://twitter.com/tom_watson">@tom_watson</a> <span><a class="date" target="_blank" href="http://twitter.com/smithsam/status/16859729959583744"><small>14:17:27</small></a></span></div>
<div class="a1 user_kazthomas"><img src="http://a3.twimg.com/profile_images/1194789967/f839dde9-a317-4454-b86b-b9c536a54b71_normal.png" width="32"> <a target="_blank" href="http://twitter.com/kazthomas" class="user">kazthomas</a> Heckling and cheering! Boooo <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23Twitpanto">#Twitpanto</a> *audience* <span><a class="date" target="_blank" href="http://twitter.com/kazthomas/status/16859756643753986"><small>14:17:33</small></a></span></div>
<div class="a0 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Oooooh! <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16859805469638657"><small>14:17:45</small></a></span></div>
<div class="a1 user_juniperific"><img src="http://a3.twimg.com/profile_images/1016527579/Screen_shot_2010-06-23_at_10.46.25_normal.png" width="32"> <a target="_blank" href="http://twitter.com/juniperific" class="user">juniperific</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/jarrodwilliams">@jarrodwilliams</a> I don't think Jack is a natural academic <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/juniperific/status/16859811324887040"><small>14:17:46</small></a></span></div>
<div class="a0 user_smithsam"><img src="http://a3.twimg.com/profile_images/1143732315/49139_61409894_6303_n_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/smithsam" class="user">smithsam</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> collapses laughing at "Assangelina: the good fairy" <span><a class="date" target="_blank" href="http://twitter.com/smithsam/status/16859867608260608"><small>14:18:00</small></a></span></div>
<div class="a1 user_MarsRich"><img src="http://a0.twimg.com/profile_images/1125693230/615raDtzBhL._SS60__normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/MarsRich" class="user">MarsRich</a> You know it is. It really is <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/MarsRich/status/16859869655080960"><small>14:18:00</small></a></span></div>
<div class="a0 user_parboo"><img src="http://a3.twimg.com/profile_images/1188793063/786b29fc-6e32-4664-99be-246cc846f193_normal.png" width="32"> <a target="_blank" href="http://twitter.com/parboo" class="user">parboo</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> The set looks fabulous this year darlings <a target="_blank" title="Opens in new window" href="http://twitter.com/dracos">@dracos</a> <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/parboo/status/16859894191755264"><small>14:18:06</small></a></span></div>
<div class="a1 user_IgniteBrum"><img src="http://a2.twimg.com/profile_images/774904186/ignite_Birmingham_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/IgniteBrum" class="user">IgniteBrum</a> Got <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23TwitPanto">#TwitPanto</a> sneakily running in a side bar while I work: <a target="_blank" title="Opens in new window" href="http://lnkd.in/F6BVB_">http://lnkd.in/F6BVB_</a> Live panto on Twitter! :D <span><a class="date" target="_blank" href="http://twitter.com/IgniteBrum/status/16859900009250816"><small>14:18:08</small></a></span></div>
<div class="a0 user_bigheadzach"><img src="http://a1.twimg.com/profile_images/1164495905/grumpyborockbowl_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bigheadzach" class="user">bigheadzach</a> The fairy is currently wanted in Sweden for questioning regarding dusting a few coeds. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bigheadzach/status/16859932259258368"><small>14:18:15</small></a></span></div>
<div class="a1 user_karenstrunks"><img src="http://a3.twimg.com/profile_images/781259359/twitpic_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/karenstrunks" class="user">karenstrunks</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23SAVEDAISY">#SAVEDAISY</a> :'( <span><a class="date" target="_blank" href="http://twitter.com/karenstrunks/status/16859984289603584"><small>14:18:28</small></a></span></div>
<div class="a0 user_EvaPalazzetti"><img src="http://a3.twimg.com/profile_images/1152122891/Small_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EvaPalazzetti" class="user">EvaPalazzetti</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/smithsam">@smithsam</a>: <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> collapses laughing at "Assangelina: the good fairy" <span><a class="date" target="_blank" href="http://twitter.com/EvaPalazzetti/status/16860030452105216"><small>14:18:39</small></a></span></div>
<div class="a1 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> watch out Assangelina... there's an extradition order being prepared... its behind you!!! <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16860045601935360"><small>14:18:42</small></a></span></div>
<div class="a0 user_homercreative"><img src="http://a2.twimg.com/profile_images/830386506/BrianAvatar06_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/homercreative" class="user">homercreative</a> Sorry I'm missing <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> can't get to the computer for snow on the stairs <span><a class="date" target="_blank" href="http://twitter.com/homercreative/status/16860057450844160"><small>14:18:45</small></a></span></div>
<div class="a1 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> lol! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16860089663094784"><small>14:18:53</small></a></span></div>
<div class="a0 user_parboo"><img src="http://a3.twimg.com/profile_images/1188793063/786b29fc-6e32-4664-99be-246cc846f193_normal.png" width="32"> <a target="_blank" href="http://twitter.com/parboo" class="user">parboo</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Sorry I'm late, 'scuse me, can I squeeze by please -oops, sorry madam can I just ... get.. that.. choc from your hair? Thanks. <span><a class="date" target="_blank" href="http://twitter.com/parboo/status/16860103223283712"><small>14:18:56</small></a></span></div>
<div class="a1 user_PixieSixer"><img src="http://a3.twimg.com/profile_images/977868951/facebookpage_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/PixieSixer" class="user">PixieSixer</a> Assangelina! *titters* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/PixieSixer/status/16860104687095808"><small>14:18:56</small></a></span></div>
<div class="a0 user_Mrs_Penguin"><img src="http://a2.twimg.com/profile_images/1143778974/20101012_001_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Mrs_Penguin" class="user">Mrs_Penguin</a> Really enjoying <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>. <span><a class="date" target="_blank" href="http://twitter.com/Mrs_Penguin/status/16860127873208321"><small>14:19:02</small></a></span></div>
<div class="a1 user_parboo"><img src="http://a3.twimg.com/profile_images/1188793063/786b29fc-6e32-4664-99be-246cc846f193_normal.png" width="32"> <a target="_blank" href="http://twitter.com/parboo" class="user">parboo</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> did I miss much, has he sold the cow yet? <span><a class="date" target="_blank" href="http://twitter.com/parboo/status/16860168381792256"><small>14:19:12</small></a></span></div>
<div class="a0 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> *punches <a target="_blank" title="Opens in new window" href="http://twitter.com/BigHeadZach">@BigHeadZach</a> in shoulder* Stop, you're making me choke. lol <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16860196596879360"><small>14:19:18</small></a></span></div>
<div class="a1 user_lumilyon"><img src="http://a1.twimg.com/profile_images/1174155069/UNEXPECTED_ICON_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/lumilyon" class="user">lumilyon</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/Kfyra">@Kfyra</a> ok! Who scheduled the start of <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> at same time as <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23archers">#archers</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23thearchers">#thearchers</a> ???? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23fail">#fail</a> !!! <span><a class="date" target="_blank" href="http://twitter.com/lumilyon/status/16860236467929088"><small>14:19:28</small></a></span></div>
<div class="a0 user_katbrown82"><img src="http://a0.twimg.com/profile_images/634030990/twitterProfilePhoto_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/katbrown82" class="user">katbrown82</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Suddenly Assangelina the Good Fairy appears. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/katbrown82/status/16860243950575616"><small>14:19:30</small></a></span></div>
<div class="a1 user_karenstrunks"><img src="http://a3.twimg.com/profile_images/781259359/twitpic_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/karenstrunks" class="user">karenstrunks</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/parboo">@parboo</a> tsk. There's always one ;) Gizza chocolate <span><a class="date" target="_blank" href="http://twitter.com/karenstrunks/status/16860255384248321"><small>14:19:32</small></a></span></div>
<div class="a0 user_ATTA_grrl"><img src="http://a1.twimg.com/profile_images/626418581/ATTA_LOGO_girlsmall_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/ATTA_grrl" class="user">ATTA_grrl</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/getgood">@getgood</a>: Jeremy: You can't come in. We're staging a sit in. Shutting the market <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23mademesmile">#mademesmile</a>. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/ATTA_grrl/status/16860277437890560"><small>14:19:38</small></a></span></div>
<div class="a1 user_bigheadzach"><img src="http://a1.twimg.com/profile_images/1164495905/grumpyborockbowl_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bigheadzach" class="user">bigheadzach</a> Vegans are in agreement that beans are a much more karma-friendly means of getting your protein than beef. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bigheadzach/status/16860291715309568"><small>14:19:41</small></a></span></div>
<div class="a0 user_GeoShore"><img src="http://a3.twimg.com/profile_images/1130487603/restatement_normal.jpeg" width="32"> <a target="_blank" href="http://twitter.com/GeoShore" class="user">GeoShore</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Suddenly Assangelina the Good Fairy appears. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/GeoShore/status/16860301852942337"><small>14:19:43</small></a></span></div>
<div class="a1 user_Katkin5"><img src="http://a3.twimg.com/profile_images/1044760731/Katkin_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Katkin5" class="user">Katkin5</a> Fnar fnar 'sects'.... <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Katkin5/status/16860328235114496"><small>14:19:50</small></a></span></div>
<div class="a0 user_MJRoberts55"><img src="http://a1.twimg.com/profile_images/627149169/avatar2_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/MJRoberts55" class="user">MJRoberts55</a> I'm utterly utterly utterly confused by this <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/MJRoberts55/status/16860340390207488"><small>14:19:53</small></a></span></div>
<div class="a1 user_PetsServicesUK"><img src="http://a1.twimg.com/profile_images/1169341330/puppy_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/PetsServicesUK" class="user">PetsServicesUK</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> that kings wine cellar is really an Abattoir <span><a class="date" target="_blank" href="http://twitter.com/PetsServicesUK/status/16860344332845056"><small>14:19:53</small></a></span></div>
<div class="a0 user_parboo"><img src="http://a3.twimg.com/profile_images/1188793063/786b29fc-6e32-4664-99be-246cc846f193_normal.png" width="32"> <a target="_blank" href="http://twitter.com/parboo" class="user">parboo</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/karenstrunks">@karenstrunks</a> - and it's always me! *chucks chocolate* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/parboo/status/16860364176105473"><small>14:19:58</small></a></span></div>
<div class="a1 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> (other brands of beans are available <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16860390130458624"><small>14:20:04</small></a></span></div>
<div class="a0 user_Thayer"><img src="http://a2.twimg.com/profile_images/1171513278/avatar_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Thayer" class="user">Thayer</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/MJRoberts55">@MJRoberts55</a> <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> might help :) <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Thayer/status/16860453070180352"><small>14:20:19</small></a></span></div>
<div class="a1 user__RebeccaParker_"><img src="http://a0.twimg.com/profile_images/1172907142/5021058379_cdb7344e63_webb_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/_RebeccaParker_" class="user">_RebeccaParker_</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/bigheadzach">@bigheadzach</a>: Vegans are in agreement that beans are a much more karma-friendly means of getting your protein than beef. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/_RebeccaParker_/status/16860477464248320"><small>14:20:25</small></a></span></div>
<div class="a0 user_juniperific"><img src="http://a3.twimg.com/profile_images/1016527579/Screen_shot_2010-06-23_at_10.46.25_normal.png" width="32"> <a target="_blank" href="http://twitter.com/juniperific" class="user">juniperific</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/MJRoberts55">@MJRoberts55</a> Go to <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> to see it more clearly <span><a class="date" target="_blank" href="http://twitter.com/juniperific/status/16860528274046976"><small>14:20:37</small></a></span></div>
<div class="a1 user_smithsam"><img src="http://a3.twimg.com/profile_images/1143732315/49139_61409894_6303_n_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/smithsam" class="user">smithsam</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> oooooooh! <span><a class="date" target="_blank" href="http://twitter.com/smithsam/status/16860552294825985"><small>14:20:43</small></a></span></div>
<div class="a0 user_samson_cat"><img src="http://a1.twimg.com/profile_images/205535238/3396010611_a47ca1d1a2_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/samson_cat" class="user">samson_cat</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/jaynehowarth">@jaynehowarth</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/getgood">@getgood</a> bought me with a tin of HP beans with sausages. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/samson_cat/status/16860554924658688"><small>14:20:44</small></a></span></div>
<div class="a1 user_emma_duke"><img src="http://a2.twimg.com/profile_images/546175518/Me_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/emma_duke" class="user">emma_duke</a> Enjoying <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Especially Assangelina the guardian angel, keeper of the secrets. <span><a class="date" target="_blank" href="http://twitter.com/emma_duke/status/16860580765769729"><small>14:20:50</small></a></span></div>
<div class="a0 user_HollyCParkerx"><img src="http://a0.twimg.com/profile_images/1140045363/profile_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/HollyCParkerx" class="user">HollyCParkerx</a> Whoa whoa, back to Scene One!? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/HollyCParkerx/status/16860588281954304"><small>14:20:52</small></a></span></div>
<div class="a1 user_Joyouscomms"><img src="http://a2.twimg.com/profile_images/1194107326/image_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Joyouscomms" class="user">Joyouscomms</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/parboo">@parboo</a> saved your seat :-) <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Joyouscomms/status/16860612814446592"><small>14:20:58</small></a></span></div>
<div class="a0 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/benjiw">@benjiw</a> is that the same bloke Lemsip who went out with one of those singing sisters? <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16860617520447488"><small>14:20:59</small></a></span></div>
<div class="a1 user_PixieSixer"><img src="http://a3.twimg.com/profile_images/977868951/facebookpage_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/PixieSixer" class="user">PixieSixer</a> Could the child behind please stop kicking my seat! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/PixieSixer/status/16860674965639168"><small>14:21:12</small></a></span></div>
<div class="a0 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/samson_cat">@samson_cat</a> classy ain't ya? you could also get breakfast in a tin (<a target="_blank" title="Opens in new window" href="http://twitter.com/getgood">@getgood</a>) <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16860754586116096"><small>14:21:31</small></a></span></div>
<div class="a1 user_pthreadneedle"><img src="http://a2.twimg.com/profile_images/1192982960/me_in_space_small_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pthreadneedle" class="user">pthreadneedle</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/MJRoberts55">@MJRoberts55</a> <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> has one stream with all the cast actually on a stage, lots of fun <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/pthreadneedle/status/16860767001251840"><small>14:21:34</small></a></span></div>
<div class="a0 user_bigheadzach"><img src="http://a1.twimg.com/profile_images/1164495905/grumpyborockbowl_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bigheadzach" class="user">bigheadzach</a> The beans, btw, were tiny, blue, and diamond shaped with the magic word "Pfizer" stamped on them. Hence the giant stalk. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bigheadzach/status/16860770558021633"><small>14:21:35</small></a></span></div>
<div class="a1 user_rec53"><img src="http://a1.twimg.com/a/1292531900/images/default_profile_1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/rec53" class="user">rec53</a> Oh, that was me. Sorry <a target="_blank" title="Opens in new window" href="http://twitter.com/PixieSixer">@PixieSixer</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/rec53/status/16860816443711488"><small>14:21:46</small></a></span></div>
<div class="a0 user_parboo"><img src="http://a3.twimg.com/profile_images/1188793063/786b29fc-6e32-4664-99be-246cc846f193_normal.png" width="32"> <a target="_blank" href="http://twitter.com/parboo" class="user">parboo</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/Joyouscomms">@Joyouscomms</a> ahm, that's great thanks. I blame the southern traffic - 1" snow and hampshire grinds to a halt!! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/parboo/status/16860816775053312"><small>14:21:46</small></a></span></div>
<div class="a1 user_samson_cat"><img src="http://a1.twimg.com/profile_images/205535238/3396010611_a47ca1d1a2_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/samson_cat" class="user">samson_cat</a> I *MUST* climb that giant stalk! *leaps from chair* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/samson_cat/status/16860822735163393"><small>14:21:48</small></a></span></div>
<div class="a0 user_AnnaAtTheAmbler"><img src="http://a1.twimg.com/profile_images/384190487/anna_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/AnnaAtTheAmbler" class="user">AnnaAtTheAmbler</a> must have been GM beans <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/AnnaAtTheAmbler/status/16860839147479040"><small>14:21:51</small></a></span></div>
<div class="a1 user_homercreative"><img src="http://a2.twimg.com/profile_images/830386506/BrianAvatar06_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/homercreative" class="user">homercreative</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/PixieSixer">@PixieSixer</a> I won't kick your seat if you can take that ridiculous hat off! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/homercreative/status/16860927890554880"><small>14:22:13</small></a></span></div>
<div class="a0 user_vaughanevans"><img src="http://a2.twimg.com/profile_images/26268762/rock_star_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/vaughanevans" class="user">vaughanevans</a> Laughing at <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> right now. Get involved! <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/vaughanevans/status/16860928075112448"><small>14:22:13</small></a></span></div>
<div class="a1 user_rec53"><img src="http://a1.twimg.com/a/1292531900/images/default_profile_1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/rec53" class="user">rec53</a> Should have paid for some more expensive seats, there isn't much legroom up here <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/rec53/status/16860943321407489"><small>14:22:16</small></a></span></div>
<div class="a0 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>. Chia-stalk. <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16860958005661696"><small>14:22:20</small></a></span></div>
<div class="a1 user_Katkin5"><img src="http://a3.twimg.com/profile_images/1044760731/Katkin_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Katkin5" class="user">Katkin5</a> titter.... 'shaft' <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Katkin5/status/16860981137244160"><small>14:22:25</small></a></span></div>
<div class="a0 user_carolinebeavon"><img src="http://a1.twimg.com/profile_images/1194776205/c779be49-7b46-4148-9922-8e53127c2a5e_normal.png" width="32"> <a target="_blank" href="http://twitter.com/carolinebeavon" class="user">carolinebeavon</a> Gasp. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> is RUDE. I like it. <a target="_blank" title="Opens in new window" href="http://bit.ly/gMfEzz">http://bit.ly/gMfEzz</a> <span><a class="date" target="_blank" href="http://twitter.com/carolinebeavon/status/16860985864232962"><small>14:22:26</small></a></span></div>
<div class="a1 user_pdavenne"><img src="http://a3.twimg.com/profile_images/1179873595/pat_pite_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pdavenne" class="user">pdavenne</a> Oh, my, and the magical beans will be intervened by the Spanish gov'mnt for the alarm state budget <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/pdavenne/status/16861012850376705"><small>14:22:33</small></a></span></div>
<div class="a0 user_PikAnda"><img src="http://a3.twimg.com/profile_images/393558851/Pikanda_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/PikAnda" class="user">PikAnda</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/MJRoberts55">@MJRoberts55</a> don't worry, it's behind you! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/PikAnda/status/16861075106435072"><small>14:22:48</small></a></span></div>
<div class="a1 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> I always have someone 6ft3 sitting in front of me at these things <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> can't see now <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16861107717144577"><small>14:22:56</small></a></span></div>
<div class="a0 user_mrs_eddieizzard"><img src="http://a2.twimg.com/profile_images/1181839515/image_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/mrs_eddieizzard" class="user">mrs_eddieizzard</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Suddenly Assangelina the Good Fairy appears. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mrs_eddieizzard/status/16861153808359424"><small>14:23:06</small></a></span></div>
<div class="a1 user_karenstrunks"><img src="http://a3.twimg.com/profile_images/781259359/twitpic_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/karenstrunks" class="user">karenstrunks</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> The costumes are amazing this year! <span><a class="date" target="_blank" href="http://twitter.com/karenstrunks/status/16861208724373505"><small>14:23:20</small></a></span></div>
<div class="a0 user_thebeardyman"><img src="http://a1.twimg.com/profile_images/1164326505/35e4690f-4961-4d6e-9471-abb2c488be50_normal.png" width="32"> <a target="_blank" href="http://twitter.com/thebeardyman" class="user">thebeardyman</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/JayneHowarth">@JayneHowarth</a> sorry *sinks down into seat* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/thebeardyman/status/16861213673652224"><small>14:23:21</small></a></span></div>
<div class="a1 user_adam_stewart"><img src="http://a3.twimg.com/profile_images/1185951959/Photo_on_2010-12-02_at_21.26__2_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/adam_stewart" class="user">adam_stewart</a> I can think of something! <a target="_blank" title="Opens in new window" href="http://twitter.com/beniw">@beniw</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/adam_stewart/status/16861217108787200"><small>14:23:22</small></a></span></div>
<div class="a0 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> (*whispers*) A shaft like that... You don't question, just say "Thank you." <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16861222703988736"><small>14:23:23</small></a></span></div>
<div class="a1 user_2aback2"><img src="http://a1.twimg.com/profile_images/1194807784/ffd588bd-09eb-4174-a43f-24ae93028057_normal.png" width="32"> <a target="_blank" href="http://twitter.com/2aback2" class="user">2aback2</a> haha <a target="_blank" title="Opens in new window" href="http://twitter.com/bigheadzach">@bigheadzach</a> 's blue beans <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/2aback2/status/16861255520231426"><small>14:23:31</small></a></span></div>
<div class="a0 user_journotutor"><img src="http://a2.twimg.com/profile_images/541484238/marie_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/journotutor" class="user">journotutor</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/JayneHowarth">@JayneHowarth</a> Sorry, I'll move <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/journotutor/status/16861260394004480"><small>14:23:32</small></a></span></div>
<div class="a1 user_pthreadneedle"><img src="http://a2.twimg.com/profile_images/1192982960/me_in_space_small_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pthreadneedle" class="user">pthreadneedle</a> Gutted, I got to the bottom of my raspberry ripple screwball and the bubblegum was missing :o( <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/pthreadneedle/status/16861262465998848"><small>14:23:32</small></a></span></div>
<div class="a0 user_garethhector"><img src="http://a0.twimg.com/profile_images/929827860/GH_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/garethhector" class="user">garethhector</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Am I too late, I brought ice cream in a pot! <span><a class="date" target="_blank" href="http://twitter.com/garethhector/status/16861292287496192"><small>14:23:40</small></a></span></div>
<div class="a1 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> - That's the spirit, Jack! <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16861362147827714"><small>14:23:56</small></a></span></div>
<div class="a0 user_bigheadzach"><img src="http://a1.twimg.com/profile_images/1164495905/grumpyborockbowl_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bigheadzach" class="user">bigheadzach</a> If beanstalk persists for more than 4 hours, consult a lumberjack. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bigheadzach/status/16861389922504704"><small>14:24:03</small></a></span></div>
<div class="a1 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> why would changing your Facebook pic stop paediatricians? what have they done? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23paedo">#paedo</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16861393194065921"><small>14:24:04</small></a></span></div>
<div class="a0 user_samson_cat"><img src="http://a1.twimg.com/profile_images/205535238/3396010611_a47ca1d1a2_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/samson_cat" class="user">samson_cat</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/probablydrunk">@probablydrunk</a> *jealous* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/samson_cat/status/16861397526777856"><small>14:24:05</small></a></span></div>
<div class="a1 user_BhamLibrarian"><img src="http://a1.twimg.com/profile_images/1075774192/P1010015_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/BhamLibrarian" class="user">BhamLibrarian</a> Bugger - Missed the start of the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> - what's the story so far? <span><a class="date" target="_blank" href="http://twitter.com/BhamLibrarian/status/16861402685767680"><small>14:24:06</small></a></span></div>
<div class="a0 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> are the clouds as high as the Rotunda? <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16861403423973376"><small>14:24:06</small></a></span></div>
<div class="a1 user_jemimah_knight"><img src="http://a2.twimg.com/profile_images/602892821/jk_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jemimah_knight" class="user">jemimah_knight</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/Kfyra">@Kfyra</a>: <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> (*whispers*) A shaft like that... You don't question, just say "Thank you." <span><a class="date" target="_blank" href="http://twitter.com/jemimah_knight/status/16861413079257089"><small>14:24:08</small></a></span></div>
<div class="a0 user_amandagolding"><img src="http://a1.twimg.com/profile_images/1181680789/Eric_normal.png" width="32"> <a target="_blank" href="http://twitter.com/amandagolding" class="user">amandagolding</a> Oh-er! Jack is climbing the shaft! ;) <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/amandagolding/status/16861447019569152"><small>14:24:16</small></a></span></div>
<div class="a1 user_mannyc"><img src="http://a3.twimg.com/profile_images/96363651/Manny_winter_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/mannyc" class="user">mannyc</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/JayneHowarth">@JayneHowarth</a> here, this comedy caveman club may help :-) <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mannyc/status/16861495010791424"><small>14:24:28</small></a></span></div>
<div class="a0 user_HollyCParkerx"><img src="http://a0.twimg.com/profile_images/1140045363/profile_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/HollyCParkerx" class="user">HollyCParkerx</a> Is that a Euphemism? "He climed and climbed until he reached the clouds?" <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/HollyCParkerx/status/16861503793668096"><small>14:24:30</small></a></span></div>
<div class="a1 user_parboo"><img src="http://a3.twimg.com/profile_images/1188793063/786b29fc-6e32-4664-99be-246cc846f193_normal.png" width="32"> <a target="_blank" href="http://twitter.com/parboo" class="user">parboo</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> aha, I just looked up in time to see see Jack mounting the shaft. So he did sell the cow... <span><a class="date" target="_blank" href="http://twitter.com/parboo/status/16861526803611649"><small>14:24:35</small></a></span></div>
<div class="a0 user_lumilyon"><img src="http://a1.twimg.com/profile_images/1174155069/UNEXPECTED_ICON_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/lumilyon" class="user">lumilyon</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/Kfyra">@Kfyra</a> oooh err missus!!! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23shaft">#shaft</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/lumilyon/status/16861540376383488"><small>14:24:39</small></a></span></div>
<div class="a1 user_EvaPalazzetti"><img src="http://a3.twimg.com/profile_images/1152122891/Small_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EvaPalazzetti" class="user">EvaPalazzetti</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/bigheadzach">@bigheadzach</a>: If beanstalk persists for more than 4 hours, consult a lumberjack. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/EvaPalazzetti/status/16861570181111808"><small>14:24:46</small></a></span></div>
<div class="a0 user_AnnaAtTheAmbler"><img src="http://a1.twimg.com/profile_images/384190487/anna_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/AnnaAtTheAmbler" class="user">AnnaAtTheAmbler</a> *cough* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/AnnaAtTheAmbler/status/16861578309668864"><small>14:24:48</small></a></span></div>
<div class="a1 user_thebeardyman"><img src="http://a1.twimg.com/profile_images/1164326505/35e4690f-4961-4d6e-9471-abb2c488be50_normal.png" width="32"> <a target="_blank" href="http://twitter.com/thebeardyman" class="user">thebeardyman</a> Jack, you were meant to plant the beans not smoke them to get high <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23sigh">#sigh</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/thebeardyman/status/16861598308114432"><small>14:24:52</small></a></span></div>
<div class="a0 user_Joyouscomms"><img src="http://a2.twimg.com/profile_images/1194107326/image_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Joyouscomms" class="user">Joyouscomms</a> LOL Jack's (<a target="_blank" title="Opens in new window" href="http://twitter.com/probaydrunk">@probaydrunk</a>) paedo line! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Joyouscomms/status/16861604511490049"><small>14:24:54</small></a></span></div>
<div class="a1 user_2aback2"><img src="http://a1.twimg.com/profile_images/1194807784/ffd588bd-09eb-4174-a43f-24ae93028057_normal.png" width="32"> <a target="_blank" href="http://twitter.com/2aback2" class="user">2aback2</a> RT via <a target="_blank" title="Opens in new window" href="http://twitter.com/jemimah_knight">@jemimah_knight</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/Kfyra">@Kfyra</a>: <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> (*whispers*) A shaft like that... You don't question, just say "Thank you." # <span><a class="date" target="_blank" href="http://twitter.com/2aback2/status/16861621263536128"><small>14:24:58</small></a></span></div>
<div class="a0 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/bigheadzach">@bigheadzach</a>: If beanstalk persists for more than 4 hours, consult a lumberjack. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> # <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16861670798266368"><small>14:25:10</small></a></span></div>
<div class="a1 user_pdavenne"><img src="http://a3.twimg.com/profile_images/1179873595/pat_pite_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pdavenne" class="user">pdavenne</a> Aaaand... here comes <a target="_blank" title="Opens in new window" href="http://twitter.com/cataspanglish">@cataspanglish</a> (maybe) <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/pdavenne/status/16861671309971457"><small>14:25:10</small></a></span></div>
<div class="a0 user_mattbuck_hack"><img src="http://a0.twimg.com/profile_images/421989800/Ha_cartoons_WEB_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/mattbuck_hack" class="user">mattbuck_hack</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/parboo">@parboo</a> The amount of methane that cow is passing, I'm not sure you'd want it
<a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/mattbuck_hack/status/16861679191068672"><small>14:25:12</small></a></span></div>
<div class="a1 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> is this where the green giant of sweetcorn fame lives? <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16861714381279232"><small>14:25:20</small></a></span></div>
<div class="a0 user_AnnaAtTheAmbler"><img src="http://a1.twimg.com/profile_images/384190487/anna_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/AnnaAtTheAmbler" class="user">AnnaAtTheAmbler</a> *cough, cough cough cough cough cough cough * <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/AnnaAtTheAmbler/status/16861745935024129"><small>14:25:28</small></a></span></div>
<div class="a1 user_JamesAbb5"><img src="http://a3.twimg.com/profile_images/1172104939/29726_10150184598180615_501925614_12213558_1181507_n__resize__normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JamesAbb5" class="user">JamesAbb5</a> haha loving <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> more <a target="_blank" title="Opens in new window" href="http://twitter.com/jonhickman">@jonhickman</a>!! <span><a class="date" target="_blank" href="http://twitter.com/JamesAbb5/status/16861751131774976"><small>14:25:29</small></a></span></div>
<div class="a0 user_pezholio"><img src="http://a1.twimg.com/profile_images/1165403341/8dd6465c-e9ca-4f38-be7b-fcfa42e805d2_normal.png" width="32"> <a target="_blank" href="http://twitter.com/pezholio" class="user">pezholio</a> Gaaah! I'm missing <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>! <span><a class="date" target="_blank" href="http://twitter.com/pezholio/status/16861753031786496"><small>14:25:29</small></a></span></div>
<div class="a1 user_tobynutter"><img src="http://a2.twimg.com/profile_images/1167631754/Photo_148_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/tobynutter" class="user">tobynutter</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/rachel_simmo">@rachel_simmo</a> yeh, but <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> is on now! <span><a class="date" target="_blank" href="http://twitter.com/tobynutter/status/16861764150890496"><small>14:25:32</small></a></span></div>
<div class="a0 user_Joyouscomms"><img src="http://a2.twimg.com/profile_images/1194107326/image_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Joyouscomms" class="user">Joyouscomms</a> Note to sekf: Must stop typing <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitprentice">#twitprentice</a> instead of <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Joyouscomms/status/16861777929183232"><small>14:25:35</small></a></span></div>
<div class="a1 user_kazthomas"><img src="http://a3.twimg.com/profile_images/1194789967/f839dde9-a317-4454-b86b-b9c536a54b71_normal.png" width="32"> <a target="_blank" href="http://twitter.com/kazthomas" class="user">kazthomas</a> *Sneeze* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23Twitpanto">#Twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/kazthomas/status/16861781133627392"><small>14:25:36</small></a></span></div>
<div class="a0 user_2aback2"><img src="http://a1.twimg.com/profile_images/1194807784/ffd588bd-09eb-4174-a43f-24ae93028057_normal.png" width="32"> <a target="_blank" href="http://twitter.com/2aback2" class="user">2aback2</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/vaughanevans">@vaughanevans</a> Laughing at <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> right now. Get involved! <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/2aback2/status/16861824674697216"><small>14:25:46</small></a></span></div>
<div class="a1 user_pthreadneedle"><img src="http://a2.twimg.com/profile_images/1192982960/me_in_space_small_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pthreadneedle" class="user">pthreadneedle</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/ellardent">@ellardent</a> You might like <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> - a panto being done live on Twitter right now, with cast + hecklers <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/pthreadneedle/status/16861839426068480"><small>14:25:50</small></a></span></div>
<div class="a0 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> lorks - reading the audience heckling and not the plot <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16861856798871552"><small>14:25:54</small></a></span></div>
<div class="a1 user_jarrodwilliams"><img src="http://a3.twimg.com/profile_images/1181954827/IMG_2410_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jarrodwilliams" class="user">jarrodwilliams</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23wewantmoredaisy">#wewantmoredaisy</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jarrodwilliams/status/16861880026931200"><small>14:26:00</small></a></span></div>
<div class="a0 user_amandagolding"><img src="http://a1.twimg.com/profile_images/1181680789/Eric_normal.png" width="32"> <a target="_blank" href="http://twitter.com/amandagolding" class="user">amandagolding</a> Ha ha ha! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23iamspartacus">#iamspartacus</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/amandagolding/status/16861882396704768"><small>14:26:00</small></a></span></div>
<div class="a1 user_AnnaAtTheAmbler"><img src="http://a1.twimg.com/profile_images/384190487/anna_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/AnnaAtTheAmbler" class="user">AnnaAtTheAmbler</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/kazthomas">@kazthomas</a> glad I'm not the only one here with a cold <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/AnnaAtTheAmbler/status/16861948675104769"><small>14:26:16</small></a></span></div>
<div class="a0 user_tobynutter"><img src="http://a2.twimg.com/profile_images/1167631754/Photo_148_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/tobynutter" class="user">tobynutter</a> actually lolled at the giant! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/tobynutter/status/16861955968995329"><small>14:26:18</small></a></span></div>
<div class="a1 user_samson_cat"><img src="http://a1.twimg.com/profile_images/205535238/3396010611_a47ca1d1a2_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/samson_cat" class="user">samson_cat</a> There's a chicken! I love chicken. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/samson_cat/status/16861968434466816"><small>14:26:21</small></a></span></div>
<div class="a0 user_garethhector"><img src="http://a0.twimg.com/profile_images/929827860/GH_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/garethhector" class="user">garethhector</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Don't kill the cock that lays the eggs! Ouch, that's gotta hurt. <span><a class="date" target="_blank" href="http://twitter.com/garethhector/status/16862125175603200"><small>14:26:58</small></a></span></div>
<div class="a1 user_bigheadzach"><img src="http://a1.twimg.com/profile_images/1164495905/grumpyborockbowl_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bigheadzach" class="user">bigheadzach</a> Golden Cock soup is available at most pho restaurants. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bigheadzach/status/16862128912736256"><small>14:26:59</small></a></span></div>
<div class="a0 user_HollyCParkerx"><img src="http://a0.twimg.com/profile_images/1140045363/profile_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/HollyCParkerx" class="user">HollyCParkerx</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/virtualfutures">@virtualfutures</a> Consider this a tweet of interest! (Btw... you following <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>? You should be!) <a target="_blank" title="Opens in new window" href="http://bit.ly/h3OzEK">http://bit.ly/h3OzEK</a> <span><a class="date" target="_blank" href="http://twitter.com/HollyCParkerx/status/16862153424248832"><small>14:27:05</small></a></span></div>
<div class="a1 user_saskarmadillo"><img src="http://a0.twimg.com/profile_images/1194842459/photo_2_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/saskarmadillo" class="user">saskarmadillo</a> I've got a horse outside ... woot! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23dances">#dances</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> :D <span><a class="date" target="_blank" href="http://twitter.com/saskarmadillo/status/16862224471564288"><small>14:27:22</small></a></span></div>
<div class="a0 user_lumilyon"><img src="http://a1.twimg.com/profile_images/1174155069/UNEXPECTED_ICON_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/lumilyon" class="user">lumilyon</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/cybrum">@cybrum</a>: <a target="_blank" title="Opens in new window" href="http://twitter.com/benjiw">@benjiw</a> I've heard you can fit 29 Chilean miners in your big shaft? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/lumilyon/status/16862394986795008"><small>14:28:02</small></a></span></div>
<div class="a1 user_toodamnninja"><img src="http://a1.twimg.com/profile_images/1035757561/Scott_Pilgrim_avatar_v2_small_normal.png" width="32"> <a target="_blank" href="http://twitter.com/toodamnninja" class="user">toodamnninja</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/jonhickman">@jonhickman</a>: Daisy: mooooooooooooooo! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/toodamnninja/status/16862418273574912"><small>14:28:08</small></a></span></div>
<div class="a0 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> cocks laying eggs? Are we into genetic engineering territory now? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16862453736415232"><small>14:28:16</small></a></span></div>
<div class="a1 user_meganknight"><img src="http://a3.twimg.com/profile_images/74211159/ATT00125_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/meganknight" class="user">meganknight</a> watching <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> - he's behind you <span><a class="date" target="_blank" href="http://twitter.com/meganknight/status/16862525110886400"><small>14:28:33</small></a></span></div>
<div class="a0 user_kazthomas"><img src="http://a3.twimg.com/profile_images/1194789967/f839dde9-a317-4454-b86b-b9c536a54b71_normal.png" width="32"> <a target="_blank" href="http://twitter.com/kazthomas" class="user">kazthomas</a> *Laugh out loud* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23Twitpanto">#Twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/kazthomas/status/16862559630008320"><small>14:28:42</small></a></span></div>
<div class="a1 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> *waves* Hi <a target="_blank" title="Opens in new window" href="http://twitter.com/Lumilyon">@Lumilyon</a>. Good show, in'it? <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16862576377856000"><small>14:28:46</small></a></span></div>
<div class="a0 user_pdavenne"><img src="http://a3.twimg.com/profile_images/1179873595/pat_pite_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pdavenne" class="user">pdavenne</a> A proletarian? Is this giant from the past? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/pdavenne/status/16862655520182272"><small>14:29:05</small></a></span></div>
<div class="a1 user_bigheadzach"><img src="http://a1.twimg.com/profile_images/1164495905/grumpyborockbowl_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bigheadzach" class="user">bigheadzach</a> It's not so much a class struggle as it is a mentally-slow boy stealing golden eggs from a Mafia legbreaker. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bigheadzach/status/16862681109630976"><small>14:29:11</small></a></span></div>
<div class="a0 user_garethhector"><img src="http://a0.twimg.com/profile_images/929827860/GH_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/garethhector" class="user">garethhector</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Harp, a bit fizzy, nice pint. <span><a class="date" target="_blank" href="http://twitter.com/garethhector/status/16862683819151360"><small>14:29:11</small></a></span></div>
<div class="a1 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Is it true that govt is going to put a special golden egg tax in the next budget? <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16862738626121728"><small>14:29:24</small></a></span></div>
<div class="a0 user_bigheadzach"><img src="http://a1.twimg.com/profile_images/1164495905/grumpyborockbowl_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bigheadzach" class="user">bigheadzach</a> Aw shit, here's the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23suchtweet">#suchtweet</a> REMIX! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bigheadzach/status/16862781034729472"><small>14:29:34</small></a></span></div>
<div class="a1 user_juniperific"><img src="http://a3.twimg.com/profile_images/1016527579/Screen_shot_2010-06-23_at_10.46.25_normal.png" width="32"> <a target="_blank" href="http://twitter.com/juniperific" class="user">juniperific</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/JayneHowarth">@JayneHowarth</a> The chicken was simply cross with the cock. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/juniperific/status/16862791147192320"><small>14:29:37</small></a></span></div>
<div class="a0 user_EvaPalazzetti"><img src="http://a3.twimg.com/profile_images/1152122891/Small_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EvaPalazzetti" class="user">EvaPalazzetti</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/bigheadzach">@bigheadzach</a>: Aw shit, here's the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23suchtweet">#suchtweet</a> REMIX! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/EvaPalazzetti/status/16862847472504832"><small>14:29:50</small></a></span></div>
<div class="a1 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> LOLLUVERZ! <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16862849288642561"><small>14:29:51</small></a></span></div>
<div class="a0 user_lumilyon"><img src="http://a1.twimg.com/profile_images/1174155069/UNEXPECTED_ICON_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/lumilyon" class="user">lumilyon</a> Only just got here, catching up with the smut! RT <a target="_blank" title="Opens in new window" href="http://twitter.com/Kfyra">@Kfyra</a>: <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> *waves* Hi <a target="_blank" title="Opens in new window" href="http://twitter.com/Lumilyon">@Lumilyon</a>. Good show, in'it? <span><a class="date" target="_blank" href="http://twitter.com/lumilyon/status/16862848248455168"><small>14:29:50</small></a></span></div>
<div class="a1 user_2aback2"><img src="http://a1.twimg.com/profile_images/1194807784/ffd588bd-09eb-4174-a43f-24ae93028057_normal.png" width="32"> <a target="_blank" href="http://twitter.com/2aback2" class="user">2aback2</a> RT via <a target="_blank" title="Opens in new window" href="http://twitter.com/probablydrunk">@probablydrunk</a> Jack: There's no work out there mum, even Snow White is laying men off. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> # <span><a class="date" target="_blank" href="http://twitter.com/2aback2/status/16862871270985729"><small>14:29:56</small></a></span></div>
<div class="a0 user_IvoryRajkumari"><img src="http://a1.twimg.com/profile_images/405334708/perish_normal.png" width="32"> <a target="_blank" href="http://twitter.com/IvoryRajkumari" class="user">IvoryRajkumari</a> Loving Ghetto Romeo and Juliet!!!! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/IvoryRajkumari/status/16862878334197760"><small>14:29:58</small></a></span></div>
<div class="a1 user_MargaOjeda"><img src="http://a2.twimg.com/profile_images/254799430/recorte_copy_peque_o_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/MargaOjeda" class="user">MargaOjeda</a> En escena <a target="_blank" title="Opens in new window" href="http://twitter.com/cataspanglish">@cataspanglish</a> en la <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://bit.ly/h3OzEK">http://bit.ly/h3OzEK</a> Me parece un Gigante con alma de gaditano... ;-) <span><a class="date" target="_blank" href="http://twitter.com/MargaOjeda/status/16862901595807746"><small>14:30:03</small></a></span></div>
<div class="a0 user_rec53"><img src="http://a1.twimg.com/a/1292531900/images/default_profile_1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/rec53" class="user">rec53</a> Don't understand this teenage spk, why can't the youth of today talk properly; but laughing out loud at <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/rec53/status/16862988631801857"><small>14:30:24</small></a></span></div>
<div class="a1 user_bigheadzach"><img src="http://a1.twimg.com/profile_images/1164495905/grumpyborockbowl_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bigheadzach" class="user">bigheadzach</a> (pours one out for <a target="_blank" title="Opens in new window" href="http://twitter.com/mercuteio">@mercuteio</a>) Never forget, bro. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bigheadzach/status/16863008370200576"><small>14:30:29</small></a></span></div>
<div class="a0 user_pdavenne"><img src="http://a3.twimg.com/profile_images/1179873595/pat_pite_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pdavenne" class="user">pdavenne</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/cataspanglish">@cataspanglish</a> return to your grave, Karl, those times are past <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/pdavenne/status/16863072534663168"><small>14:30:44</small></a></span></div>
<div class="a1 user_Shottty"><img src="http://a2.twimg.com/profile_images/1117306481/Profile_photo1_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/Shottty" class="user">Shottty</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: Scene 1:Welcome to austerity Pantoland cold hard place where hard working single parents struggle to survive. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Shottty/status/16863101676683265"><small>14:30:51</small></a></span></div>
<div class="a0 user_lumilyon"><img src="http://a1.twimg.com/profile_images/1174155069/UNEXPECTED_ICON_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/lumilyon" class="user">lumilyon</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/bigheadzach">@bigheadzach</a>: Aw shit, here's the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23suchtweet">#suchtweet</a> REMIX! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/lumilyon/status/16863130512523265"><small>14:30:58</small></a></span></div>
<div class="a1 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> that geezer Romeo was on the bus next to me t'other day.. <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16863136854310912"><small>14:30:59</small></a></span></div>
<div class="a0 user_AnnaAtTheAmbler"><img src="http://a1.twimg.com/profile_images/384190487/anna_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/AnnaAtTheAmbler" class="user">AnnaAtTheAmbler</a> I say - can we have subtitles for these youth types? I can't understand a bleedin word <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/AnnaAtTheAmbler/status/16863148560617472"><small>14:31:02</small></a></span></div>
<div class="a1 user_amandagolding"><img src="http://a1.twimg.com/profile_images/1181680789/Eric_normal.png" width="32"> <a target="_blank" href="http://twitter.com/amandagolding" class="user">amandagolding</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/karmadillo">@karmadillo</a>: Juliet: Look! Itz a giant beanstalk, innit tho?! Fo shizzle! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/amandagolding/status/16863174888259584"><small>14:31:08</small></a></span></div>
<div class="a0 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> dem romeo and juliet kids are well romantic innit <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16863193527754753"><small>14:31:13</small></a></span></div>
<div class="a1 user_iskandarv"><img src="http://a1.twimg.com/profile_images/472303929/twitterProfilePhoto_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/iskandarv" class="user">iskandarv</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/bigheadzach">@bigheadzach</a>: (pours one out for <a target="_blank" title="Opens in new window" href="http://twitter.com/mercuteio">@mercuteio</a>) Never forget, bro. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/iskandarv/status/16863204932063232"><small>14:31:16</small></a></span></div>
<div class="a0 user_ainhoaeus"><img src="http://a3.twimg.com/profile_images/1194766208/d481fe6c-0f91-458b-b5ac-683a4c926aa9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/ainhoaeus" class="user">ainhoaeus</a> Enjoying <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> , both drama and comments XD <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/ainhoaeus/status/16863293545127937"><small>14:31:37</small></a></span></div>
<div class="a1 user_Minimorticia"><img src="http://a1.twimg.com/profile_images/1158320689/04a7a414-6de6-48f3-a451-2391e0220274_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Minimorticia" class="user">Minimorticia</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: With his hands full of chicken and harp, Jack ran back down to safety. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Minimorticia/status/16863359043375104"><small>14:31:52</small></a></span></div>
<div class="a0 user_Joyouscomms"><img src="http://a2.twimg.com/profile_images/1194107326/image_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Joyouscomms" class="user">Joyouscomms</a> Loving <a target="_blank" title="Opens in new window" href="http://twitter.com/Karmadillo">@Karmadillo</a> & <a target="_blank" title="Opens in new window" href="http://twitter.com/Daneed4">@Daneed4</a> as Romeo & Juliette <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> actual LOL <span><a class="date" target="_blank" href="http://twitter.com/Joyouscomms/status/16863433861365761"><small>14:32:10</small></a></span></div>
<div class="a1 user_bigheadzach"><img src="http://a1.twimg.com/profile_images/1164495905/grumpyborockbowl_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bigheadzach" class="user">bigheadzach</a> "Gladys & Ron's House of Chicken and Harp" <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bigheadzach/status/16863518737309696"><small>14:32:30</small></a></span></div>
<div class="a0 user_chrispinchen"><img src="http://a3.twimg.com/profile_images/460067351/ChrisPinchen_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/chrispinchen" class="user">chrispinchen</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/MargaOjeda">@MargaOjeda</a> let's take the TARDIS to Cadiz <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/chrispinchen/status/16863573921767425"><small>14:32:43</small></a></span></div>
<div class="a1 user_timtfj"><img src="http://a0.twimg.com/profile_images/552226912/Twitter3_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/timtfj" class="user">timtfj</a> Oh has <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> started? Excellent :-) <span><a class="date" target="_blank" href="http://twitter.com/timtfj/status/16863586970243072"><small>14:32:47</small></a></span></div>
<div class="a0 user_Katkin5"><img src="http://a3.twimg.com/profile_images/1044760731/Katkin_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Katkin5" class="user">Katkin5</a> Big cheer for jack! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Katkin5/status/16863595245608960"><small>14:32:49</small></a></span></div>
<div class="a1 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> - Jack needs crampons to climb the shaft, but has a smoooooth ride down holding a cock. Oh wait - a hen. ;-/ <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16863616523309056"><small>14:32:54</small></a></span></div>
<div class="a0 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> that giangt who expects others to do the work for him? Eric Pickles? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16863620113633280"><small>14:32:55</small></a></span></div>
<div class="a1 user_Joyouscomms"><img src="http://a2.twimg.com/profile_images/1194107326/image_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Joyouscomms" class="user">Joyouscomms</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/JayneHowarth">@JayneHowarth</a>: dem romeo and juliet kids are well romantic innit <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Joyouscomms/status/16863661733711873"><small>14:33:04</small></a></span></div>
<div class="a0 user_pdavenne"><img src="http://a3.twimg.com/profile_images/1179873595/pat_pite_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pdavenne" class="user">pdavenne</a> To all those who're not following <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>, shame on you ;-) <span><a class="date" target="_blank" href="http://twitter.com/pdavenne/status/16863664753606657"><small>14:33:05</small></a></span></div>
<div class="a1 user_amandagolding"><img src="http://a1.twimg.com/profile_images/1181680789/Eric_normal.png" width="32"> <a target="_blank" href="http://twitter.com/amandagolding" class="user">amandagolding</a> Is that Cameron in the castle then? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/amandagolding/status/16863673851056129"><small>14:33:07</small></a></span></div>
<div class="a0 user_karenstrunks"><img src="http://a3.twimg.com/profile_images/781259359/twitpic_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/karenstrunks" class="user">karenstrunks</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Romeo & Juliet are my favs! <a target="_blank" title="Opens in new window" href="http://twitter.com/daneed4">@daneed4</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/karmadillo">@karmadillo</a> innit! <span><a class="date" target="_blank" href="http://twitter.com/karenstrunks/status/16863689198014464"><small>14:33:11</small></a></span></div>
<div class="a1 user_MargaOjeda"><img src="http://a2.twimg.com/profile_images/254799430/recorte_copy_peque_o_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/MargaOjeda" class="user">MargaOjeda</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/cataspanglish">@cataspanglish</a> Giant, don't blink!!!! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/MargaOjeda/status/16863761394569216"><small>14:33:28</small></a></span></div>
<div class="a0 user_smithsam"><img src="http://a1.twimg.com/profile_images/1143732315/49139_61409894_6303_n_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/smithsam" class="user">smithsam</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/amandagolding">@amandagolding</a> osborne <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/smithsam/status/16863769846091776"><small>14:33:30</small></a></span></div>
<div class="a1 user_bigheadzach"><img src="http://a1.twimg.com/profile_images/1164495905/grumpyborockbowl_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bigheadzach" class="user">bigheadzach</a> The idea is the Giant will get the eggs and the money will "trickle-down" the beanstalk to help those below. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23notreally">#notreally</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bigheadzach/status/16863807934570496"><small>14:33:39</small></a></span></div>
<div class="a0 user_garethhector"><img src="http://a0.twimg.com/profile_images/929827860/GH_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/garethhector" class="user">garethhector</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Cameron, nope, Stevie Wonder. <span><a class="date" target="_blank" href="http://twitter.com/garethhector/status/16863819078828032"><small>14:33:42</small></a></span></div>
<div class="a1 user_pdavenne"><img src="http://a3.twimg.com/profile_images/1179873595/pat_pite_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pdavenne" class="user">pdavenne</a> XD -> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/mazzawoo">@mazzawoo</a>: The Harp: Upgrade to Hapify pro for only ten groats a month. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/pdavenne/status/16863820769136641"><small>14:33:42</small></a></span></div>
<div class="a0 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> RT: mazzawoo The Harp: Upgrade to Hapify pro for only ten groats a month. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> # <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16863848313126912"><small>14:33:49</small></a></span></div>
<div class="a1 user_jarrodwilliams"><img src="http://a3.twimg.com/profile_images/1181954827/IMG_2410_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jarrodwilliams" class="user">jarrodwilliams</a> Is harpify in public beta? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jarrodwilliams/status/16863872937885696"><small>14:33:55</small></a></span></div>
<div class="a0 user_2aback2"><img src="http://a1.twimg.com/profile_images/1194807784/ffd588bd-09eb-4174-a43f-24ae93028057_normal.png" width="32"> <a target="_blank" href="http://twitter.com/2aback2" class="user">2aback2</a> RT via <a target="_blank" title="Opens in new window" href="http://twitter.com/probablydrunk">@probablydrunk</a> These are magic mum, the chicken lays golden eggs and the harp plays Unlimited music, plus a few adverts. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/2aback2/status/16863943771291648"><small>14:34:12</small></a></span></div>
<div class="a1 user_EvaPalazzetti"><img src="http://a3.twimg.com/profile_images/1152122891/Small_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EvaPalazzetti" class="user">EvaPalazzetti</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/pdavenne">@pdavenne</a>: To all those who're not following <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>, shame on you ;-) <span><a class="date" target="_blank" href="http://twitter.com/EvaPalazzetti/status/16863951329435648"><small>14:34:13</small></a></span></div>
<div class="a0 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> this bean thing - sounds a bit like a ponzi scheme, tbh <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16863978865033216"><small>14:34:20</small></a></span></div>
<div class="a1 user_pthreadneedle"><img src="http://a2.twimg.com/profile_images/1192982960/me_in_space_small_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pthreadneedle" class="user">pthreadneedle</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> LOL at Harpify, I literally *just* got the joke. I'm not very internet savvy :o\ <span><a class="date" target="_blank" href="http://twitter.com/pthreadneedle/status/16864022225756160"><small>14:34:30</small></a></span></div>
<div class="a0 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> has <a target="_blank" title="Opens in new window" href="http://twitter.com/ed_miliband">@ed_miliband</a> heard about this... what has he got to say about all these golden eggs and inheritance taxes <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16864136143048704"><small>14:34:58</small></a></span></div>
<div class="a1 user_parboo"><img src="http://a3.twimg.com/profile_images/1188793063/786b29fc-6e32-4664-99be-246cc846f193_normal.png" width="32"> <a target="_blank" href="http://twitter.com/parboo" class="user">parboo</a> I really hope my followers are enjoying the best of brum - <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/parboo/status/16864146284879872"><small>14:35:00</small></a></span></div>
<div class="a0 user_Katkin5"><img src="http://a3.twimg.com/profile_images/1044760731/Katkin_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Katkin5" class="user">Katkin5</a> Guffaw... 'crack' <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Katkin5/status/16864170393739265"><small>14:35:06</small></a></span></div>
<div class="a1 user_kazthomas"><img src="http://a3.twimg.com/profile_images/1194789967/f839dde9-a317-4454-b86b-b9c536a54b71_normal.png" width="32"> <a target="_blank" href="http://twitter.com/kazthomas" class="user">kazthomas</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/AnnaAtTheAmbler">@AnnaAtTheAmbler</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> :) <span><a class="date" target="_blank" href="http://twitter.com/kazthomas/status/16864173560438784"><small>14:35:06</small></a></span></div>
<div class="a0 user_pdavenne"><img src="http://a3.twimg.com/profile_images/1179873595/pat_pite_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pdavenne" class="user">pdavenne</a> Having a crack with the princess? maybe this IS class-based <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23smoking">#smoking</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/pdavenne/status/16864177532436480"><small>14:35:07</small></a></span></div>
<div class="a1 user_garethhector"><img src="http://a0.twimg.com/profile_images/929827860/GH_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/garethhector" class="user">garethhector</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Jack starts on some class A after coming into money. <a target="_blank" title="Opens in new window" href="http://twitter.com/probablydrunk">@probablydrunk</a> <span><a class="date" target="_blank" href="http://twitter.com/garethhector/status/16864182611742721"><small>14:35:09</small></a></span></div>
<div class="a0 user_iskandarv"><img src="http://a1.twimg.com/profile_images/472303929/twitterProfilePhoto_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/iskandarv" class="user">iskandarv</a> Jack stay off the crack, it will do you no good <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/iskandarv/status/16864217999081474"><small>14:35:17</small></a></span></div>
<div class="a1 user_thedancingflea"><img src="http://a3.twimg.com/profile_images/1177799599/Me_II_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/thedancingflea" class="user">thedancingflea</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> GOD NO! <span><a class="date" target="_blank" href="http://twitter.com/thedancingflea/status/16864229868961792"><small>14:35:20</small></a></span></div>
<div class="a0 user_bigheadzach"><img src="http://a1.twimg.com/profile_images/1164495905/grumpyborockbowl_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bigheadzach" class="user">bigheadzach</a> No! No one wants debris on the runway! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bigheadzach/status/16864259996651520"><small>14:35:27</small></a></span></div>
<div class="a1 user_parboo"><img src="http://a3.twimg.com/profile_images/1188793063/786b29fc-6e32-4664-99be-246cc846f193_normal.png" width="32"> <a target="_blank" href="http://twitter.com/parboo" class="user">parboo</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> oh yes she should# <span><a class="date" target="_blank" href="http://twitter.com/parboo/status/16864269119266816"><small>14:35:29</small></a></span></div>
<div class="a0 user_AnnaAtTheAmbler"><img src="http://a1.twimg.com/profile_images/384190487/anna_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/AnnaAtTheAmbler" class="user">AnnaAtTheAmbler</a> Oh no she shouldn't <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/AnnaAtTheAmbler/status/16864281437933568"><small>14:35:32</small></a></span></div>
<div class="a1 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> - yesssss! wait, no, no she shouldn't! <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16864281744117760"><small>14:35:32</small></a></span></div>
<div class="a0 user_juniperific"><img src="http://a3.twimg.com/profile_images/1016527579/Screen_shot_2010-06-23_at_10.46.25_normal.png" width="32"> <a target="_blank" href="http://twitter.com/juniperific" class="user">juniperific</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/James_Rock">@James_Rock</a> Windfall Tax on golden eggs. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/juniperific/status/16864291525230593"><small>14:35:35</small></a></span></div>
<div class="a1 user_chrispinchen"><img src="http://a3.twimg.com/profile_images/460067351/ChrisPinchen_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/chrispinchen" class="user">chrispinchen</a> oh yes she should <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/chrispinchen/status/16864298110296065"><small>14:35:36</small></a></span></div>
<div class="a0 user__RebeccaParker_"><img src="http://a0.twimg.com/profile_images/1172907142/5021058379_cdb7344e63_webb_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/_RebeccaParker_" class="user">_RebeccaParker_</a> Yesss get vajazzled!! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/_RebeccaParker_/status/16864305278361600"><small>14:35:38</small></a></span></div>
<div class="a1 user_tobynutter"><img src="http://a2.twimg.com/profile_images/1167631754/Photo_148_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/tobynutter" class="user">tobynutter</a> i think the answer is yes? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/tobynutter/status/16864315810258945"><small>14:35:40</small></a></span></div>
<div class="a0 user_ATTA_grrl"><img src="http://a1.twimg.com/profile_images/626418581/ATTA_LOGO_girlsmall_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/ATTA_grrl" class="user">ATTA_grrl</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/mazzawoo">@mazzawoo</a>: The Harp: Upgrade to Hapify pro for only ten groats a month. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/ATTA_grrl/status/16864317357953025"><small>14:35:41</small></a></span></div>
<div class="a1 user_EvaPalazzetti"><img src="http://a3.twimg.com/profile_images/1152122891/Small_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EvaPalazzetti" class="user">EvaPalazzetti</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a> YEEEESSSSSS! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23Twitpanto">#Twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/EvaPalazzetti/status/16864349284990976"><small>14:35:48</small></a></span></div>
<div class="a0 user_pdavenne"><img src="http://a3.twimg.com/profile_images/1179873595/pat_pite_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pdavenne" class="user">pdavenne</a> oh no she shouldn't <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/pdavenne/status/16864349310164994"><small>14:35:48</small></a></span></div>
<div class="a1 user_thebeardyman"><img src="http://a1.twimg.com/profile_images/1164326505/35e4690f-4961-4d6e-9471-abb2c488be50_normal.png" width="32"> <a target="_blank" href="http://twitter.com/thebeardyman" class="user">thebeardyman</a> oh no she shouldn't <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/thebeardyman/status/16864356931207169"><small>14:35:50</small></a></span></div>
<div class="a0 user_tobynutter"><img src="http://a2.twimg.com/profile_images/1167631754/Photo_148_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/tobynutter" class="user">tobynutter</a> oh! No you cant! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/tobynutter/status/16864368650092545"><small>14:35:53</small></a></span></div>
<div class="a1 user_pthreadneedle"><img src="http://a2.twimg.com/profile_images/1192982960/me_in_space_small_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pthreadneedle" class="user">pthreadneedle</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> NO <span><a class="date" target="_blank" href="http://twitter.com/pthreadneedle/status/16864380780027904"><small>14:35:56</small></a></span></div>
<div class="a0 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> *serious face* moral dilemma on <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>? <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16864392385658881"><small>14:35:59</small></a></span></div>
<div class="a1 user_IvoryRajkumari"><img src="http://a1.twimg.com/profile_images/405334708/perish_normal.png" width="32"> <a target="_blank" href="http://twitter.com/IvoryRajkumari" class="user">IvoryRajkumari</a> vajazzled ?!
Yes please then I can find out what it is!!!! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/IvoryRajkumari/status/16864397762764800"><small>14:36:00</small></a></span></div>
<div class="a0 user_jarrodwilliams"><img src="http://a3.twimg.com/profile_images/1181954827/IMG_2410_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jarrodwilliams" class="user">jarrodwilliams</a> Dam right she should! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jarrodwilliams/status/16864398886830081"><small>14:36:00</small></a></span></div>
<div class="a1 user_parboo"><img src="http://a3.twimg.com/profile_images/1188793063/786b29fc-6e32-4664-99be-246cc846f193_normal.png" width="32"> <a target="_blank" href="http://twitter.com/parboo" class="user">parboo</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> oh yes she should <span><a class="date" target="_blank" href="http://twitter.com/parboo/status/16864418763644928"><small>14:36:05</small></a></span></div>
<div class="a0 user_jemimah_knight"><img src="http://a2.twimg.com/profile_images/602892821/jk_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jemimah_knight" class="user">jemimah_knight</a> Oh No! You can't! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jemimah_knight/status/16864423838748672"><small>14:36:06</small></a></span></div>
<div class="a1 user_Bodelairs"><img src="http://a0.twimg.com/profile_images/1167750852/d36b7e4e-a443-4235-91c5-80256b6fc3a3_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Bodelairs" class="user">Bodelairs</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/thedancingflea">@thedancingflea</a>: <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> GOD NO! > Its behind you!!! :-D <span><a class="date" target="_blank" href="http://twitter.com/Bodelairs/status/16864449314951168"><small>14:36:12</small></a></span></div>
<div class="a0 user_rec53"><img src="http://a1.twimg.com/a/1292531900/images/default_profile_1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/rec53" class="user">rec53</a> I know vajazzled must be innuendo, but not sure what for <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/rec53/status/16864457359622144"><small>14:36:14</small></a></span></div>
<div class="a1 user_garethhector"><img src="http://a0.twimg.com/profile_images/929827860/GH_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/garethhector" class="user">garethhector</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Yes, but no, but yes, but no, but yes, but, arrrgh! <span><a class="date" target="_blank" href="http://twitter.com/garethhector/status/16864467778281472"><small>14:36:17</small></a></span></div>
<div class="a0 user_tobynutter"><img src="http://a2.twimg.com/profile_images/1167631754/Photo_148_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/tobynutter" class="user">tobynutter</a> oh no you secretary for culture! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/tobynutter/status/16864473323143169"><small>14:36:18</small></a></span></div>
<div class="a1 user_falsedog"><img src="http://a3.twimg.com/profile_images/789016863/false_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/falsedog" class="user">falsedog</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Less of your lip Nadine! <span><a class="date" target="_blank" href="http://twitter.com/falsedog/status/16864498451222528"><small>14:36:24</small></a></span></div>
<div class="a0 user_journotutor"><img src="http://a2.twimg.com/profile_images/541484238/marie_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/journotutor" class="user">journotutor</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> No! <span><a class="date" target="_blank" href="http://twitter.com/journotutor/status/16864506084855808"><small>14:36:26</small></a></span></div>
<div class="a1 user_iskandarv"><img src="http://a1.twimg.com/profile_images/472303929/twitterProfilePhoto_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/iskandarv" class="user">iskandarv</a> Nadine, even if you do, I do not want to know about it <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/iskandarv/status/16864508546916353"><small>14:36:26</small></a></span></div>
<div class="a0 user_juniperific"><img src="http://a3.twimg.com/profile_images/1016527579/Screen_shot_2010-06-23_at_10.46.25_normal.png" width="32"> <a target="_blank" href="http://twitter.com/juniperific" class="user">juniperific</a> Why not search the term on the internet, eh, kids? From the office? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/juniperific/status/16864582261800961"><small>14:36:44</small></a></span></div>
<div class="a1 user_TomSprints"><img src="http://a1.twimg.com/profile_images/1170642965/1c1cd413-4c46-493f-9680-9f9107079d93_normal.png" width="32"> <a target="_blank" href="http://twitter.com/TomSprints" class="user">TomSprints</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> (Enter new character) Hello peeps! I am Spartacus! <span><a class="date" target="_blank" href="http://twitter.com/TomSprints/status/16864615463915520"><small>14:36:52</small></a></span></div>
<div class="a0 user_bigheadzach"><img src="http://a1.twimg.com/profile_images/1164495905/grumpyborockbowl_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bigheadzach" class="user">bigheadzach</a> Gideon the Giant? Is <a target="_blank" title="Opens in new window" href="http://twitter.com/edgarwright">@edgarwright</a> or <a target="_blank" title="Opens in new window" href="http://twitter.com/radiomaru">@radiomaru</a> listening? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bigheadzach/status/16864659915145216"><small>14:37:02</small></a></span></div>
<div class="a1 user_Pssepto"><img src="http://a3.twimg.com/profile_images/1159952767/DSC_6605_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Pssepto" class="user">Pssepto</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/probablydrunk">@probablydrunk</a> Jack: These are magic mum, the chicken lays golden eggs and the harp plays Unlimited music, plus a few adverts <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Pssepto/status/16864708065763328"><small>14:37:14</small></a></span></div>
<div class="a0 user_thebeardyman"><img src="http://a1.twimg.com/profile_images/1164326505/35e4690f-4961-4d6e-9471-abb2c488be50_normal.png" width="32"> <a target="_blank" href="http://twitter.com/thebeardyman" class="user">thebeardyman</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/TomSprints">@TomSprints</a> no, I'm Spartacus <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/thebeardyman/status/16864765619994625"><small>14:37:28</small></a></span></div>
<div class="a1 user_2aback2"><img src="http://a1.twimg.com/profile_images/1194807784/ffd588bd-09eb-4174-a43f-24ae93028057_normal.png" width="32"> <a target="_blank" href="http://twitter.com/2aback2" class="user">2aback2</a> RT via <a target="_blank" title="Opens in new window" href="http://twitter.com/benjiw">@benjiw</a> Nadine: Oh yes I should, bitches! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> # <span><a class="date" target="_blank" href="http://twitter.com/2aback2/status/16864814538166272"><small>14:37:39</small></a></span></div>
<div class="a0 user_AnnaAtTheAmbler"><img src="http://a1.twimg.com/profile_images/384190487/anna_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/AnnaAtTheAmbler" class="user">AnnaAtTheAmbler</a> Groan <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/AnnaAtTheAmbler/status/16864873354895360"><small>14:37:53</small></a></span></div>
<div class="a1 user_tenbus_uk"><img src="http://a3.twimg.com/profile_images/1137413683/f618154f-762e-4c87-a420-104ed8352b8b_normal.png" width="32"> <a target="_blank" href="http://twitter.com/tenbus_uk" class="user">tenbus_uk</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/gavinwray">@gavinwray</a> Bob Marley's Ghost: No Woman, No Pie. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> # <span><a class="date" target="_blank" href="http://twitter.com/tenbus_uk/status/16864938718924800"><small>14:38:09</small></a></span></div>
<div class="a0 user_Katkin5"><img src="http://a3.twimg.com/profile_images/1044760731/Katkin_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Katkin5" class="user">Katkin5</a> "No woman, no pie'... who'd a thunk it?! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Katkin5/status/16864939922690048"><small>14:38:09</small></a></span></div>
<div class="a1 user_judeinlondon"><img src="http://a3.twimg.com/profile_images/1179274599/7dffaccc-fb7d-4c2e-b921-60f68d606bd1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/judeinlondon" class="user">judeinlondon</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/bigheadzach">@bigheadzach</a>: (pours one out for <a target="_blank" title="Opens in new window" href="http://twitter.com/mercuteio">@mercuteio</a>) Never forget, bro. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/judeinlondon/status/16864945601777665"><small>14:38:11</small></a></span></div>
<div class="a0 user_2aback2"><img src="http://a1.twimg.com/profile_images/1194807784/ffd588bd-09eb-4174-a43f-24ae93028057_normal.png" width="32"> <a target="_blank" href="http://twitter.com/2aback2" class="user">2aback2</a> RT via <a target="_blank" title="Opens in new window" href="http://twitter.com/gavinwray">@gavinwray</a> Bob Marley's Ghost: I and I are de ghost of your former business partner. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> # <span><a class="date" target="_blank" href="http://twitter.com/2aback2/status/16864960776769536"><small>14:38:14</small></a></span></div>
<div class="a1 user_pdavenne"><img src="http://a3.twimg.com/profile_images/1179873595/pat_pite_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pdavenne" class="user">pdavenne</a> Giants are all freelance, as is well known <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/pdavenne/status/16864977285545984"><small>14:38:18</small></a></span></div>
<div class="a0 user_ATTA_grrl"><img src="http://a1.twimg.com/profile_images/626418581/ATTA_LOGO_girlsmall_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/ATTA_grrl" class="user">ATTA_grrl</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a> Noooo vajazzling is a distressing concept imagine the re-growth + glue + jewels issues URGGGH <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/ATTA_grrl/status/16864979001020417"><small>14:38:18</small></a></span></div>
<div class="a1 user_rec53"><img src="http://a1.twimg.com/a/1292531900/images/default_profile_1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/rec53" class="user">rec53</a> Eew, vajazelling actually exists, I'm clearly too innocent. Stop spoiling my innocence <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/rec53/status/16864996889726976"><small>14:38:23</small></a></span></div>
<div class="a0 user_EnglishFolkfan"><img src="http://a1.twimg.com/profile_images/780918181/use_for_my_new_twit_pic_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EnglishFolkfan" class="user">EnglishFolkfan</a> if it comes tax free then everyone will want to be vajazzled even The Giant Gideon ~ errr who's volunteering? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/EnglishFolkfan/status/16865004863098880"><small>14:38:25</small></a></span></div>
<div class="a1 user_bigsamthetim"><img src="http://a0.twimg.com/profile_images/1181642356/image_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/bigsamthetim" class="user">bigsamthetim</a> Clegg it's behind you o no the parties not behind me ..... <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bigsamthetim/status/16865006687625216"><small>14:38:25</small></a></span></div>
<div class="a0 user_2aback2"><img src="http://a1.twimg.com/profile_images/1194807784/ffd588bd-09eb-4174-a43f-24ae93028057_normal.png" width="32"> <a target="_blank" href="http://twitter.com/2aback2" class="user">2aback2</a> RT via <a target="_blank" title="Opens in new window" href="http://twitter.com/cataspanglish">@cataspanglish</a> The Giant:I've never had a business partner, Gianting is strictly a Sole Trader industry. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> # <span><a class="date" target="_blank" href="http://twitter.com/2aback2/status/16865027906605057"><small>14:38:30</small></a></span></div>
<div class="a1 user_BhamLibrarian"><img src="http://a1.twimg.com/profile_images/1075774192/P1010015_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/BhamLibrarian" class="user">BhamLibrarian</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Wish I hadn't googled vajazzled. <span><a class="date" target="_blank" href="http://twitter.com/BhamLibrarian/status/16865040426602496"><small>14:38:33</small></a></span></div>
<div class="a0 user_rec53"><img src="http://a1.twimg.com/a/1292531900/images/default_profile_1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/rec53" class="user">rec53</a> THINK OF THE CHILDREN! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/rec53/status/16865046936158208"><small>14:38:35</small></a></span></div>
<div class="a1 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> - Jack really Madoff wif da goods. <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16865063184891904"><small>14:38:39</small></a></span></div>
<div class="a0 user_mattbuck_hack"><img src="http://a0.twimg.com/profile_images/421989800/Ha_cartoons_WEB_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/mattbuck_hack" class="user">mattbuck_hack</a> RT <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> : The Chicken: Get me to a vet, Gideon. This isn't bleeding natural. It is however, bleeding <span><a class="date" target="_blank" href="http://twitter.com/mattbuck_hack/status/16865066234150912"><small>14:38:39</small></a></span></div>
<div class="a1 user_Joyouscomms"><img src="http://a2.twimg.com/profile_images/1194107326/image_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Joyouscomms" class="user">Joyouscomms</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/pdavenne">@pdavenne</a>: Giants are all freelance, as is well known <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Joyouscomms/status/16865141924564992"><small>14:38:57</small></a></span></div>
<div class="a0 user_bigheadzach"><img src="http://a1.twimg.com/profile_images/1164495905/grumpyborockbowl_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bigheadzach" class="user">bigheadzach</a> Giant should incorporate; taxes for self-employment suck bigtime. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bigheadzach/status/16865240260018176"><small>14:39:21</small></a></span></div>
<div class="a1 user_2aback2"><img src="http://a1.twimg.com/profile_images/1194807784/ffd588bd-09eb-4174-a43f-24ae93028057_normal.png" width="32"> <a target="_blank" href="http://twitter.com/2aback2" class="user">2aback2</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/joannageary">@joannageary</a> lol @ <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> ! <span><a class="date" target="_blank" href="http://twitter.com/2aback2/status/16865298967691264"><small>14:39:35</small></a></span></div>
<div class="a0 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/BhamLibrarian">@BhamLibrarian</a> christ, me neither :( <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16865320413175808"><small>14:39:40</small></a></span></div>
<div class="a1 user_Joyouscomms"><img src="http://a2.twimg.com/profile_images/1194107326/image_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Joyouscomms" class="user">Joyouscomms</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/bigheadzach">@bigheadzach</a>: Giant should incorporate; taxes for self-employment suck bigtime. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Joyouscomms/status/16865404357976064"><small>14:40:00</small></a></span></div>
<div class="a0 user_pdavenne"><img src="http://a3.twimg.com/profile_images/1179873595/pat_pite_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pdavenne" class="user">pdavenne</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/bigheadzach">@bigheadzach</a> tell that to Spanish giants, here taxes are awful <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/pdavenne/status/16865440521265152"><small>14:40:09</small></a></span></div>
<div class="a1 user_bigheadzach"><img src="http://a1.twimg.com/profile_images/1164495905/grumpyborockbowl_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bigheadzach" class="user">bigheadzach</a> NOTE: Inhaling Bob Marley's ghost will not get you high. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bigheadzach/status/16865467545157632"><small>14:40:15</small></a></span></div>
<div class="a0 user_EvaPalazzetti"><img src="http://a3.twimg.com/profile_images/1152122891/Small_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EvaPalazzetti" class="user">EvaPalazzetti</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/bigheadzach">@bigheadzach</a>: NOTE: Inhaling Bob Marley's ghost will not get you high. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/EvaPalazzetti/status/16865505163874305"><small>14:40:24</small></a></span></div>
<div class="a1 user_EnglishFolkfan"><img src="http://a1.twimg.com/profile_images/780918181/use_for_my_new_twit_pic_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EnglishFolkfan" class="user">EnglishFolkfan</a> Having a Stage Ball at the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> join Jack & Co in here: <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/EnglishFolkfan/status/16865573136769024"><small>14:40:40</small></a></span></div>
<div class="a0 user_Katkin5"><img src="http://a3.twimg.com/profile_images/1044760731/Katkin_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Katkin5" class="user">Katkin5</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/bigheadzach">@bigheadzach</a>: NOTE: Inhaling Bob Marley's ghost will not get you high. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Katkin5/status/16865618342977536"><small>14:40:51</small></a></span></div>
<div class="a1 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> badumtish! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16865644968419328"><small>14:40:57</small></a></span></div>
<div class="a0 user_amandagolding"><img src="http://a1.twimg.com/profile_images/1181680789/Eric_normal.png" width="32"> <a target="_blank" href="http://twitter.com/amandagolding" class="user">amandagolding</a> This is well worth a look: <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> << a panto on twitter :0) <span><a class="date" target="_blank" href="http://twitter.com/amandagolding/status/16865665763778560"><small>14:41:02</small></a></span></div>
<div class="a1 user_pdavenne"><img src="http://a3.twimg.com/profile_images/1179873595/pat_pite_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pdavenne" class="user">pdavenne</a> Where's the harp now, pray say? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/pdavenne/status/16865671946178561"><small>14:41:04</small></a></span></div>
<div class="a0 user_2aback2"><img src="http://a1.twimg.com/profile_images/1194807784/ffd588bd-09eb-4174-a43f-24ae93028057_normal.png" width="32"> <a target="_blank" href="http://twitter.com/2aback2" class="user">2aback2</a> RT via <a target="_blank" title="Opens in new window" href="http://twitter.com/Joyouscomms">@Joyouscomms</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/pdavenne">@pdavenne</a> Giants are all freelance, as is well known <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/2aback2/status/16865715483054081"><small>14:41:14</small></a></span></div>
<div class="a1 user_rec53"><img src="http://a1.twimg.com/a/1292531900/images/default_profile_1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/rec53" class="user">rec53</a> Booo, hissss, <a target="_blank" title="Opens in new window" href="http://twitter.com/ChrisUnitt">@ChrisUnitt</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/rec53/status/16865771699310593"><small>14:41:27</small></a></span></div>
<div class="a0 user_2aback2"><img src="http://a1.twimg.com/profile_images/1194807784/ffd588bd-09eb-4174-a43f-24ae93028057_normal.png" width="32"> <a target="_blank" href="http://twitter.com/2aback2" class="user">2aback2</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/Joyouscomms">@Joyouscomms</a>: Loving <a target="_blank" title="Opens in new window" href="http://twitter.com/Karmadillo">@Karmadillo</a> & <a target="_blank" title="Opens in new window" href="http://twitter.com/Daneed4">@Daneed4</a> as Romeo & Juliette <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> actual LOL <span><a class="date" target="_blank" href="http://twitter.com/2aback2/status/16865786400346112"><small>14:41:31</small></a></span></div>
<div class="a1 user_Katkin5"><img src="http://a3.twimg.com/profile_images/1044760731/Katkin_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Katkin5" class="user">Katkin5</a> Boooo Sgt. Wagner, take that kettle off! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Katkin5/status/16865852829728769"><small>14:41:47</small></a></span></div>
<div class="a0 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> fascist (SgtWagner) <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16865872509407232"><small>14:41:52</small></a></span></div>
<div class="a1 user_EvaPalazzetti"><img src="http://a3.twimg.com/profile_images/1152122891/Small_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EvaPalazzetti" class="user">EvaPalazzetti</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/benjiw">@benjiw</a>: Nadine: Ohh I love a Royal Wedding. And I could do with some new crockery. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/EvaPalazzetti/status/16865909448638464"><small>14:42:00</small></a></span></div>
<div class="a0 user_pezholio"><img src="http://a1.twimg.com/profile_images/1165403341/8dd6465c-e9ca-4f38-be7b-fcfa42e805d2_normal.png" width="32"> <a target="_blank" href="http://twitter.com/pezholio" class="user">pezholio</a> Why isn't <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> trending? It's a conspiracy I tell you! <span><a class="date" target="_blank" href="http://twitter.com/pezholio/status/16865938531946496"><small>14:42:07</small></a></span></div>
<div class="a1 user_thebeardyman"><img src="http://a1.twimg.com/profile_images/1164326505/35e4690f-4961-4d6e-9471-abb2c488be50_normal.png" width="32"> <a target="_blank" href="http://twitter.com/thebeardyman" class="user">thebeardyman</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/Katkin5">@Katkin5</a>: Boooo Sgt. Wagner, take that kettle off! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/thebeardyman/status/16866015518400513"><small>14:42:26</small></a></span></div>
<div class="a0 user_parboo"><img src="http://a3.twimg.com/profile_images/1188793063/786b29fc-6e32-4664-99be-246cc846f193_normal.png" width="32"> <a target="_blank" href="http://twitter.com/parboo" class="user">parboo</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/chrisunitt">@chrisunitt</a> - Boo Hiss, down with Sgt Wagner. <span><a class="date" target="_blank" href="http://twitter.com/parboo/status/16866030408171521"><small>14:42:29</small></a></span></div>
<div class="a1 user_bigheadzach"><img src="http://a1.twimg.com/profile_images/1164495905/grumpyborockbowl_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bigheadzach" class="user">bigheadzach</a> If the princess has neon hair and uses subspace to travel, I'm throwing a flag. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bigheadzach/status/16866124700319744"><small>14:42:52</small></a></span></div>
<div class="a0 user_iskandarv"><img src="http://a1.twimg.com/profile_images/472303929/twitterProfilePhoto_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/iskandarv" class="user">iskandarv</a> Hang on, what's happened to the students? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/iskandarv/status/16866127636340736"><small>14:42:52</small></a></span></div>
<div class="a1 user_pdavenne"><img src="http://a3.twimg.com/profile_images/1179873595/pat_pite_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pdavenne" class="user">pdavenne</a> Slay the girl and lay the giant, laddie, don't fall again in the trap of marriage <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/pdavenne/status/16866130173890560"><small>14:42:53</small></a></span></div>
<div class="a0 user_garethhector"><img src="http://a0.twimg.com/profile_images/929827860/GH_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/garethhector" class="user">garethhector</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Maybe it the extension that's causing the problems? <span><a class="date" target="_blank" href="http://twitter.com/garethhector/status/16866216186486784"><small>14:43:13</small></a></span></div>
<div class="a1 user_lumilyon"><img src="http://a1.twimg.com/profile_images/1174155069/UNEXPECTED_ICON_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/lumilyon" class="user">lumilyon</a> He'll be ok, The ConDems support higher-earners! RT <a target="_blank" title="Opens in new window" href="http://twitter.com/bigheadzach">@bigheadzach</a>: Giant should... taxes for self-employment suck bigtime. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/lumilyon/status/16866252190392320"><small>14:43:22</small></a></span></div>
<div class="a0 user_Katkin5"><img src="http://a3.twimg.com/profile_images/1044760731/Katkin_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Katkin5" class="user">Katkin5</a> Hahaaaaa, Foursquare entraps another victim! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Katkin5/status/16866367521161216"><small>14:43:50</small></a></span></div>
<div class="a1 user_garethhector"><img src="http://a0.twimg.com/profile_images/929827860/GH_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/garethhector" class="user">garethhector</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Cue theme from Shaft. <span><a class="date" target="_blank" href="http://twitter.com/garethhector/status/16866378380222464"><small>14:43:52</small></a></span></div>
<div class="a0 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>. lol! I knew geolocation was a risky business. <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16866388035502082"><small>14:43:54</small></a></span></div>
<div class="a1 user_amandagolding"><img src="http://a1.twimg.com/profile_images/1181680789/Eric_normal.png" width="32"> <a target="_blank" href="http://twitter.com/amandagolding" class="user">amandagolding</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/cataspanglish">@cataspanglish</a>: The Giant: Fee Fi Fo Fum, I see the checkin of a Foursquarian <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/amandagolding/status/16866391596466176"><small>14:43:55</small></a></span></div>
<div class="a0 user__RebeccaParker_"><img src="http://a0.twimg.com/profile_images/1172907142/5021058379_cdb7344e63_webb_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/_RebeccaParker_" class="user">_RebeccaParker_</a> He's behind you!! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/_RebeccaParker_/status/16866410248544256"><small>14:44:00</small></a></span></div>
<div class="a1 user_EnglishFolkfan"><img src="http://a1.twimg.com/profile_images/780918181/use_for_my_new_twit_pic_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EnglishFolkfan" class="user">EnglishFolkfan</a> ♩♫ ♪ ♫ ♪ ♫ ✽ * ❄ ✽ * ❄* ❄ ✽ * ❄* ✽ ❄ ✽ ❄ ✽ * ❄ * ❄ ✽ * ❄* ✽ ❄ ✽ * ❄♩♫ ♪ ♫ ♪ ♫ <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/EnglishFolkfan/status/16866504989478913"><small>14:44:22</small></a></span></div>
<div class="a0 user_garethhector"><img src="http://a0.twimg.com/profile_images/929827860/GH_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/garethhector" class="user">garethhector</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> He's behind, slightly to left and considerably, above you! <span><a class="date" target="_blank" href="http://twitter.com/garethhector/status/16866509846487040"><small>14:44:23</small></a></span></div>
<div class="a1 user_bigheadzach"><img src="http://a1.twimg.com/profile_images/1164495905/grumpyborockbowl_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bigheadzach" class="user">bigheadzach</a> Jack should punch some trees to get his axe. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23minecraft">#minecraft</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bigheadzach/status/16866512925106176"><small>14:44:24</small></a></span></div>
<div class="a0 user_pdavenne"><img src="http://a3.twimg.com/profile_images/1179873595/pat_pite_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pdavenne" class="user">pdavenne</a> There, geolocaters -> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/cataspanglish">@cataspanglish</a>: The Giant: Fee Fi Fo Fum, I smell the lack of good roles for giants, and it hurts. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/pdavenne/status/16866521846382592"><small>14:44:26</small></a></span></div>
<div class="a1 user_rjoli"><img src="http://a1.twimg.com/a/1292628660/images/default_profile_5_normal.png" width="32"> <a target="_blank" href="http://twitter.com/rjoli" class="user">rjoli</a> Oh no they didn't <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/rjoli/status/16866546949292033"><small>14:44:32</small></a></span></div>
<div class="a0 user_jemimah_knight"><img src="http://a2.twimg.com/profile_images/602892821/jk_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jemimah_knight" class="user">jemimah_knight</a> RT@probablydrunk I just ousted Gideon G. as the mayor of The Giant's Castle <a target="_blank" title="Opens in new window" href="http://foursquare.com/venue/14365301">http://foursquare.com/venue/14365301</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jemimah_knight/status/16866569837613056"><small>14:44:38</small></a></span></div>
<div class="a1 user_rec53"><img src="http://a1.twimg.com/a/1292531900/images/default_profile_1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/rec53" class="user">rec53</a> The biased media is yet again ignoring the highly active <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> protest to focus on a feelgood story <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/rec53/status/16866573453107200"><small>14:44:39</small></a></span></div>
<div class="a0 user_thebeardyman"><img src="http://a1.twimg.com/profile_images/1164326505/35e4690f-4961-4d6e-9471-abb2c488be50_normal.png" width="32"> <a target="_blank" href="http://twitter.com/thebeardyman" class="user">thebeardyman</a> Jack, this is no time for USAian bad deodourant <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/thebeardyman/status/16866583926284288"><small>14:44:41</small></a></span></div>
<div class="a1 user_parboo"><img src="http://a3.twimg.com/profile_images/1188793063/786b29fc-6e32-4664-99be-246cc846f193_normal.png" width="32"> <a target="_blank" href="http://twitter.com/parboo" class="user">parboo</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> He's behind you... <span><a class="date" target="_blank" href="http://twitter.com/parboo/status/16866609893212161"><small>14:44:47</small></a></span></div>
<div class="a0 user_iskandarv"><img src="http://a1.twimg.com/profile_images/472303929/twitterProfilePhoto_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/iskandarv" class="user">iskandarv</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/rec53">@rec53</a>: The biased media is yet again ignoring the highly active <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> protest to focus on a feelgood story <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/iskandarv/status/16866683725553665"><small>14:45:05</small></a></span></div>
<div class="a1 user_daniel_julia"><img src="http://a1.twimg.com/profile_images/1035589787/dani_basilio_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/daniel_julia" class="user">daniel_julia</a> let it snow !! ♩♫ ♪ ♫ ♪ ♫ ✽ * ❄ ✽ * ❄* ❄ ✽ * ❄* ✽ ❄ ✽ ❄ ✽ * ❄ * ❄ ✽ * ❄* ✽ ❄ ✽ * ❄♩♫ ♪ ♫ ♪ ♫ <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/daniel_julia/status/16866712901124096"><small>14:45:12</small></a></span></div>
<div class="a0 user_parboo"><img src="http://a3.twimg.com/profile_images/1188793063/786b29fc-6e32-4664-99be-246cc846f193_normal.png" width="32"> <a target="_blank" href="http://twitter.com/parboo" class="user">parboo</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> No ifs, no buts. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> <span><a class="date" target="_blank" href="http://twitter.com/parboo/status/16866720115331072"><small>14:45:14</small></a></span></div>
<div class="a1 user_carbontwelve"><img src="http://a3.twimg.com/profile_images/203006183/forddeckard_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/carbontwelve" class="user">carbontwelve</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/pezholio">@pezholio</a> not enough diversity amongst those tweeting <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> ? <span><a class="date" target="_blank" href="http://twitter.com/carbontwelve/status/16866788952248321"><small>14:45:30</small></a></span></div>
<div class="a0 user_jarrodwilliams"><img src="http://a3.twimg.com/profile_images/1181954827/IMG_2410_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jarrodwilliams" class="user">jarrodwilliams</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/rec53">@rec53</a>: The biased media is yet again ignoring the highly active <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> protest to focus on a feelgood story <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jarrodwilliams/status/16866797441519616"><small>14:45:32</small></a></span></div>
<div class="a1 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> *watches from behind hands .... noooo* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16866825178447872"><small>14:45:39</small></a></span></div>
<div class="a0 user_iskandarv"><img src="http://a1.twimg.com/profile_images/472303929/twitterProfilePhoto_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/iskandarv" class="user">iskandarv</a> Stop the cuts! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/iskandarv/status/16866827581784065"><small>14:45:39</small></a></span></div>
<div class="a1 user_lumilyon"><img src="http://a1.twimg.com/profile_images/1174155069/UNEXPECTED_ICON_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/lumilyon" class="user">lumilyon</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/cybrum">@cybrum</a>: Stop the cuts! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/lumilyon/status/16866839413919744"><small>14:45:42</small></a></span></div>
<div class="a0 user_falsedog"><img src="http://a3.twimg.com/profile_images/789016863/false_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/falsedog" class="user">falsedog</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> More cuts! <span><a class="date" target="_blank" href="http://twitter.com/falsedog/status/16866846430986240"><small>14:45:44</small></a></span></div>
<div class="a1 user_EvaPalazzetti"><img src="http://a3.twimg.com/profile_images/1152122891/Small_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EvaPalazzetti" class="user">EvaPalazzetti</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/parboo">@parboo</a>: <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> No ifs, no buts. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> <span><a class="date" target="_blank" href="http://twitter.com/EvaPalazzetti/status/16866848914014208"><small>14:45:44</small></a></span></div>
<div class="a0 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> - "Don't Cut, Don't Fell" <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16866902101991424"><small>14:45:57</small></a></span></div>
<div class="a1 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> cut cut cut.... off with the councils head (how did Mike Whitby get in this scene?) <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16866907139346432"><small>14:45:58</small></a></span></div>
<div class="a0 user_lumilyon"><img src="http://a1.twimg.com/profile_images/1174155069/UNEXPECTED_ICON_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/lumilyon" class="user">lumilyon</a> Stop the cuts! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/lumilyon/status/16866942740598785"><small>14:46:07</small></a></span></div>
<div class="a1 user_thebeardyman"><img src="http://a1.twimg.com/profile_images/1164326505/35e4690f-4961-4d6e-9471-abb2c488be50_normal.png" width="32"> <a target="_blank" href="http://twitter.com/thebeardyman" class="user">thebeardyman</a> This cut is probably for the best (but <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23solidarity">#solidarity</a> with <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a>) <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/thebeardyman/status/16866943575261184"><small>14:46:07</small></a></span></div>
<div class="a0 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/rec53">@rec53</a>: The biased media is yet again ignoring the highly active <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> protest to focus on a feelgood story <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16866949069803520"><small>14:46:08</small></a></span></div>
<div class="a1 user_bigheadzach"><img src="http://a1.twimg.com/profile_images/1164495905/grumpyborockbowl_normal.png" width="32"> <a target="_blank" href="http://twitter.com/bigheadzach" class="user">bigheadzach</a> Remember, the Giant takes 1d8 falling damage for every 10' between him and the ground. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/bigheadzach/status/16866970615939072"><small>14:46:13</small></a></span></div>
<div class="a0 user_2aback2"><img src="http://a1.twimg.com/profile_images/1194807784/ffd588bd-09eb-4174-a43f-24ae93028057_normal.png" width="32"> <a target="_blank" href="http://twitter.com/2aback2" class="user">2aback2</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/Katkin5">@Katkin5</a>: "No woman, no pie'... who'd a thunk it?! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/2aback2/status/16867101432090624"><small>14:46:45</small></a></span></div>
<div class="a1 user_2aback2"><img src="http://a1.twimg.com/profile_images/1194807784/ffd588bd-09eb-4174-a43f-24ae93028057_normal.png" width="32"> <a target="_blank" href="http://twitter.com/2aback2" class="user">2aback2</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/_RebeccaParker_">@_RebeccaParker_</a>: Yesss get vajazzled!! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/2aback2/status/16867166074703872"><small>14:47:00</small></a></span></div>
<div class="a0 user_HollyCParkerx"><img src="http://a0.twimg.com/profile_images/1140045363/profile_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/HollyCParkerx" class="user">HollyCParkerx</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/cybrum">@cybrum</a>: RT: Stop the cuts! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/HollyCParkerx/status/16867227651280896"><small>14:47:15</small></a></span></div>
<div class="a1 user_DaxLeeWood"><img src="http://a2.twimg.com/profile_images/1176724930/fc28cf5e-a525-40b5-ae48-f293c93fb182_normal.png" width="32"> <a target="_blank" href="http://twitter.com/DaxLeeWood" class="user">DaxLeeWood</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/rec53">@rec53</a>: The biased media is yet again ignoring the highly active <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> protest to focus on a feelgood story <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/DaxLeeWood/status/16867296047792128"><small>14:47:31</small></a></span></div>
<div class="a0 user_AnnaAtTheAmbler"><img src="http://a1.twimg.com/profile_images/384190487/anna_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/AnnaAtTheAmbler" class="user">AnnaAtTheAmbler</a> Get on with it <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/AnnaAtTheAmbler/status/16867304398659584"><small>14:47:33</small></a></span></div>
<div class="a1 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a>: The Pantoland Daily is out! <a target="_blank" title="Opens in new window" href="http://upthear.se/1qm">http://upthear.se/1qm</a> ▸ Top stories today by <a target="_blank" title="Opens in new window" href="http://twitter.com/oldmotherhubbard">@oldmotherhubbard</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/pussinboots">@pussinboots</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/aladdin">@aladdin</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16867305837297664"><small>14:47:33</small></a></span></div>
<div class="a0 user_chrispinchen"><img src="http://a3.twimg.com/profile_images/460067351/ChrisPinchen_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/chrispinchen" class="user">chrispinchen</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/AndeGregson">@AndeGregson</a>: and the proceeds to local charity too :) <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23media140cava">#media140cava</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/chrispinchen/status/16867360786882560"><small>14:47:46</small></a></span></div>
<div class="a1 user_EnglishFolkfan"><img src="http://a1.twimg.com/profile_images/780918181/use_for_my_new_twit_pic_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EnglishFolkfan" class="user">EnglishFolkfan</a> encore * applause* * applause* * applause* * applause* * applause* * applause* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> <span><a class="date" target="_blank" href="http://twitter.com/EnglishFolkfan/status/16867365614526464"><small>14:47:48</small></a></span></div>
<div class="a0 user_lumilyon"><img src="http://a1.twimg.com/profile_images/1174155069/UNEXPECTED_ICON_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/lumilyon" class="user">lumilyon</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/rec53">@rec53</a>: The biased media is yet again ignoring the highly active <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> protest to focus on a feelgood story <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/lumilyon/status/16867368655396864"><small>14:47:48</small></a></span></div>
<div class="a1 user_falsedog"><img src="http://a3.twimg.com/profile_images/789016863/false_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/falsedog" class="user">falsedog</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Phew <span><a class="date" target="_blank" href="http://twitter.com/falsedog/status/16867388683190272"><small>14:47:53</small></a></span></div>
<div class="a0 user_pdavenne"><img src="http://a3.twimg.com/profile_images/1179873595/pat_pite_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pdavenne" class="user">pdavenne</a> * applause** applause** applause** applause** applause** applause** applause** applause** applause** applause** applause*<a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/pdavenne/status/16867501602246656"><small>14:48:20</small></a></span></div>
<div class="a1 user_saskarmadillo"><img src="http://a0.twimg.com/profile_images/1194842459/photo_2_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/saskarmadillo" class="user">saskarmadillo</a> awwww :D <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> *wipes tear* <span><a class="date" target="_blank" href="http://twitter.com/saskarmadillo/status/16867502646632449"><small>14:48:20</small></a></span></div>
<div class="a0 user_Katkin5"><img src="http://a3.twimg.com/profile_images/1044760731/Katkin_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Katkin5" class="user">Katkin5</a> "tool' fnar, fnar! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Katkin5/status/16867512637456386"><small>14:48:23</small></a></span></div>
<div class="a1 user_kazthomas"><img src="http://a3.twimg.com/profile_images/1194789967/f839dde9-a317-4454-b86b-b9c536a54b71_normal.png" width="32"> <a target="_blank" href="http://twitter.com/kazthomas" class="user">kazthomas</a> *Yay* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23Twitpanto">#Twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/kazthomas/status/16867523026747394"><small>14:48:25</small></a></span></div>
<div class="a0 user_thebeardyman"><img src="http://a1.twimg.com/profile_images/1164326505/35e4690f-4961-4d6e-9471-abb2c488be50_normal.png" width="32"> <a target="_blank" href="http://twitter.com/thebeardyman" class="user">thebeardyman</a> *awwwwww* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/thebeardyman/status/16867548666535937"><small>14:48:31</small></a></span></div>
<div class="a1 user_jarrodwilliams"><img src="http://a3.twimg.com/profile_images/1181954827/IMG_2410_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jarrodwilliams" class="user">jarrodwilliams</a> Touch and go there....
<a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jarrodwilliams/status/16867557650735104"><small>14:48:33</small></a></span></div>
<div class="a0 user_saskarmadillo"><img src="http://a0.twimg.com/profile_images/1194842459/photo_2_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/saskarmadillo" class="user">saskarmadillo</a> *clap clap hoorah more more!!* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/saskarmadillo/status/16867593205846016"><small>14:48:42</small></a></span></div>
<div class="a1 user_MariaBarrett"><img src="http://a0.twimg.com/profile_images/1168882452/7ab32fdd-c485-4d04-ac05-a1e8baa8cb4b_normal.png" width="32"> <a target="_blank" href="http://twitter.com/MariaBarrett" class="user">MariaBarrett</a> Looks like this year's <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> is going well, topical as ever - <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> <span><a class="date" target="_blank" href="http://twitter.com/MariaBarrett/status/16867604962476032"><small>14:48:45</small></a></span></div>
<div class="a0 user_sheilaellen"><img src="http://a1.twimg.com/profile_images/627161837/Flowers__160x160__normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/sheilaellen" class="user">sheilaellen</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/bigheadzach">@bigheadzach</a>: Remember, the Giant takes 1d8 falling damage for every 10' between him and the ground. <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/sheilaellen/status/16867640844754944"><small>14:48:53</small></a></span></div>
<div class="a1 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> hehehe <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16867646393810944"><small>14:48:54</small></a></span></div>
<div class="a0 user_rec53"><img src="http://a1.twimg.com/a/1292531900/images/default_profile_1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/rec53" class="user">rec53</a> *applause* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/rec53/status/16867658196582400"><small>14:48:57</small></a></span></div>
<div class="a1 user_garethhector"><img src="http://a0.twimg.com/profile_images/929827860/GH_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/garethhector" class="user">garethhector</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Hurrah! Jack's getting laid! <span><a class="date" target="_blank" href="http://twitter.com/garethhector/status/16867662239891456"><small>14:48:58</small></a></span></div>
<div class="a0 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> *tears up* stands up* starts a slow clap* <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16867679851773953"><small>14:49:02</small></a></span></div>
<div class="a1 user_Katkin5"><img src="http://a3.twimg.com/profile_images/1044760731/Katkin_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Katkin5" class="user">Katkin5</a> Stop it or you'll GET the clap! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Katkin5/status/16867698357047299"><small>14:49:07</small></a></span></div>
<div class="a0 user_ainhoaeus"><img src="http://a3.twimg.com/profile_images/1194766208/d481fe6c-0f91-458b-b5ac-683a4c926aa9_normal.png" width="32"> <a target="_blank" href="http://twitter.com/ainhoaeus" class="user">ainhoaeus</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/saskarmadillo">@saskarmadillo</a>: *clap clap hoorah more more!!* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/ainhoaeus/status/16867704623341568"><small>14:49:08</small></a></span></div>
<div class="a1 user_parboo"><img src="http://a3.twimg.com/profile_images/1188793063/786b29fc-6e32-4664-99be-246cc846f193_normal.png" width="32"> <a target="_blank" href="http://twitter.com/parboo" class="user">parboo</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> hurrah, hurrah more more where's the feel good song gone? <span><a class="date" target="_blank" href="http://twitter.com/parboo/status/16867705667715073"><small>14:49:09</small></a></span></div>
<div class="a0 user_nicferrier"><img src="http://a3.twimg.com/profile_images/1187555107/2010-12-10-231602_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/nicferrier" class="user">nicferrier</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> applause, throwing popcorn, etc.. <span><a class="date" target="_blank" href="http://twitter.com/nicferrier/status/16867711820759040"><small>14:49:10</small></a></span></div>
<div class="a1 user_amandagolding"><img src="http://a1.twimg.com/profile_images/1181680789/Eric_normal.png" width="32"> <a target="_blank" href="http://twitter.com/amandagolding" class="user">amandagolding</a> *claps hands* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/amandagolding/status/16867729201963009"><small>14:49:14</small></a></span></div>
<div class="a0 user_jarrodwilliams"><img src="http://a3.twimg.com/profile_images/1181954827/IMG_2410_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jarrodwilliams" class="user">jarrodwilliams</a> cheeerrrrrr applause huzzzzaaahhhhhh <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jarrodwilliams/status/16867733605974016"><small>14:49:15</small></a></span></div>
<div class="a1 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> will I be able to get back to fixing my car battery soon?- its getting dark outside now <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16867747908558848"><small>14:49:19</small></a></span></div>
<div class="a0 user_thebeardyman"><img src="http://a1.twimg.com/profile_images/1164326505/35e4690f-4961-4d6e-9471-abb2c488be50_normal.png" width="32"> <a target="_blank" href="http://twitter.com/thebeardyman" class="user">thebeardyman</a> Lets hack the Great Firewall of Pantoland <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/thebeardyman/status/16867820092530689"><small>14:49:36</small></a></span></div>
<div class="a1 user_EnglishFolkfan"><img src="http://a1.twimg.com/profile_images/780918181/use_for_my_new_twit_pic_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EnglishFolkfan" class="user">EnglishFolkfan</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> wins the day! the rest will have to put up with a commoner becomes princess next year ~ booo hisss <span><a class="date" target="_blank" href="http://twitter.com/EnglishFolkfan/status/16867845581307905"><small>14:49:42</small></a></span></div>
<div class="a0 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> hooray!!! <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16867849268109312"><small>14:49:43</small></a></span></div>
<div class="a1 user_pdavenne"><img src="http://a3.twimg.com/profile_images/1179873595/pat_pite_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pdavenne" class="user">pdavenne</a> * applause** applause*<a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/pdavenne/status/16867852686467072"><small>14:49:44</small></a></span></div>
<div class="a0 user_ATTA_grrl"><img src="http://a1.twimg.com/profile_images/626418581/ATTA_LOGO_girlsmall_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/ATTA_grrl" class="user">ATTA_grrl</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/Katkin5">@Katkin5</a>: Stop it or you'll GET the clap! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/ATTA_grrl/status/16867859560927232"><small>14:49:45</small></a></span></div>
<div class="a1 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> *bravo* do we have to register to see the uncensored ending? <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16867872970121216"><small>14:49:48</small></a></span></div>
<div class="a0 user_thebeardyman"><img src="http://a1.twimg.com/profile_images/1164326505/35e4690f-4961-4d6e-9471-abb2c488be50_normal.png" width="32"> <a target="_blank" href="http://twitter.com/thebeardyman" class="user">thebeardyman</a> *applause* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/thebeardyman/status/16867889411784706"><small>14:49:52</small></a></span></div>
<div class="a1 user_journotutor"><img src="http://a2.twimg.com/profile_images/541484238/marie_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/journotutor" class="user">journotutor</a> *claps wildly* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/journotutor/status/16867902535766016"><small>14:49:56</small></a></span></div>
<div class="a0 user_FrozenGlitter"><img src="http://a1.twimg.com/profile_images/1149275744/head1_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/FrozenGlitter" class="user">FrozenGlitter</a> *standing ovation* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/FrozenGlitter/status/16867906348392449"><small>14:49:56</small></a></span></div>
<div class="a1 user_alexhughes"><img src="http://a2.twimg.com/profile_images/586984002/Alex_Hughes_normal.gif" width="32"> <a target="_blank" href="http://twitter.com/alexhughes" class="user">alexhughes</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> woo! *clap!* *clap!* *clap!* *clap!* *clap!* <span><a class="date" target="_blank" href="http://twitter.com/alexhughes/status/16867906033811456"><small>14:49:56</small></a></span></div>
<div class="a0 user_EvaPalazzetti"><img src="http://a3.twimg.com/profile_images/1152122891/Small_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EvaPalazzetti" class="user">EvaPalazzetti</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/rec53">@rec53</a>: The biased media is yet again ignoring the highly active <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> protest to focus on a feelgood story <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/EvaPalazzetti/status/16867913134768128"><small>14:49:58</small></a></span></div>
<div class="a1 user_James_Rock"><img src="http://a3.twimg.com/profile_images/802569595/JAMES_PROFILE_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/James_Rock" class="user">James_Rock</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> more... more.... encore please!!!! <span><a class="date" target="_blank" href="http://twitter.com/James_Rock/status/16867915450028032"><small>14:49:59</small></a></span></div>
<div class="a0 user_2aback2"><img src="http://a1.twimg.com/profile_images/1194807784/ffd588bd-09eb-4174-a43f-24ae93028057_normal.png" width="32"> <a target="_blank" href="http://twitter.com/2aback2" class="user">2aback2</a> hahah RT via <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a> This ending has been blocked by edvaizey as it may contain adult scenes. Get your hands out of your pants <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/2aback2/status/16867919002599424"><small>14:49:59</small></a></span></div>
<div class="a1 user__RebeccaParker_"><img src="http://a0.twimg.com/profile_images/1172907142/5021058379_cdb7344e63_webb_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/_RebeccaParker_" class="user">_RebeccaParker_</a> Clap clap clappety clap clap clap :D <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/_RebeccaParker_/status/16867930499194880"><small>14:50:02</small></a></span></div>
<div class="a0 user_HollyCParkerx"><img src="http://a0.twimg.com/profile_images/1140045363/profile_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/HollyCParkerx" class="user">HollyCParkerx</a> Wahey for <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/HollyCParkerx/status/16867931925258240"><small>14:50:03</small></a></span></div>
<div class="a1 user_jemimah_knight"><img src="http://a2.twimg.com/profile_images/602892821/jk_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jemimah_knight" class="user">jemimah_knight</a> Yay! Applause - standing ovations - whistling - <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jemimah_knight/status/16867935255527425"><small>14:50:03</small></a></span></div>
<div class="a0 user_EvaPalazzetti"><img src="http://a3.twimg.com/profile_images/1152122891/Small_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EvaPalazzetti" class="user">EvaPalazzetti</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/FrozenGlitter">@FrozenGlitter</a>: *standing ovation* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/EvaPalazzetti/status/16867939143651329"><small>14:50:04</small></a></span></div>
<div class="a1 user_nicferrier"><img src="http://a3.twimg.com/profile_images/1187555107/2010-12-10-231602_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/nicferrier" class="user">nicferrier</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> clapping. the annoying clapping bit where you wish you could stop clapping. <span><a class="date" target="_blank" href="http://twitter.com/nicferrier/status/16867953114877952"><small>14:50:08</small></a></span></div>
<div class="a0 user_parboo"><img src="http://a3.twimg.com/profile_images/1188793063/786b29fc-6e32-4664-99be-246cc846f193_normal.png" width="32"> <a target="_blank" href="http://twitter.com/parboo" class="user">parboo</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> I love a good encore - will the cast ALL SING? <span><a class="date" target="_blank" href="http://twitter.com/parboo/status/16867960870141952"><small>14:50:09</small></a></span></div>
<div class="a1 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> - *standing ovation for <a target="_blank" title="Opens in new window" href="http://twitter.com/Benjiw">@Benjiw</a>* <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16867967161606144"><small>14:50:11</small></a></span></div>
<div class="a0 user_tobynutter"><img src="http://a2.twimg.com/profile_images/1167631754/Photo_148_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/tobynutter" class="user">tobynutter</a> *applauds* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/tobynutter/status/16867974379999232"><small>14:50:13</small></a></span></div>
<div class="a1 user_iskandarv"><img src="http://a1.twimg.com/profile_images/472303929/twitterProfilePhoto_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/iskandarv" class="user">iskandarv</a> *applause* *applause* <encore!> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/iskandarv/status/16867988313473024"><small>14:50:16</small></a></span></div>
<div class="a0 user_AnnaAtTheAmbler"><img src="http://a1.twimg.com/profile_images/384190487/anna_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/AnnaAtTheAmbler" class="user">AnnaAtTheAmbler</a> hooray *claps appreciatively* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/AnnaAtTheAmbler/status/16867999147364352"><small>14:50:19</small></a></span></div>
<div class="a1 user_EnglishFolkfan"><img src="http://a1.twimg.com/profile_images/780918181/use_for_my_new_twit_pic_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EnglishFolkfan" class="user">EnglishFolkfan</a> encore encore encore encore* applause* * applause* * applause* * applause* * applause* * applause* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23pantouncut">#pantouncut</a> <span><a class="date" target="_blank" href="http://twitter.com/EnglishFolkfan/status/16868015249301504"><small>14:50:22</small></a></span></div>
<div class="a0 user_Katkin5"><img src="http://a3.twimg.com/profile_images/1044760731/Katkin_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Katkin5" class="user">Katkin5</a> *voracious clapping* Encore, Encore! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Katkin5/status/16868034538905600"><small>14:50:27</small></a></span></div>
<div class="a1 user_brumplum"><img src="http://a0.twimg.com/profile_images/1191995779/xmas2010_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/brumplum" class="user">brumplum</a> enjoying <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> (not really up for participating, regrettably) <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/brumplum/status/16868038041145344"><small>14:50:28</small></a></span></div>
<div class="a0 user_FrozenGlitter"><img src="http://a1.twimg.com/profile_images/1149275744/head1_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/FrozenGlitter" class="user">FrozenGlitter</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/Kfyra">@Kfyra</a>: <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> - *standing ovation for <a target="_blank" title="Opens in new window" href="http://twitter.com/Benjiw">@Benjiw</a>* <span><a class="date" target="_blank" href="http://twitter.com/FrozenGlitter/status/16868041178484736"><small>14:50:29</small></a></span></div>
<div class="a1 user_smithsam"><img src="http://a1.twimg.com/profile_images/1143732315/49139_61409894_6303_n_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/smithsam" class="user">smithsam</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> *applause* *heckle* *applause* <span><a class="date" target="_blank" href="http://twitter.com/smithsam/status/16868087533936640"><small>14:50:40</small></a></span></div>
<div class="a0 user_julesthejourno"><img src="http://a2.twimg.com/profile_images/1177562506/IMG_0204_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/julesthejourno" class="user">julesthejourno</a> Bravo <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/julesthejourno/status/16868090331537408"><small>14:50:40</small></a></span></div>
<div class="a1 user_peerlawther"><img src="http://a0.twimg.com/profile_images/1185024840/DSC01122_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/peerlawther" class="user">peerlawther</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> fantastic. Hurrah! *claps* (*too lazy to stand and clap* though) <span><a class="date" target="_blank" href="http://twitter.com/peerlawther/status/16868110116061184"><small>14:50:45</small></a></span></div>
<div class="a0 user_parboo"><img src="http://a3.twimg.com/profile_images/1188793063/786b29fc-6e32-4664-99be-246cc846f193_normal.png" width="32"> <a target="_blank" href="http://twitter.com/parboo" class="user">parboo</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> more clapping. *quietly pauses from clapping, knowing others will carry on* <span><a class="date" target="_blank" href="http://twitter.com/parboo/status/16868130559098880"><small>14:50:50</small></a></span></div>
<div class="a1 user_falsedog"><img src="http://a3.twimg.com/profile_images/789016863/false_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/falsedog" class="user">falsedog</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> I can't find my mitten <span><a class="date" target="_blank" href="http://twitter.com/falsedog/status/16868146287747072"><small>14:50:54</small></a></span></div>
<div class="a0 user_rec53"><img src="http://a1.twimg.com/a/1292531900/images/default_profile_1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/rec53" class="user">rec53</a> Boo at <a target="_blank" title="Opens in new window" href="http://twitter.com/edvaizey">@edvaizey</a> 's blocking of the <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> ending though. <span><a class="date" target="_blank" href="http://twitter.com/rec53/status/16868172481175552"><small>14:51:00</small></a></span></div>
<div class="a1 user_jarrodwilliams"><img src="http://a3.twimg.com/profile_images/1181954827/IMG_2410_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/jarrodwilliams" class="user">jarrodwilliams</a> DAISY DAISY DIASY <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/jarrodwilliams/status/16868175861776385"><small>14:51:01</small></a></span></div>
<div class="a0 user_amandagolding"><img src="http://a1.twimg.com/profile_images/1181680789/Eric_normal.png" width="32"> <a target="_blank" href="http://twitter.com/amandagolding" class="user">amandagolding</a> *standing ovation for <a target="_blank" title="Opens in new window" href="http://twitter.com/daneed4">@daneed4</a> and <a target="_blank" title="Opens in new window" href="http://twitter.com/karmadillo">@karmadillo</a>* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/amandagolding/status/16868220027797504"><small>14:51:11</small></a></span></div>
<div class="a1 user_Rebecca_Sloan"><img src="http://a2.twimg.com/profile_images/235035676/Pic_3_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Rebecca_Sloan" class="user">Rebecca_Sloan</a> Hurrah! Encore! Encore! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/Rebecca_Sloan/status/16868240244350976"><small>14:51:16</small></a></span></div>
<div class="a0 user__RebeccaParker_"><img src="http://a0.twimg.com/profile_images/1172907142/5021058379_cdb7344e63_webb_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/_RebeccaParker_" class="user">_RebeccaParker_</a> RT <a target="_blank" title="Opens in new window" href="http://twitter.com/probablydrunk">@probablydrunk</a>: *BOWS, CURTIES, AND DEMANDS FLOWERS AND HOOKERS* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/_RebeccaParker_/status/16868242068873216"><small>14:51:16</small></a></span></div>
<div class="a1 user_rec53"><img src="http://a1.twimg.com/a/1292531900/images/default_profile_1_normal.png" width="32"> <a target="_blank" href="http://twitter.com/rec53" class="user">rec53</a> Encore, encore <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/rec53/status/16868245185236992"><small>14:51:17</small></a></span></div>
<div class="a0 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> hands hurt from clapping *stops* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16868262943916032"><small>14:51:21</small></a></span></div>
<div class="a1 user_pdavenne"><img src="http://a3.twimg.com/profile_images/1179873595/pat_pite_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/pdavenne" class="user">pdavenne</a> Mooooooooo! * applause* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/pdavenne/status/16868268962750464"><small>14:51:23</small></a></span></div>
<div class="a0 user_robmacpherson"><img src="http://a2.twimg.com/profile_images/1170868594/Rob_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/robmacpherson" class="user">robmacpherson</a> just got to <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> and it's finished. I demand full refund. <span><a class="date" target="_blank" href="http://twitter.com/robmacpherson/status/16868316643590144"><small>14:51:34</small></a></span></div>
<div class="a1 user_timtfj"><img src="http://a0.twimg.com/profile_images/552226912/Twitter3_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/timtfj" class="user">timtfj</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/karmadillo">@karmadillo</a> Get it off! <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/timtfj/status/16868330564489216"><small>14:51:38</small></a></span></div>
<div class="a0 user_tenbus_uk"><img src="http://a3.twimg.com/profile_images/1137413683/f618154f-762e-4c87-a420-104ed8352b8b_normal.png" width="32"> <a target="_blank" href="http://twitter.com/tenbus_uk" class="user">tenbus_uk</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a> Wonderful <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> - I'm *meant* to be working from home today - <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23youarenothelping">#youarenothelping</a> <span><a class="date" target="_blank" href="http://twitter.com/tenbus_uk/status/16868335828336641"><small>14:51:39</small></a></span></div>
<div class="a1 user_garethhector"><img src="http://a0.twimg.com/profile_images/929827860/GH_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/garethhector" class="user">garethhector</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> Where was the Hoff and that camp dancer guy? Oh, wrong one.. <span><a class="date" target="_blank" href="http://twitter.com/garethhector/status/16868366371258368"><small>14:51:46</small></a></span></div>
<div class="a0 user_EvaPalazzetti"><img src="http://a3.twimg.com/profile_images/1152122891/Small_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EvaPalazzetti" class="user">EvaPalazzetti</a> Great <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23Twitpanto">#Twitpanto</a> everyone! *clapping* <span><a class="date" target="_blank" href="http://twitter.com/EvaPalazzetti/status/16868378467635201"><small>14:51:49</small></a></span></div>
<div class="a1 user_sheilaellen"><img src="http://a1.twimg.com/profile_images/627161837/Flowers__160x160__normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/sheilaellen" class="user">sheilaellen</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/twitpanto">@twitpanto</a> *applause* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/sheilaellen/status/16868425846493184"><small>14:52:00</small></a></span></div>
<div class="a0 user_EnglishFolkfan"><img src="http://a1.twimg.com/profile_images/780918181/use_for_my_new_twit_pic_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/EnglishFolkfan" class="user">EnglishFolkfan</a> Flings remaining sweeties in the general direction of the stage and heads off to the Bar <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/EnglishFolkfan/status/16868443219304449"><small>14:52:04</small></a></span></div>
<div class="a1 user_NaomiGreen"><img src="http://a1.twimg.com/profile_images/72492405/n508245602_1265266_1920_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/NaomiGreen" class="user">NaomiGreen</a> Whoooooo, Whooooo brilliant <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/NaomiGreen/status/16868501331378177"><small>14:52:18</small></a></span></div>
<div class="a0 user_peteashton"><img src="http://a0.twimg.com/profile_images/1194060384/Supersonic_-11___Flickr_-_Photo_Sharing_-1_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/peteashton" class="user">peteashton</a> Congrats to <a target="_blank" title="Opens in new window" href="http://twitter.com/bounder">@bounder</a> on another great <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a>. I had my doubts but it was marvelous. Relive it at <a target="_blank" title="Opens in new window" href="http://beanstalk.twitpanto.co.uk/">http://beanstalk.twitpanto.co.uk/</a> <span><a class="date" target="_blank" href="http://twitter.com/peteashton/status/16868505051729920"><small>14:52:19</small></a></span></div>
<div class="a1 user_Kfyra"><img src="http://a0.twimg.com/profile_images/1194203699/b01cd93a-f8a3-40ff-a87e-6b09755ec993_normal.png" width="32"> <a target="_blank" href="http://twitter.com/Kfyra" class="user">Kfyra</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://twitter.com/benjiw">@benjiw</a> *furious applause!* <span><a class="date" target="_blank" href="http://twitter.com/Kfyra/status/16868516581871617"><small>14:52:22</small></a></span></div>
<div class="a0 user_BhamLibrarian"><img src="http://a1.twimg.com/profile_images/1075774192/P1010015_normal.JPG" width="32"> <a target="_blank" href="http://twitter.com/BhamLibrarian" class="user">BhamLibrarian</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> hurrah! <span><a class="date" target="_blank" href="http://twitter.com/BhamLibrarian/status/16868582273060864"><small>14:52:38</small></a></span></div>
<div class="a1 user_Joyouscomms"><img src="http://a2.twimg.com/profile_images/1194107326/image_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/Joyouscomms" class="user">Joyouscomms</a> “<a target="_blank" title="Opens in new window" href="http://twitter.com/Joyouscomms">@Joyouscomms</a>: *puts head in hands again* OH MAN... the old ones are the best <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitprentice">#twitprentice</a>” <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23TWITPANTO">#TWITPANTO</a> *hits self in head* <span><a class="date" target="_blank" href="http://twitter.com/Joyouscomms/status/16868603290722304"><small>14:52:43</small></a></span></div>
<div class="a0 user_JayneHowarth"><img src="http://a3.twimg.com/profile_images/1175161411/twitpicprofile_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/JayneHowarth" class="user">JayneHowarth</a> *rseums clapping again in case audience think I'm being miserable* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/JayneHowarth/status/16868646638850048"><small>14:52:53</small></a></span></div>
<div class="a1 user_tobynutter"><img src="http://a2.twimg.com/profile_images/1167631754/Photo_148_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/tobynutter" class="user">tobynutter</a> *whistles at princess* <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/tobynutter/status/16868655933427712"><small>14:52:55</small></a></span></div>
<div class="a0 user_parboo"><img src="http://a3.twimg.com/profile_images/1188793063/786b29fc-6e32-4664-99be-246cc846f193_normal.png" width="32"> <a target="_blank" href="http://twitter.com/parboo" class="user">parboo</a> I am feeling very proud of my brummie chums <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23thingsImissaboutbrum">#thingsImissaboutbrum</a> Huge thanks to <a target="_blank" title="Opens in new window" href="http://twitter.com/bounder">@bounder</a> - genius, as ever <span><a class="date" target="_blank" href="http://twitter.com/parboo/status/16868659678945280"><small>14:52:56</small></a></span></div>
<div class="a1 user_ATTA_grrl"><img src="http://a1.twimg.com/profile_images/626418581/ATTA_LOGO_girlsmall_normal.jpg" width="32"> <a target="_blank" href="http://twitter.com/ATTA_grrl" class="user">ATTA_grrl</a> A standing ova-tion for the chicken <a target="_blank" title="Opens in new window" href="http://twitter.com/swearynews">@swearynews</a> <a target="_blank" title="Opens in new window" href="http://search.twitter.com/search?q=%23twitpanto">#twitpanto</a> <span><a class="date" target="_blank" href="http://twitter.com/ATTA_grrl/status/16868662111637504"><small>14:52:57</small></a></span></div>