forked from andrewf/pcap2har
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpcapr.net.pcap.har
4777 lines (4777 loc) · 548 KB
/
pcapr.net.pcap.har
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
{
"log": {
"browser": {
"name": "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10",
"version": "mumble"
},
"creator": {
"name": "pcap2har",
"version": "0.1"
},
"entries": [
{
"cache": {},
"pageref": "page_0",
"request": {
"bodySize": 0,
"cookies": [],
"headers": [
{
"name": "accept",
"value": "application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5"
},
{
"name": "accept-charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "accept-encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "accept-language",
"value": "en-US,en;q=0.8"
},
{
"name": "connection",
"value": "keep-alive"
},
{
"name": "host",
"value": "pcapr.net"
},
{
"name": "user-agent",
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10"
}
],
"headersSize": -1,
"httpVersion": "HTTP/1.1",
"method": "GET",
"queryString": [],
"url": "http://pcapr.net/"
},
"response": {
"bodySize": 0,
"content": {
"compression": 0,
"mimeType": "text/html",
"size": 0
},
"cookies": [],
"headers": [
{
"name": "connection",
"value": "close"
},
{
"name": "content-length",
"value": "0"
},
{
"name": "content-type",
"value": "text/html; charset=UTF-8"
},
{
"name": "date",
"value": "Tue, 28 Dec 2010 02:41:53 GMT"
},
{
"name": "expires",
"value": "Thu, 01 Jan 1970 00:00:00 GMT"
},
{
"name": "location",
"value": "http://pcapr.net/home"
},
{
"name": "server",
"value": "Apache/2.0.52 (CentOS)"
},
{
"name": "set-cookie",
"value": "HopSession=69.104.167.1xp0xhfeeo0lk;Path=/"
}
],
"headersSize": -1,
"httpVersion": "HTTP/1.1",
"redirectURL": "http://pcapr.net/home",
"status": 303,
"statusText": "See Other"
},
"startedDateTime": "2010-12-28T03:11:21.047491Z",
"time": 149,
"timings": {
"blocked": -1,
"connect": 61,
"dns": -1,
"receive": 0,
"send": 0,
"wait": 87
}
},
{
"cache": {},
"pageref": "page_1",
"request": {
"bodySize": 0,
"cookies": [],
"headers": [
{
"name": "accept",
"value": "application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5"
},
{
"name": "accept-charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "accept-encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "accept-language",
"value": "en-US,en;q=0.8"
},
{
"name": "connection",
"value": "keep-alive"
},
{
"name": "cookie",
"value": "HopSession=69.104.167.1xp0xhfeeo0lk"
},
{
"name": "host",
"value": "pcapr.net"
},
{
"name": "user-agent",
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10"
}
],
"headersSize": -1,
"httpVersion": "HTTP/1.1",
"method": "GET",
"queryString": [],
"url": "http://pcapr.net/home"
},
"response": {
"bodySize": 21696,
"content": {
"compression": 0,
"mimeType": "text/html",
"size": 21696,
"text": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n <title>Web 2.0 for packets | pcapr</title>\n <meta name=\"description\" content=\"pcapr is an online resource for the exchange and editing of packet captures (pcaps)\">\n <meta name=\"robots\" content=\"index, follow\">\n <link rel=\"shortcut icon\" href=\"http://pcapr.googlecode.com/svn/trunk/image/favicon.ico\"/>\n\t\t<meta name=\"verify-v1\" content=\"WWTx5ClwMQycIkgtxNz2WH1Qt+4n4XHi7QozBxwlA2c=\"/>\n <!--[if lte IE 6]>\n <style type=\"text/css\">\n img { behavior: url(http://pcapr.googlecode.com/svn/trunk/style/iepngfix.htc); }\n </style>\n <link href=\"css/template_ie6.css\" rel=\"stylesheet\" type=\"text/css\" />\n <![endif]-->\n <link rel=\"alternate\" type=\"application/rss+xml\" title=\"pcapr feed\" href=\"/rss\"/>\n <link rel=\"stylesheet\" type=\"text/css\" href=\"http://pcapr.googlecode.com/svn/trunk/style/page.css\" media=\"all\"/>\n <script type=\"text/javascript\" src=\"http://jqueryjs.googlecode.com/files/jquery-1.2.6.min.js\">\n </script>\n <script type=\"text/javascript\" src=\"http://jquery-ui.googlecode.com/svn/tags/1.5.2/ui/ui.core.js\">\n </script>\n <script type=\"text/javascript\" src=\"http://jquery-ui.googlecode.com/svn/tags/1.5.2/ui/ui.sortable.js\">\n </script>\n <script type=\"text/javascript\" src=\"http://pcapr.googlecode.com/svn/trunk/script/jquery.form.js\">\n </script>\n\t\t<script type=\"text/javascript\" src=\"http://pcapr.googlecode.com/svn/trunk/script/jquery.dimensions.js\"></script>\n <script type=\"text/javascript\" src=\"http://pcapr.googlecode.com/svn/trunk/script/jquery.menu.js\">\n </script>\n <script type=\"text/javascript\">\n var gaJsHost = ((\"https:\" == document.location.protocol) ? \"https://ssl.\" : \"http://www.\");\n document.write(unescape(\"%3Cscript src='\" + gaJsHost + \"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E\"));\n </script>\n <script type=\"text/javascript\">\n var pageTracker = _gat._getTracker(\"UA-1065683-9\");\n pageTracker._trackPageview();\n </script>\n <link type=\"text/css\" href=\"http://pcapr.googlecode.com/svn/trunk/style/pmagick.css\" rel=\"stylesheet\">\n<script type=\"text/javascript\" src=\"/static/script/browse.js?1293504113233\">\n</script>\n\n </head>\n <body id=\"page_bg\" class=\"f-default\">\n <div id=\"container\">\n <div id=\"pagetop\">\n <ul class=\"left\" id=\"mainlevel\">\n <li>\n <a href=\"/\" class=\"nounder\"><img src=\"http://pcapr.googlecode.com/svn/trunk/image/blank.png\" style=\"border: 0pt none ;\" alt=\"\" id=\"logo\"></a>\n </li>\n <li>\n <span><div>4924 <a href=\"/browse/users\">users</a>, <a href=\"/forensics\">59756402</a> <a href=\"/browse/fields\">packets</a>, 2866 <a href=\"/browse\">pcaps</a>, 425 <a href=\"/browse/protos\">protocols</a>, 181 <a href=\"/browse/tags\">tags</a></div></span>\n </li>\n </ul>\n <ul id=\"mainlevel\">\n\t\t<li>\n\t\t <strong><a href=\"/new\" style=\"color: #dd1122\">New!</a></strong>\n\t\t</li>\n\t\t<li>\n\t\t\t<a id=\"navPopularLink\" style=\"font-weight: bold\" href=\"javascript:void(0)\">Links</a>\n\t\t\t<small>▼</small>\n\t\t\t<div class=\"contextMenu\" id=\"navPopular\" style=\"display:none\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li id=\"caprmakr\">Cap'r Mak'r</li>\n\t\t\t\t\t<li id=\"contribute\">Contribute</li>\n\t\t\t\t\t<li id=\"drafts\">Drafts</li>\n\t\t\t\t\t<li id=\"faq\">FAQ</li>\n\t\t\t\t\t<li id=\"datasets\">Forensics</li>\n\t\t\t\t\t<li id=\"fields\">Field Index</li>\n\t\t\t\t\t<li id=\"mudos\">Mu DoS</li>\n\t\t\t\t\t<li id=\"profile\">Profile</li>\n\t\t\t\t\t<li id=\"trends\">Trends</li>\n\t\t\t\t\t<li id=\"xtractr\">xtractr</li>\n\t\t\t\t</ul>\n\t\t\t</div>\n\t\t</li>\n <li><b>You are not logged in</b></li>\n<li>\n <a href=\"/account/login\">Login</a>\n</li>\n<li>\n <a href=\"/account/register\">Register</a>\n</li>\n\n <li>\n <a title=\"RSS Feed\" href=\"/rss\" class=\"nounder\"><img src=\"http://pcapr.googlecode.com/svn/trunk/image/rss.png\" style=\"border: 0pt none;\"></a>\n </li>\n </ul>\n <div class=\"clr\">\n </div>\n\t\n\t<script type=\"text/javascript\">\n\t\t$(function() {\n\t\t\t$('a#navPopularLink').contextMenu('navPopular', {\n\t\t\t\tbindings: {\n\t\t\t\t\t'caprmakr': function() { window.location = '/caprmakr'; },\n\t\t\t\t\t'contribute': function() { window.location = '/contribute'; },\n\t\t\t\t\t'datasets': function() { window.location = '/forensics'; },\n\t\t\t\t\t'drafts': function() { window.location = '/drafts'; },\n\t\t\t\t\t'faq': function() { window.location = '/faq'; },\n\t\t\t\t\t'fields': function() { window.location = '/browse/fields'; },\n\t\t\t\t\t'mudos': function() { window.location = '/dos'; },\n\t\t\t\t\t'profile': function() { window.location = '/profile'; },\n\t\t\t\t\t'trends': function() { window.location = '/trends'; },\n\t\t\t\t\t'xtractr': function() { window.location = '/xtractr'; }\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t</script>\n\t\n\t<script type=\"text/javascript\">\n\t\tvar uservoiceJsHost = (\"https:\" == document.location.protocol) ? \"https://uservoice.com\" : \"http://cdn.uservoice.com\";\n\t\tdocument.write(unescape(\"%3Cscript src='\" + uservoiceJsHost + \"/javascripts/widgets/tab.js' type='text/javascript'%3E%3C/script%3E\"))\n\t\t</script>\n\t\t<script type=\"text/javascript\">\n\t\tUserVoice.Tab.show({ \n\t\t key: 'pcapr',\n\t\t host: 'pcapr.uservoice.com', \n\t\t forum: 'general', \n\t\t alignment: 'right',\n\t\t background_color:'Gray', \n\t\t text_color: 'white',\n\t\t hover_color: '#555555',\n\t\t lang: 'en'\n\t\t})\n\t</script>\t\n</div>\n\n <div id=\"mainbody\">\n <div class=\"wrapper\">\n <style type=\"text/css\">\n /* home page */\n div#hp-content {\n background-color: #F7F7F7;\n -moz-border-radius-topleft: 8px;\n -moz-border-radius-topright: 8px;\n -moz-border-radius-bottomleft: 8px;\n -moz-border-radius-bottomright: 8px;\n padding: 24px;\n border: 2px solid #DDDDDD;\n }\n \n div#hp-content h3, div#hp-content h4 {\n margin: 0px;\n }\n \n div#hp-categories img {\n border: none;\n }\n \n div#hp-categories {\n padding: 10px 30px 40px 10px;\n }\n \n div#hp-categories td {\n padding: 8px 0px 20px 0px;\n }\n \n div#headerbox {\n margin-bottom: 0px;\n border-bottom: 1px solid #EEE;\n }\n \n div#headerbox .wrapper {\n margin: 0px;\n padding: 15px 0px;\n border-width: 2px 0px;\n position: relative;\n }\n \n div#headerbox .intro {\n font-size: 140%;\n color: rgb(16, 88, 146);\n }\n \n div#headerbox .intro .logo-text {\n font-weight: bold\n }\n \n div#headerbox .message {\n font-size: 90%;\n color: #444;\n padding: 10px 0px;\n }\n \n div#navbox ul, div#navbox ul {\n padding: 0px;\n margin: 0px;\n }\n \n /* overrides for browse style */\n div#hp-content div#searchresults {\n margin-top: 20px;\n padding-top: 0px;\n background-color: #F7F7F7;\n border: none;\n }\n \n div#hp-content div#s-query-box {\n border: 1px solid #CCC;\n -moz-border-radius-topleft: 8px;\n -moz-border-radius-topright: 8px;\n -moz-border-radius-bottomright: 8px;\n -moz-border-radius-bottomleft: 8px;\n padding: 12px 16px;\n background-color: #E5EDFB;\n }\n\t\n div#s-hints-toggle {\n float: left;\n }\n \n div#hp-footer {\n margin-top: 40px;\n padding: 20px 0px;\n border-top: 1px solid #EEE;\n }\n \n div#footer-legal, div#footer-credits {\n color: #444;\n margin: 0px;\n font-size: 90%;\n }\n \n div#footer-legal {\n float: left;\n }\n \n div#footer-credits {\n float: right;\n text-align: right;\n }\n \n div#col-left {\n float: left;\n width: 42%;\n }\n \n div#col-right {\n float: right;\n width: 52%;\n }\n \n div.image_caption {\n border: 0 none;\n line-height: 1.2em;\n margin: 0;\n text-align: center;\n }\n \n div.image_caption a {\n text-decoration: none;\n color: #105892;\n font-weight: bold;\n }\n\t\n\tul#top5 li {\n\t\tlist-style: disc outside !important;\n\t}\n\t\n\tdiv#tweets ul {\n\t\tpadding: 10px;\n\t\tbackground-color: #f0f0ee;\n\t\tborder: 1px solid #E5E5E5;\n\t}\n</style>\n<div id=\"hp-content\">\n <div id=\"headerbox\">\n <div class=\"wrapper\">\n\t \t<div id=\"apps\" style=\"float: right\">\n\t \t\t<span id=\"tooltip\" style=\"vertical-align: bottom\"></span>\n\t \t\t<a href=\"/drafts\"><img class=\"icon\" id=\"Drafts\" src=\"http://pcapr.googlecode.com/svn/trunk/image/apps/drafts_small.png\" style=\"width: 24px\"/></a>\n\t \t\t<a href=\"/caprmakr\"><img class=\"icon\" id=\"Cap'r Mak'r\" src=\"http://pcapr.googlecode.com/svn/trunk/image/apps/caprmakr_small.png\" style=\"width: 24px\"/></a>\n\t \t\t<a href=\"/dos\"><img class=\"icon\" id=\"DoS\" src=\"http://pcapr.googlecode.com/svn/trunk/image/apps/dos_small.png\" style=\"width: 24px\"/></a>\n\t \t\t<a href=\"/browse/fields\"><img class=\"icon\" id=\"Field Index\" src=\"http://pcapr.googlecode.com/svn/trunk/image/apps/fields_small.png\" style=\"width: 24px\"/></a>\n\t \t</div>\n <div class=\"intro\">\n Welcome to <span class=\"logo-text\">pcapr</span>, where pcaps come alive.\n </div>\n\t\t\t<p/>\n\t\t\t<strong>pcapr</strong>, powered by \n\t\t\t<img src=\"http://pcapr.googlecode.com/svn/trunk/image/favicon.png\" class=\"icon\"/>\n\t\t\t<strong><a target=\"_blank\" href=\"http://www.mudynamics.com\">Mu Dynamics</a></strong>, is \n\t\t\ta social n<u><strong>O</strong></u>tworking site. There's a lot to learn\n\t\t\tabout networks and protocols from packet captures. Besides, we think\n\t\t\tpackets need as much Web 2.0 love as your spreadsheets.\n\t\t\t\n\t\t\tYou can learn more about <strong>pcapr</strong> in our <a target=\"_blank\" href=\"http://groups.google.com/group/pcapr-forum\">forum</a> \n\t\t\tor by following our <a target=\"_blank\" href=\"http://search.twitter.com/search?q=pcapr\">Tweets</a>. You\n\t\t\tcan also read our blogs at <a target=\"_blank\" href=\"http://labs.mudynamics.com\">Mu Labs</a>.\n\t\t\t\n\t\t\t<p>\n\t\t\t\t<span style=\"color: #DD1122; font-weight: bold\">New!</span> <a href=\"/xtractr\"><strong>xtractr</strong></a> -\n\t\t\t\tCloud application for indexing, searching, reporting and analyzing large pcaps.\n\t\t\t</p>\n\t\t\t\n\t\t\t<div id=\"s-query-box\">\n <form id=\"searchform\" style=\"float: left; clear: left;\" method=\"get\" action=\"/browse\">\n <input id=\"s-query\" class=\"search\" type=\"text\" value=\"\" title=\"pcapr search\" size=\"55\" name=\"q\" maxlength=\"2048\" autocomplete=\"off\"/>\n <button class=\"search\" title=\"Search\" type=\"submit\" class=\"search\">\n Search\n </button>\n </form>\n <div id=\"s-hints-toggle\" style=\"float: right;\">\n <a href=\"#\" onclick=\"$('#s-hints').slideToggle();\">Examples</a>\n </div>\n <div style=\"clear:both\">\n </div>\n <ul id=\"s-hints\" style=\"display: none\">\n <li>\n <strong><a href=\"/browse?q=http+buffer+overflow\">http buffer overflow</a></strong>\n (basic keyword search)\n </li>\n <li>\n <strong><a href=\"/browse?q=by:mu\">by:mu</a></strong>\n (search for pcaps submitted by \"mu\")\n </li>\n <li>\n <strong><a href=\"/browse?q=sip+AND+%22180+Ringing%22\">sip AND \"180 Ringing\"</a></strong>\n (search for SIP pcaps that contain a \"180 Ringing\" packet)\n </li>\n\t\t<li>\n\t\t\t<strong><a href=\"/browse?q=%22Tree+Connect+AndX+Request%22\">\"Tree Connect AndX Request\"</a></strong>\n\t\t\t(search for SMB pcaps that contain a \"Tree Connect AndX Request\" packet)\n\t\t</li>\n\t\t<li>\n\t\t\t<strong><a href=\"/browse?q=http+AND+field:ipv6*\">http AND field:ipv6*</a></strong>\n\t\t\t(search for HTTP pcaps over IPv6)\n\t\t</li>\n </ul>\n <form id=\"defaultform\" method=\"get\" action=\"/browse\" style=\"display:none\">\n <input id=\"order\" name=\"order\" type=\"hidden\" value=\"date\"/>\n </form>\n <form id=\"userform\" method=\"get\" action=\"/browse\" style=\"display:none\">\n <input id=\"user\" name=\"user\" type=\"hidden\" value=\"\"/>\n\t\t<input id=\"order\" name=\"order\" type=\"hidden\" value=\"date\"/>\n </form>\n <form id=\"protoform\" method=\"get\" action=\"/browse\" style=\"display:none\">\n <input id=\"proto\" name=\"proto\" type=\"hidden\" value=\"\"/>\n\t\t<input id=\"order\" name=\"order\" type=\"hidden\" value=\"date\"/>\n </form>\n <form id=\"fieldform\" method=\"get\" action=\"/browse\" style=\"display:none\">\n <input id=\"field\" name=\"field\" type=\"hidden\" value=\"\"/>\n\t\t<input id=\"order\" name=\"order\" type=\"hidden\" value=\"date\"/>\n </form>\n <form id=\"tagform\" method=\"get\" action=\"/browse\" style=\"display:none\">\n <input id=\"tag\" name=\"tag\" type=\"hidden\" value=\"\"/>\n\t\t<input id=\"order\" name=\"order\" type=\"hidden\" value=\"date\"/>\n </form>\n\t<link type=\"text/css\" href=\"http://pcapr.googlecode.com/svn/trunk/style/jquery.suggest.css\" rel=\"stylesheet\">\n\t<script type=\"text/javascript\" src=\"http://pcapr.googlecode.com/svn/trunk/script/jquery.suggest.pack.js\">\n\t</script>\n <script type=\"text/javascript\">\n $(function(){\n\t\t\tvar results = [];\n\t\t\tvar lookup = function(term) {\n\t\t\t\tresults.length = 0;\n\t\t\t\t$.ajax({\n\t\t\t\t\tmethod: 'GET', \n\t\t\t\t\turl: '/browse/suggest', \n\t\t\t\t\tdata: { q: term },\n\t\t\t\t\tcache: false,\n\t\t\t\t\tasync: false,\n\t\t\t\t\tdataType: 'json',\n\t\t\t\t\tsuccess: function(data) { results = data; }\n\t\t\t\t});\n\t\t\t\treturn $.map(results, function(obj) { return obj.name; });\n\t\t\t};\n $('#s-query').select().suggest(lookup, { \n\t\t\t\tdelay: 500,\n\t\t\t\tonSelect: function() {\n\t\t\t\t\tvar key = this.value;\n\t\t\t\t\tvar item = $.grep(results, function(obj) { return obj.name === key; });\n\t\t\t\t\tif (item.length !== 0) {\n\t\t\t\t\t\tthis.value = '';\n\t\t\t\t\t\twindow.location = item[0].link;\t\t\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t});\n });\n </script>\n</div>\n\n\t\t\t\n\t\t\t<div style=\"margin-top: 20px\"><table><tr><td><strong>»</strong></td><td valign=\"top\" style=\"padding-left:20px\"><a href=\"/profile/jimmcd2/astroready\"><img title=\"astroready\" width=\"42\" height=\"42\" style=\"border:none\" src=\"http://pcapr.googlecode.com/svn/trunk/image/user.jpg\"/></a></td><td valign=\"top\" style=\"padding-left:20px\"><a href=\"/profile/klBhcmm/manisridhar\"><img title=\"manisridhar\" width=\"42\" height=\"42\" style=\"border:none\" src=\"http://pcapr.googlecode.com/svn/trunk/image/user.jpg\"/></a></td><td valign=\"top\" style=\"padding-left:20px\"><a href=\"/profile/klllchE/ricardo.dias\"><img title=\"ricardo.dias\" width=\"42\" height=\"42\" style=\"border:none\" src=\"http://pcapr.googlecode.com/svn/trunk/image/user.jpg\"/></a></td><td valign=\"top\" style=\"padding-left:20px\"><a href=\"/profile/jesmciK/rbartosik\"><img title=\"rbartosik\" width=\"42\" height=\"42\" style=\"border:none\" src=\"http://pcapr.googlecode.com/svn/trunk/image/user.jpg\"/></a><br/><span style=\"font-size: smaller\">4 pcaps</span></td><td valign=\"top\" style=\"padding-left:20px\"><a href=\"/profile/kkAyccF/sahusatyaranjan\"><img title=\"sahusatyaranjan\" width=\"42\" height=\"42\" style=\"border:none\" src=\"http://pcapr.googlecode.com/svn/trunk/image/user.jpg\"/></a></td><td valign=\"top\" style=\"padding-left:20px\"><a href=\"/profile/kdhgcbh/gzecheru\"><img title=\"gzecheru\" width=\"42\" height=\"42\" style=\"border:none\" src=\"http://pcapr.googlecode.com/svn/trunk/image/user.jpg\"/></a></td><td valign=\"top\" style=\"padding-left:20px\"><a href=\"/profile/kbegciv/prolag\"><img title=\"prolag\" width=\"42\" height=\"42\" style=\"border:none\" src=\"http://pcapr.googlecode.com/svn/trunk/image/user.jpg\"/></a><br/><span style=\"font-size: smaller\">3 pcaps</span></td><td valign=\"top\" style=\"padding-left:20px\"><a href=\"/profile/klBgci3/glen.pendley\"><img title=\"glen.pendley\" width=\"42\" height=\"42\" style=\"border:none\" src=\"http://pcapr.googlecode.com/svn/trunk/image/user.jpg\"/></a></td><td valign=\"top\" style=\"padding-left:20px\"><a href=\"/profile/jiDgco5/junkmaillandfill\"><img title=\"junkmaillandfill\" width=\"42\" height=\"42\" style=\"border:none\" src=\"http://pcapr.googlecode.com/svn/trunk/image/user.jpg\"/></a></td><td valign=\"top\" style=\"padding-left:20px\"><a href=\"/profile/kltgcik/shatzki\"><img title=\"shatzki\" width=\"42\" height=\"42\" style=\"border:none\" src=\"http://pcapr.googlecode.com/svn/trunk/image/user.jpg\"/></a></td></tr></table></div>\t\t\t\n\t\t\t\n\t\t\t<table style=\"width: 100%\">\n\t\t\t\t<tr>\n\t\t\t\t\t<td><a href=\"http://twitter.com/pcapr\"><img style=\"width: 32px; height: 32px; border: none\" src=\"http://pcapr.googlecode.com/svn/trunk/image/twitter.png\"/></a></td>\n\t\t\t\t\t<td style=\"width: 100%\"><div id=\"tweets\"><span class=\"throbber\">loading tweets</span></div></td>\n\t\t\t\t</tr>\n\t\t\t</table>\n </div>\n </div>\n\t\n\t\n\t<div class=\"message\"><span class=\"info\">You must <a href=\"/account/login\">login</a> to view, edit, upload and comment on pcaps.\nIf you are a new user, you can register <a href=\"/account/register\">here</a>.</span></div>\n <div id=\"mainbox\">\n <div id=\"col-left\">\n <h3><a href=\"/browse\">browse</a> by category</h3>\n <div id=\"hp-categories\">\n <table width=\"100%\">\n <tr>\n <td>\n <div class=\"image_caption\">\n <a href=\"/browse/routing\">\n \t<img src=\"http://pcapr.googlecode.com/svn/trunk/image/home/routing.png\" width=\"70px\"/>\n <br/>\n routing\n </a>\n </div>\n </td>\n <td>\n <div class=\"image_caption\">\n <a href=\"/browse/storage\">\n \t<img src=\"http://pcapr.googlecode.com/svn/trunk/image/home/storage.png\" width=\"70px\"/>\n <br/>\n storage\n </a>\n </div>\n </td>\n <td>\n <div class=\"image_caption\">\n <a href=\"/browse/voip\">\n \t<img src=\"http://pcapr.googlecode.com/svn/trunk/image/home/media.png\" width=\"70px\"/>\n <br/>\n media / voip\n </a>\n </div>\n </td>\n </tr>\n <tr>\n <td>\n <div class=\"image_caption\">\n <a href=\"/browse/core\">\n \t<img src=\"http://pcapr.googlecode.com/svn/trunk/image/home/core.png\" width=\"70px\"/>\n <br/>\n core\n </a>\n </div>\n </td>\n <td>\n <div class=\"image_caption\">\n <a href=\"/browse/scada\">\n \t<img src=\"http://pcapr.googlecode.com/svn/trunk/image/home/scada.png\" width=\"70px\"/>\n <br/>\n control systems\n </a>\n </div>\n </td>\n <td>\n <div class=\"image_caption\">\n <a href=\"/browse/data\">\n \t<img src=\"http://pcapr.googlecode.com/svn/trunk/image/home/metro.png\" width=\"70px\"/>\n <br/>\n data services\n </a>\n </div>\n </td>\n </tr>\n </table>\n </div>\n <a id=\"poweredby\" href=\"http://www.mudynamics.com/products/protocol.html\">powered by Mu Dynamics</a>\n </div>\n <div id=\"col-right\" style=\"border-left: 1px solid #EEE; padding-left: 20px;\">\n <h3>MuSL - Interactive Application Protocol Playground</h3>\n\t\t\t<a href=\"/musl\"><img style=\"border:none; width: 450px\" src=\"http://pcapr.googlecode.com/svn/trunk/image/musl/architecture.jpg\"/></a>\n </div>\n </div>\n <div class=\"clr\">\n </div>\n <div id=\"hp-footer\" class=\"clr\">\n <div id=\"footer-legal\">\n <div id=\"footer-copyright\">\n © 2010 Mu Dynamics. <a href=\"/tos\" class=\"copy\">Terms of Service</a>\n | <a href=\"http://www.mudynamics.com/company/privacy.html\" class=\"copy\">Privacy</a>\n | <a href=\"http://www.mudynamics.com/company/legal.html\" class=\"copy\">Legal</a>\n </div>\n </div>\n <div id=\"footer-credits\">\n powered by:\n <a href=\"http://wireshark.org/\">wireshark</a>\n | <a href=\"http://helma.org/\">helma</a>\n | <a href=\"http://couchdb.org/\">couchdb</a>\n | <a href=\"http://jquery.com/\">jquery</a>\n | <a href=\"http://mudynamics.com/\">mu dynamics</a>\n </div>\n </div>\n</div>\n\n<script type=\"text/javascript\" src=\"http://twitterjs.googlecode.com/files/twitter-1.12.2.min.js\"></script>\n\n<script type=\"text/javascript\">\n\t$(function() {\n\t\tvar apps = $('div#apps');\n\t\tvar tooltip = apps.find('span#tooltip');\n\t\tapps.find('img').hover(function() {\n\t\t\ttooltip.text($(this).attr('id'));\t\t\t\t\n\t\t}, function() {\n\t\t\ttooltip.text('');\n\t\t});\n\t\t\n\t\tgetTwitters('tweets', {\n\t\t\tid: 'pcapr', \n\t\t\tcount: 4,\n\t\t\ttemplate: '» <span>%text%</span>'\n\t\t});\n\t});\n</script>\n\n </div>\n </div>\n </div>\n </body>\n</html>\n"
},
"cookies": [],
"headers": [
{
"name": "cache-control",
"value": "no-cache, no-store, max-age=0, must-revalidate"
},
{
"name": "connection",
"value": "close"
},
{
"name": "content-length",
"value": "21696"
},
{
"name": "content-type",
"value": "text/html; charset=ISO-8859-1"
},
{
"name": "date",
"value": "Tue, 28 Dec 2010 02:41:53 GMT"
},
{
"name": "etag",
"value": "\"kfZcxqRb2BDhMBs1D+mR8w==\""
},
{
"name": "server",
"value": "Apache/2.0.52 (CentOS)"
}
],
"headersSize": -1,
"httpVersion": "HTTP/1.1",
"redirectURL": "",
"status": 200,
"statusText": "OK"
},
"startedDateTime": "2010-12-28T03:11:21.200021Z",
"time": 2194,
"timings": {
"blocked": -1,
"connect": 62,
"dns": -1,
"receive": 483,
"send": 0,
"wait": 1649
}
},
{
"cache": {},
"pageref": "page_1",
"request": {
"bodySize": 0,
"cookies": [],
"headers": [
{
"name": "accept",
"value": "*/*"
},
{
"name": "accept-charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "accept-encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "accept-language",
"value": "en-US,en;q=0.8"
},
{
"name": "connection",
"value": "keep-alive"
},
{
"name": "cookie",
"value": "HopSession=69.104.167.1xp0xhfeeo0lk"
},
{
"name": "host",
"value": "pcapr.net"
},
{
"name": "referer",
"value": "http://pcapr.net/home"
},
{
"name": "user-agent",
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10"
}
],
"headersSize": -1,
"httpVersion": "HTTP/1.1",
"method": "GET",
"queryString": [
{
"name": "1293504113233",
"value": ""
}
],
"url": "http://pcapr.net/static/script/browse.js?1293504113233"
},
"response": {
"bodySize": 882,
"content": {
"compression": 0,
"encoding": "base64",
"mimeType": "application/x-javascript",
"size": 882,
"text": "ZnVuY3Rpb24gYmluZEFjdGlvbnMocm9vdCkgewoJJChyb290KQoJCS5maW5kKCdhLm1ldGEtcHJv\ndG8nKS5hdHRyKCdocmVmJywgJ2phdmFzY3JpcHQ6dm9pZCgwKScpCgkJCS5jbGljayhmdW5jdGlv\nbigpIHsKCQkJCXZhciBwcm90byA9ICQodGhpcykudGV4dCgpOwoJCQkJJCgnI3Byb3RvZm9ybScp\nLmZpbmQoJ2lucHV0I3Byb3RvJykudmFsKHByb3RvKS5lbmQoKS5zdWJtaXQoKTsKCQkJfSkKCQkJ\nLmVuZCgpCQkKCQkuZmluZCgnYS50YWcnKS5hdHRyKCdocmVmJywgJ2phdmFzY3JpcHQ6dm9pZCgw\nKScpCgkJCS5jbGljayhmdW5jdGlvbigpIHsKCQkJCXZhciB0YWcgPSAkKHRoaXMpLnRleHQoKTsK\nCQkJCSQoJyN0YWdmb3JtJykuZmluZCgnaW5wdXQjdGFnJykudmFsKHRhZykuZW5kKCkuc3VibWl0\nKCk7CgkJCX0pCgkJCS5lbmQoKTsKfQoKJChkb2N1bWVudCkucmVhZHkoZnVuY3Rpb24oKSB7Cgli\naW5kQWN0aW9ucygkKCd1bCNwLW1haW4nKSk7CgkKCXZhciBocmVmID0gJCgnbGkucC1vdmVyZmxv\ndyBhJykuYXR0cignaHJlZicpOwoJJCgnbGkucC1vdmVyZmxvdyBhJykuYXR0cignaHJlZicsICdq\nYXZhc2NyaXB0OnZvaWQoMCknKS5jbGljayhmdW5jdGlvbigpIHsKCQkkKHRoaXMpLnByZXYoKS5j\nc3MoJ2Rpc3BsYXknLCAnaW5saW5lJyk7CgkJJC5hamF4KHsKCQkJdHlwZTogJ0dFVCcsCgkJCXVy\nbDogaHJlZiwgCgkJCXN1Y2Nlc3M6IGZ1bmN0aW9uKGh0bWwpIHsKCQkJCSQoJ2xpLnAtb3ZlcmZs\nb3cnKS5mYWRlT3V0KDEwMDAsIGZ1bmN0aW9uKCkgewoJCQkJCXZhciBsaXN0ID0gJChodG1sKTsK\nCQkJCQkkKHRoaXMpLnJlcGxhY2VXaXRoKGxpc3QpOwoJCQkJCWJpbmRBY3Rpb25zKGxpc3QpOwoJ\nCQkJfSk7CgkJCX0KCQl9KTsKCX0pOwp9KTsK\n"
},
"cookies": [],
"headers": [
{
"name": "accept-ranges",
"value": "bytes"
},
{
"name": "connection",
"value": "close"
},
{
"name": "content-length",
"value": "882"
},
{
"name": "content-type",
"value": "application/x-javascript"
},
{
"name": "date",
"value": "Tue, 28 Dec 2010 02:41:55 GMT"
},
{
"name": "last-modified",
"value": "Thu, 30 Apr 2009 16:14:16 GMT"
},
{
"name": "server",
"value": "Apache/2.0.52 (CentOS)"
}
],
"headersSize": -1,
"httpVersion": "HTTP/1.1",
"redirectURL": "",
"status": 200,
"statusText": "OK"
},
"startedDateTime": "2010-12-28T03:11:23.010464Z",
"time": 189,
"timings": {
"blocked": -1,
"connect": 84,
"dns": -1,
"receive": 0,
"send": 0,
"wait": 105
}
},
{
"cache": {},
"pageref": "page_1",
"request": {
"bodySize": 0,
"cookies": [],
"headers": [
{
"name": "accept",
"value": "text/css,*/*;q=0.1"
},
{
"name": "accept-charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "accept-encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "accept-language",
"value": "en-US,en;q=0.8"
},
{
"name": "connection",
"value": "keep-alive"
},
{
"name": "host",
"value": "pcapr.googlecode.com"
},
{
"name": "referer",
"value": "http://pcapr.net/home"
},
{
"name": "user-agent",
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10"
}
],
"headersSize": -1,
"httpVersion": "HTTP/1.1",
"method": "GET",
"queryString": [],
"url": "http://pcapr.googlecode.com/svn/trunk/style/page.css"
},
"response": {
"bodySize": 26689,
"content": {
"compression": 0,
"mimeType": "text/css",
"size": 26689,
"text": "/*\n * Copyright (C) 2009 Mu Dynamics, Inc\n * All rights reserved.\n * http://www.opensource.org/licenses/bsd-license.php\n * \n * http://www.mudynamics.com\n * http://labs.mudynamics.com\n * http://www.pcapr.net\n */\nhtml {\n height: 100%;\n margin-bottom: 1px;\n}\n\nbody {\n margin: 0pt;\n padding: 0pt;\n} #container {\n text-align: left;\n margin: 0 auto;\n max-width: 1000px;\n\tmin-width: 700px;\n position: relative;\n}\n\np {\n margin-top: 10px;\n margin-bottom: 15px;\n}\n\nh1, h2, h3, h4 {\n margin: 15px 0pt;\n padding-bottom: 5px;\n}\n\nbody {\n font-size: 13px;\n}\n\nbody.f-smaller {\n font-size: 10px;\n}\n\nbody.f-default {\n font-size: 12px;\n}\n\nbody.f-larger {\n font-size: 15px;\n}\n\nh1 {\n font-size: 200%;\n}\n\nh2 {\n font-size: 180%;\n}\n\nh3 {\n font-size: 150%;\n}\n\nh4 {\n font-size: 120%;\n} .left {\n float: left !important\n} .small, .modifydate, .createdate, div.mosimage_caption {\n font-size: 95%;\n}\n\ndiv.moduletable h3, .componentheading {\n font-size: 145%;\n}\n\ntable.sections .contentheading {\n font-size: 145%;\n} .contentheading {\n font-size: 160%;\n} .componentheading {\n margin-bottom: 15px;\n}\n\ntd.componentheading {\n padding-bottom: 15px;\n}\n\nbody {\n line-height: 135%;\n font-family: Arial, Helvetica, sans-serif;\n} .contentheading, .componentheading {\n font-weight: bold;\n}\n\nimg#logo {\n margin: 2px 5px 0px 5px;\n width: 63px;\n height: 21px;\n background: transparent url('../image/pcapr-logo.png') no-repeat scroll 0pt 0pt;\n}\n\ndiv#banner {\n overflow: hidden;\n margin-left: 270px;\n height: 50px;\n}\n\ndiv#banner h2 {\n line-height: 30px\n}\n\ndiv#horiz-menu {\n height: 46px;\n}\n\n .sidenav a {\n font-weight: bold;\n}\n\ndiv#pagetop {\n padding: 5px 8px\n}\n\ndiv#pagetop ul {\n margin: 0pt;\n padding: 0pt;\n float: right;\n}\n\ndiv#pagetop li {\n float: left;\n list-style-type: none;\n list-style-image: none;\n list-style-position: outside;\n margin-right: 10px;\n}\n\ndiv#pagetop li img {\n float: left;\n vertical-align: middle;\n}\n\ndiv#pagetop a.mainlevel {\n margin: 0pt;\n padding: 0pt 5px;\n background: transparent none repeat scroll 0% 0%;\n display: block;\n float: left;\n font-weight: bold;\n}\n\ndiv#pagetop a.mainlevel {\n color: rgb(51, 51, 51);\n}\n\nspan.alert, span.info, span.download, span.note {\n margin: 15px 0pt;\n padding: 10px 10px 10px 50px;\n display: block;\n} #section1 li, #section2 li, #mainbody li {\n margin-left: 0pt;\n list-style-type: none;\n list-style-image: none;\n list-style-position: outside;\n} #mainbody ul.check1, #mainbody ul.check2, #mainbody ul.arrow1, #mainbody ul.arrow2, #mainbody ul.arrow3, #mainbody ul.star, #mainbody ul.circle, #mainbody ul.morespace {\n padding: 0pt;\n margin-left: 35px;\n}\n\nul.check1 li, ul.check2 li, ul.arrow1 li, ul.arrow2 li, ul.arrow3 li, ul.star li, ul.circle li, li.check1, li.check2, li.arrow1, li.arrow2, li.arrow3, li.star, li.circle {\n list-style-type: none;\n list-style-image: none;\n list-style-position: outside;\n padding-bottom: 15px;\n padding-left: 40px;\n}\n\nblockquote {\n margin: 15px 0pt;\n padding: 10px 10px 10px 80px;\n width: auto;\n} #fxPadding div.moduletable h3 {\n margin: 0pt;\n padding: 0pt;\n float: left;\n line-height: 40px;\n height: 40px;\n} #fxPadding form {\n float: left;\n padding-left: 30px;\n height: 22px;\n margin-top: 8px;\n} #fxPadding div.loginelement {\n float: left;\n margin-left: 30px;\n height: 22px;\n line-height: 22px;\n} #fxPadding div.loginelement input {\n width: 100px;\n padding-left: 5px;\n}\n\nspan.loginsubmit, span.logoutsubmit {\n display: block;\n padding-left: 8px;\n margin-left: 10px;\n line-height: 25px;\n width: 96px;\n float: left;\n cursor: pointer;\n}\n\ntable.contentpaneopen tbody tr td span.small, td.createdate {\n padding-left: 20px;\n} .screenshot {\n float: right;\n margin-top: -35px;\n z-index: 9;\n} .hide {\n display: none;\n}\n\nform {\n border: 0pt none;\n margin: 0pt;\n padding: 0pt;\n}\n\ntable.blog span.article_seperator {\n display: block;\n height: 20px;\n}\n\ndiv.moduletable, div.moduletable-hilite1, div.moduletable-hilite2, div.moduletable-hilite3, div.moduletable-hilite4, div.moduletable-hilite5, div.moduletable-hilite6, div.moduletable-hilite7, div.moduletable-hilite8 {\n padding: 0pt 15px 10px;\n}\n\ndiv.moduletable h3, div.moduletable-hilite1 h3, div.moduletable-hilite2 h3, div.moduletable-hilite3 h3, div.moduletable-hilite4 h3, div.moduletable-hilite5 h3, div.moduletable-hilite6 h3, div.moduletable-hilite7 h3, div.moduletable-hilite8 h3 {\n margin: 0pt -15px 15px;\n padding: 10px 15px;\n line-height: 100%;\n}\n\ntd.left div.moduletable, td.right div.moduletable {\n margin-bottom: 25px;\n} .contentheading {\n padding: 10px 0pt;\n line-height: 100%;\n} .clr {\n clear: both;\n}\n\nspan.content_rating img {\n vertical-align: top;\n} .modifydate {\n height: 20px;\n vertical-align: bottom;\n} .createdate {\n height: 20px;\n vertical-align: top;\n padding-bottom: 5px;\n padding-top: 0px;\n} .nounder {\n border: 0pt none;\n text-decoration: none;\n} .style-wrapper {\n padding-left: 70px;\n padding-top: 30px;\n} .style {\n float: left;\n margin-right: 50px;\n margin-bottom: 50px;\n}\n\nbody {\n background: rgb(244, 244, 244) url('../image/bg.png') repeat-x scroll 0pt 0pt;\n color: rgb(51, 51, 51);\n}\n\na {\n cursor: pointer;\n color: rgb(39, 123, 192);\n}\n\na:hover {\n color: black;\n}\n\nh1 {\n color: rgb(39, 123, 192);\n}\n\nh2 {\n color: rgb(39, 123, 192);\n}\n\nh3 {\n color: rgb(16, 88, 146);\n}\n\nh4 {\n color: rgb(102, 102, 102);\n} .contentheading {\n color: rgb(39, 123, 192);\n} .componentheading {\n color: rgb(39, 123, 192);\n}\n\ndiv#mainbody {\n margin: 16px;\n}\n\ndiv#mainbody td.mainbody, div#mainbody td.left, div#mainbody td.right {\n background: transparent url('../image/body-bg.png') repeat-y scroll 0pt 0pt;\n}\n\ndiv#mainbody a.readon {\n background: transparent url('../image/body-readmore.png') no-repeat scroll 0pt 0pt;\n color: rgb(255, 255, 255);\n}\n\ndiv#mainbody td.section {\n background: transparent url('../image/body-bg.png') repeat-y scroll 0pt 0pt;\n}\n\ndiv#mainbody div.moduletable h3 {\n background: rgb(237, 237, 237) url('../image/body-h3.png') repeat-y scroll 0pt 0pt;\n color: rgb(39, 123, 192);\n} #mainbody div.moduletable-hilite1 a {\n color: rgb(39, 123, 192);\n} #mainbody div.moduletable-hilite1 {\n background: rgb(230, 230, 230) url('../image/body-hl1-bg.png') repeat-y scroll 0pt 0pt;\n} #mainbody div.moduletable-hilite1 h3 {\n background: rgb(214, 214, 214) url('../image/body-hl1-h3.png') repeat-y scroll 0pt 0pt;\n color: rgb(75, 75, 75);\n} #mainbody div.moduletable-hilite1 li {\n background: transparent url('../image/bullet-hl1.png') no-repeat scroll 0pt 3px;\n} #mainbody div.moduletable-hilite1 a.readon {\n background: transparent url('../image/body-hl1-readmore.png') no-repeat scroll 0pt 0pt;\n color: rgb(255, 255, 255);\n} #mainbody div.moduletable-hilite2 a {\n color: rgb(68, 68, 68);\n} #mainbody div.moduletable-hilite2 {\n background: rgb(146, 146, 146) url('../image/body-hl2-bg.png') repeat-y scroll 0pt 0pt;\n color: rgb(255, 255, 255);\n} #mainbody div.moduletable-hilite2 h3 {\n background: rgb(128, 128, 128) url('../image/body-hl2-h3.png') repeat-y scroll 0pt 0pt;\n color: rgb(255, 255, 255);\n} #mainbody div.moduletable-hilite2 li {\n background: transparent url('../image/bullet-hl2.png') no-repeat scroll 0pt 3px;\n} #mainbody div.moduletable-hilite2 a.readon {\n background: transparent url('../image/body-hl2-readmore.png') no-repeat scroll 0pt 0pt;\n color: rgb(255, 255, 255);\n} #mainbody div.moduletable-hilite3 a {\n color: rgb(210, 166, 29);\n} #mainbody div.moduletable-hilite3 {\n background: rgb(251, 248, 222) url('../image/body-hl3-bg.png') repeat-y scroll 0pt 0pt;\n color: rgb(51, 51, 51);\n} #mainbody div.moduletable-hilite3 h3 {\n background: rgb(246, 239, 194) url('../image/body-hl3-h3.png') repeat-y scroll 0pt 0pt;\n color: rgb(210, 166, 29);\n} #mainbody div.moduletable-hilite3 li {\n background: transparent url('../image/bullet-hl3.png') no-repeat scroll 0pt 3px;\n} #mainbody div.moduletable-hilite3 a.readon {\n background: transparent url('../image/body-hl3-readmore.png') no-repeat scroll 0pt 0pt;\n color: rgb(255, 255, 255);\n} #mainbody div.moduletable-hilite4 a {\n color: rgb(33, 88, 133);\n} #mainbody div.moduletable-hilite4 {\n background: rgb(224, 235, 248) url('../image/body-hl4-bg.png') repeat-y scroll 0pt 0pt;\n color: rgb(51, 51, 51);\n} #mainbody div.moduletable-hilite4 h3 {\n background: rgb(198, 218, 241) url('../image/body-hl4-h3.png') repeat-y scroll 0pt 0pt;\n color: rgb(30, 65, 96);\n} #mainbody div.moduletable-hilite4 li {\n background: transparent url('../image/bullet-hl4.png') no-repeat scroll 0pt 3px;\n} #mainbody div.moduletable-hilite4 a.readon {\n background: transparent url('../image/body-hl4-readmore.png') no-repeat scroll 0pt 0pt;\n color: rgb(255, 255, 255);\n} #mainbody div.moduletable-hilite5 h3 {\n background: rgb(88, 88, 88) url('../image/body-hl5-h3.png') repeat-y scroll 0pt 0pt;\n color: rgb(230, 230, 230);\n} #mainbody div.moduletable-hilite6 h3 {\n background: rgb(36, 107, 162) url('../image/body-hl6-h3.png') repeat-y scroll 0pt 0pt;\n color: rgb(222, 233, 241);\n} #mainbody div.moduletable-hilite7 h3 {\n background: rgb(132, 132, 132) url('../image/body-hl7-h3.png') repeat-y scroll 0pt 0pt;\n color: rgb(255, 255, 255);\n} #mainbody div.moduletable-hilite8 h3 {\n background: rgb(39, 123, 192) url('../image/body-hl8-h3.png') repeat-y scroll 0pt 0pt;\n color: rgb(233, 240, 245);\n}\n\ndiv#section1 {\n background: rgb(39, 123, 192) none repeat scroll 0% 0%;\n padding-top: 1px;\n color: rgb(233, 240, 245);\n}\n\ndiv#section1 a {\n color: rgb(159, 218, 237);\n}\n\ndiv#section1 a.readon {\n background: transparent url('../image/section1-readmore.png') no-repeat scroll 0pt 0pt;\n color: rgb(255, 255, 255);\n}\n\ndiv#section1 td.section {\n background: transparent url('../image/section1-bg.png') repeat-y scroll 0pt 0pt;\n}\n\ndiv#section1 div.moduletable h3 {\n background: rgb(35, 104, 156) url('../image/section1-h3.png') repeat-y scroll 0pt 0pt;\n color: rgb(233, 240, 245);\n} #section1 li {\n background: transparent url('../image/bullet-section1.png') no-repeat scroll 0pt 3px;\n}\n\ndiv#section2 {\n background: rgb(39, 123, 192) none repeat scroll 0% 0%;\n padding-top: 1px;\n color: rgb(233, 240, 245);\n}\n\ndiv#section2 a {\n color: rgb(159, 218, 237);\n}\n\ndiv#section2 a.readon {\n background: transparent url('../image/section2-readmore.png') no-repeat scroll 0pt 0pt;\n color: rgb(255, 255, 255);\n}\n\ndiv#section2 td.section {\n background: transparent url('../image/section2-bg.png') repeat-y scroll 0pt 0pt;\n}\n\ndiv#section2 div.moduletable h3 {\n background: rgb(35, 104, 156) url('../image/section2-h3.png') repeat-y scroll 0pt 0pt;\n color: rgb(233, 240, 245);\n} #section2 li {\n background: transparent url('../image/bullet-section2.png') no-repeat scroll 0pt 3px;\n}\n\ndiv#footer {\n background: transparent url('../image/bottom-bg.png') repeat-x scroll 0pt 0pt;\n}\n\ndiv#footer .rk-1 {\n background: transparent url('../image/bottom-r.png') no-repeat scroll 100% 0pt;\n}\n\ndiv#footer .rk-2 {\n background: transparent url('../image/bottom-l.png') no-repeat scroll 0pt 0pt;\n}\n\ndiv#the-footer {\n background: transparent url('../image/bottom-rocket.png') no-repeat scroll 50% 0pt;\n}\n\na.mainlevel {\n background: transparent url('../image/bullet-7.png') no-repeat scroll 0pt 2px;\n}\n\nspan.alert {\n border-top: 3px solid rgb(254, 123, 122);\n border-bottom: 3px solid rgb(254, 123, 122);\n background: rgb(255, 204, 204) url('../image/status-alert.png') no-repeat scroll 10px 50%;\n color: rgb(204, 0, 0);\n}\n\nspan.info {\n border-top: 3px solid rgb(98, 157, 227);\n border-bottom: 3px solid rgb(98, 157, 227);\n background: rgb(205, 223, 246) url('../image/status-info.png') no-repeat scroll 10px 50%;\n color: rgb(0, 85, 187);\n}\n\nspan.note {\n border-top: 3px solid rgb(253, 225, 121);\n border-bottom: 3px solid rgb(253, 225, 121);\n background: rgb(255, 245, 204) url('../image/status-note.png') no-repeat scroll 10px 50%;\n color: rgb(183, 144, 0);\n}\n\nspan.download {\n border-top: 3px solid rgb(194, 223, 136);\n border-bottom: 3px solid rgb(194, 223, 136);\n background: rgb(232, 244, 210) url('../image/status-download.png') no-repeat scroll 10px 50%;\n color: rgb(87, 134, 26);\n}\n\nblockquote {\n background: rgb(249, 249, 249) url('../image/blockquote.png') no-repeat scroll 0pt 0pt;\n color: rgb(102, 102, 102);\n font-style: italic;\n font-size: 120%;\n line-height: 150%;\n}\n\npre {\n background: rgb(246, 246, 246) none repeat scroll 0% 0%;\n} #mainbody ul.check1 li, #mainbody li.check1 {\n background: transparent url('../image/bullet-1.png') no-repeat scroll 0pt 0pt;\n} #mainbody ul.check2 li, #mainbody li.check2 {\n background: transparent url('../image/bullet-3.png') no-repeat scroll 0pt 0pt;\n} #mainbody ul.arrow1 li, #mainbody li.arrow1 {\n background: transparent url('../image/bullet-2.png') no-repeat scroll 0pt 0pt;\n} #mainbody ul.arrow2 li, #mainbody li.arrow2 {\n background: transparent url('../image/bullet-4.png') no-repeat scroll 0pt 0pt;\n} #mainbody ul.arrow3 li, #mainbody li.arrow3 {\n background: transparent url('../image/bullet-5.png') no-repeat scroll 0pt 0pt;\n} #mainbody ul.star li, #mainbody li.star {\n background: transparent url('../image/bullet-6.png') no-repeat scroll 0pt 0pt;\n} #mainbody ul.circle li, #mainbody li.circle {\n background: transparent url('../image/bullet-7.png') no-repeat scroll 0pt 0pt;\n}\n\nspan.loginsubmit, span.logoutsubmit {\n background: transparent url('../image/login_button.png') no-repeat scroll 0% 0%;\n color: rgb(255, 255, 255);\n}\n\nspan.pathway {\n color: rgb(51, 51, 51);\n}\n\nspan.pathway img {\n background: transparent url('../image/bullet-pathway.png') no-repeat scroll 0% 0%;\n}\n\nspan.pathway a {\n color: rgb(39, 123, 192);\n} .highlight {\n background-color: rgb(255, 255, 204);\n}\n\ntable.mainbody td.mainbody td.sectiontableheader {\n border-bottom: 1px solid rgb(221, 221, 221);\n background: rgb(246, 246, 246) none repeat scroll 0% 0%;\n}\n\ntr.sectiontableentry1 td, tr.sectiontableentry2 td, td.sectiontableentry1, td.sectiontableentry2 {\n border-top: 1px none rgb(255, 255, 255);\n border-bottom: 1px solid rgb(239, 239, 239);\n}\n\ntr.sectiontableentry2 td, td.sectiontableentry1 {\n background: rgb(252, 252, 252) none repeat scroll 0% 0%;\n}\n\ntable.contentpaneopen tbody tr td span.small {\n background: transparent url('../image/icon-author.png') no-repeat scroll 0pt 0pt;\n}\n\ntd.createdate {\n background: transparent url('../image/icon-created.png') no-repeat scroll 0pt 0pt;\n} .nav, .nav * {\n margin: 0pt;\n padding: 0pt;\n} .content {\n background-color: #FAFAFA;\n border: 1px solid #CCC !important;\n -moz-border-radius-topleft: 8px;\n -moz-border-radius-topright: 8px;\n -moz-border-radius-bottomleft: 8px;\n -moz-border-radius-bottomright: 8px;\n padding: 10px 10px 0px 10px;\n}\n\n/* home page */\ndiv#hp-sidebar {\n position: absolute;\n padding: 0px;\n top: 0px;\n margin-top: 20px;\n}\n\ndiv#b-content h3, div#b-content h4, div#hp-sidebar h3, div#hp-sidebar h4 {\n margin: 0px;\n}\n\ndiv#hp-sidebar h3, div#hp-sidebar h4 {\n font-size: 110%;\n}\n\ndiv#b-content {\n left: 0%;\n right: 0%;\n}\n\ndiv#b-content > div {\n border: 1px solid #FAFAFA;\n background-color: #F7F7F7;\n -moz-border-radius-topleft: 8px;\n -moz-border-radius-topright: 8px;\n -moz-border-radius-bottomleft: 8px;\n -moz-border-radius-bottomright: 8px;\n padding: 14px 16px;\n margin-bottom: 16px;\n}\n\ndiv#hp-content #poweredby {\n background: transparent url('../image/powered-by.png') no-repeat scroll 50% 50%;\n text-indent: -9999px;\n width: 180px;\n height: 48px;\n outline: none;\n display: block;\n margin: 0px auto;\n}\n\ndiv#headerbox .intro .logo-text {\n font-weight: bold\n}\n\ndiv#headerbox .message {\n font-size: 90%;\n color: #444;\n padding: 10px 0px;\n}\n\ndiv#navbox ul, div#navbox ul {\n padding: 0px;\n margin: 0px;\n}\n\ndiv#navbox div#n-browse {\n margin-top: 20px;\n}\n\ndiv#hintbox p {\n color: #444;\n margin: 0px;\n font-size: 90%;\n}\n\ndiv#credits {\n color: #444;\n margin: 0px;\n font-size: 80%;\n}\n\ninput.search {\n padding: 0;\n font-size: 12px;\n line-height: 12px;\n height: 16px;\n vertical-align: middle;\n}\n\nbutton.search {\n background: url(../image/btn-search.png) 0 0 no-repeat;\n width: 60px;\n height: 23px;\n margin-left: 2px;\n vertical-align: top;\n border: none;\n cursor: pointer;\n text-indent: -99999pt;\n}\n\n/* Search / results */\ndiv#b-content div#searchbox, div#b-content div#tagcloud {\n border: 2px solid #DDD;\n}\n\ndiv#searchresults {\n padding-top: 10px;\n\tbackground-color: #FFF;\n\tborder: 1px solid #DDD;\n\tborder-width: 0px 1px;\n}\n\ndiv#s-query-box {\n border: 1px solid #CCC;\n -moz-border-radius-topleft: 8px;\n -moz-border-radius-topright: 8px;\n -moz-border-radius-bottomright: 0px;\n -moz-border-radius-bottomleft: 0px;\n padding: 12px 16px;\n background-color: #E5EDFB;\n}\n\ndiv#s-hints-toggle {\n font-size: 90%;\n display: block;\n float: right;\n}\n\nul#s-hints {\n margin: 4px 0px;\n padding: 0px;\n font-size: 90%;\n}\n\nul#s-hints li {\n margin: 0px;\n padding: 0px;\n color: #444;\n}\n\ndiv.s-result {\n clear: both;\n\tbackground-color: #FFF;\n} .p-menu {\n padding: 0pt 0pt 10px 10px;\n margin-top: -7px;\n color: rgb(153, 153, 153);\n clear: left;\n} .p-menu a, .p-menu span {\n border-right: 1px solid rgb(221, 221, 221);\n margin: 0pt 7px 0pt 0pt;\n font-size: 85%;\n font-weight: bold;\n padding-right: 7px;\n -moz-user-select: none;\n} .p-menu-side {\n float: right;\n} .p-menu-side a {\n border-right: medium none;\n} .p-menu form {\n display: inline;\n} .p-message, .p-permalink-message {\n padding: 5px 10px;\n background: rgb(16, 92, 190) none repeat scroll 0% 0%;\n margin-bottom: 3px;\n color: rgb(164, 190, 223);\n font-size: 85%;\n -moz-border-radius-topleft: 4px;\n -moz-border-radius-topright: 4px;\n -moz-border-radius-bottomright: 4px;\n -moz-border-radius-bottomleft: 4px;\n} .p-message a, .p-permalink-message a {\n font-weight: bold;\n color: rgb(255, 255, 255);\n} .p-message a:hover, .p-permalink-message a:hover {\n color: rgb(164, 190, 223) ! important;\n} .s-result ul, .s-result li {\n margin: 0pt;\n padding: 0pt;\n list-style-type: none;\n list-style-image: none;\n list-style-position: outside;\n min-height: 23px;\n} #p-main li {\n border-bottom: 1px solid #E0E0E0;\n padding: 8px 0pt 12px 24px;\n overflow: hidden;\n position: relative;\n min-height: 50px;\n}#p-main li.l0:hover {\n background-color: #F4F4F4;\n} .s-result li.p-foot {\n padding-left: 0pt;\n padding-bottom: 10px;\n} .s-result li.p-foot a strong {\n font-weight: bold;\n} .s-result li ul {\n background: rgb(255, 255, 255) none repeat scroll 0% 0%;\n display: none;\n margin-left: -150px;\n margin-bottom: -10px;\n padding-left: 50px;\n margin-top: 5px;\n} .s-result a, .p-menu a {\n text-decoration: none;\n} .s-result a:hover {\n color: rgb(0, 0, 0);\n text-decoration: underline;\n} .p-head {\n overflow: hidden;\n position: absolute;\n right: 10px;\n top: 10px;\n font-size: 85%;\n border: 1px solid #CCC;\n text-align: center;\n padding: 2px;\n\tmin-width: 90px;\n background-color: #F0F0F0;\n -moz-border-radius-topleft: 4px;\n -moz-border-radius-topright: 4px;\n -moz-border-radius-bottomleft: 4px;\n -moz-border-radius-bottomright: 4px;\n} .p-head .p-icon {\n background: url('../image/16x16/Download.png') 50% 50% no-repeat;\n height: 24px;\n width: 100%;\n display: block;\n} * html .p-head {\n overflow: visible;\n} .p-head a {\n color: rgb(119, 119, 119);\n line-height: 1.2em;\n} .p-head strong a {\n color: rgb(51, 51, 51);\n} .p-head img {\n border: none;\n} .p-disabled .p-head {\n top: 2px;\n padding-top: 5px;\n min-height: 20px;\n opacity: 0.5;\n} .p-disabled div, .p-disabled-open {\n font-size: 85%;\n color: rgb(153, 153, 153);\n padding-top: 2px;\n} .p-disabled-open {\n padding-top: 0pt;\n margin-top: -2px;\n}\n\na.p-show, a.p-report {\n text-decoration: underline;\n color: rgb(153, 153, 153);\n margin-right: 1.5em;\n}\n\na.p-show {\n color: rgb(119, 119, 119);\n}\n\nli .p-block {\n color: rgb(153, 0, 0);\n font-size: 90%;\n font-weight: bold;\n} .p-packets {\n padding: 0pt 10px 4px 15px;\n float: right;\n font-size: 85%;\n min-width: 90px;\n text-align: right;\n} .p-packets a em, .p-packets em {\n color: rgb(51, 51, 51);\n font-weight: bold;\n font-style: normal;\n} .p-packets a {\n color: rgb(51, 51, 51);\n} .p-packets div {\n position: absolute;\n right: -70px;\n top: -3px;\n} .p-packets div span, .p-packets div em {\n border: 1px solid rgb(195, 224, 181);\n margin: 2px;\n padding: 1px;\n display: block;\n width: 4.5em;\n text-align: center;\n color: rgb(40, 83, 18);\n font-weight: bold;\n} .p-packets div span {\n border-color: rgb(218, 179, 179);\n color: rgb(117, 18, 18);\n} .p-packets img {\n cursor: pointer;\n vertical-align: middle;\n} .p-packets img.p-disabled {\n cursor: default;\n} .p-packets .p-low {\n color: rgb(153, 153, 153);\n} .p-body {\n padding-bottom: 2px;\n padding-right: 10px;\n} .p-body a {\n overflow: hidden;\n color: #105892;\n text-decoration: underline;\n white-space: nowrap;\n font-size: 125%;\n} .p-body div {\n color: #444;\n padding: 4px 0px 0px 0px;\n} .p-body div a {\n color: #444;\n text-decoration: none;\n display: inline;\n}\n\ndiv.p-parent {\n font-size: 85%;\n}\n\ndiv.p-box {\n padding: 0pt 10px;\n text-align: right;\n font-size: 85%;\n margin-bottom: -12px;\n position: relative;\n bottom: 2px;\n}\n\na.p-box, a.p-box:hover {\n color: rgb(119, 119, 119);\n font-size: 85%;\n text-decoration: none;\n position: relative;\n bottom: 6px;\n}\n\na.p-box em {\n background: transparent url('../image/collapsed.gif') no-repeat scroll 0px 50%;\n font-style: normal;\n color: rgb(16, 92, 182);\n padding-left: 16px;\n margin-left: 0pt;\n}\n\na.p-open em {\n background: transparent url('../image/expanded.gif') no-repeat scroll 0pt 50%;\n}\n\na.p-box strong {\n font-weight: normal;\n color: rgb(16, 92, 182);\n margin-left: 10px;\n}\n\na.p-box:hover em, a.p-box:hover strong {\n text-decoration: underline;\n}\n\ndiv#searchresults li.p-overflow {\n border-top: 1px solid #CCC;\n padding: 0pt;\n background: #E5EDFB url('../image/p-expand.gif') no-repeat scroll 100% 50%;\n} .s-result .p-overflow div {\n padding: 8px;\n background: transparent url('../image/p-expand.gif') no-repeat scroll 0pt 50%;\n font-weight: bold;\n display: block;\n text-align: center;\n}\n\ndiv#searchresults .p-overflow img {\n display: none;\n vertical-align: middle;\n}\n\ndiv#searchresults .p-side {\n float: right;\n padding-right: 10px;\n}\n\nli.p-disabled, li.p-disabled-open {\n background: rgb(246, 246, 246) none repeat scroll 0% 0%;\n padding-top: 4px;\n padding-bottom: 1px;\n color: rgb(119, 119, 119);\n}\n\nli.p-action-main {\n padding: 20px 10px;\n}\n\nli.p-action-main input {\n font-size: 100%;\n}\n\nli.p-action-main h3 {\n font-size: 100%;\n font-weight: bold;\n padding-left: 2px;\n color: rgb(51, 51, 51);\n}\n\nli.p-action-main h3 span {\n font-weight: normal;\n color: rgb(119, 119, 119);\n} .s-result form {\n margin: 3px 0pt 10px;\n} .s-result form a {\n font-size: 85%;\n margin-left: 10px;\n} .s-result .p-note {\n margin: 0pt 0pt 3px;\n padding: 3px 5px 3px 24px;\n background: transparent url('p-time.gif') no-repeat scroll 5px 50%;\n color: rgb(85, 85, 85);\n font-size: 85%;\n}\n\n/* tabs */\ndiv#searchresults ul.tab li {\n padding: 2px;\n}\n\nul.tab {\n border-bottom: solid 1px #DEDEDE;\n height: 29px;\n padding-left: 20px;\n\tmargin: 0px;\n}\n\nul.tab li {\n float: left;\n margin-right: 2px;\n} .tab a:link, .tab a:visited {\n background: url(../image/tab-round.png) right 60px;\n color: #666666;\n display: block;\n font-weight: bold;\n height: 30px;\n line-height: 30px;\n text-decoration: none;\n} .tab a span {\n background: url(../image/tab-round.png) left 60px;\n display: block;\n height: 30px;\n margin-right: 14px;\n padding-left: 14px;\n} .tab a:hover {\n background-position: right 30px;\n display: block;\n} .tab a:hover span {\n background-position: left 30px;\n display: block;\n}.tab .active a:link, .tab .active a:visited, .tab .active a:visited, .tab .active a:hover {\n background-position: right 0;\n} .tab .active a span, .tab .active a:hover span {\n background: url(../image/tab-round.png) left 0 no-repeat;\n}\n\na.p-action-link {\n padding: 0px 0px 0px 20px;\n line-height: 18px;\n padding-bottom: 4px;\n opacity: 0.6;\n} .p-action-link:hover {\n opacity: 1.0;\n} #p-main .p-action-link {\n margin-right: 8px;\n} #p-main a.user16 {\n margin-left: 16px;\n margin-right: 0px;\n} .p-date {\n color: #888;\n} .p-protos a {\n padding: 2px;\n} .p-tags a {\n\tpadding: 2px;\n} .p-actions {\n margin-top: 4px;\n}\n\n/* log-in */\ndiv.account {\n width: 25em;\n padding: 24px 50px 20px 50px;\n margin: 100px auto 0px auto;\n background-image: url(../image/beta.png);\n background-repeat: no-repeat;\n}\n\ndiv.account div#l-form {\n\t padding: 0px 50px;\n}\n\ndiv.account input[type=\"text\"], div.account input[type=\"password\"] {\n width: 179px;\n}\n\nspan#logo {\n background: transparent url('../image/pcapr-logo.png') no-repeat scroll 0pt 0pt;\n text-indent: -9999px;\n width: 63px;\n height: 21px;\n display: block;\n}\n\ndiv#l-header {\n margin-bottom: 16px;\n}\n\nspan.throbber {\n\tbackground: transparent url('../image/throbber.gif') no-repeat scroll 0pt 0pt;\n\tpadding-left: 20px;\n}\n\n/* icons */\na.download16 {\n background: url(../image/16x16/Download.png) left 0 no-repeat;\n}\n\na.zoom16 {\n background: url('../image/16x16/Full Size.png') left 0 no-repeat;\n}\n\na.user16 {\n background: url('../image/16x16/User.png') left 0 no-repeat;\n}\n\na.phone48 {\n background: url('../image/48x48/Phone.png') left 0 no-repeat;\n}\n\na.video48 {\n background: url('../image/48x48/Video.png') left 0 no-repeat;\n}\n\na.extern {\n\tbackground: url('../image/crosslink.png') no-repeat; \n\tpadding-left: 14px;\n}\n\nimg.icon {\n\tborder: none;\n\tvertical-align: middle;\n\twidth: 14px;\n\tpadding-right: 2px;\n}\n"
},
"cookies": [],
"headers": [
{
"name": "accept-ranges",
"value": "bytes"
},
{
"name": "cache-control",
"value": "public, max-age=180"
},
{
"name": "content-length",
"value": "26689"
},
{
"name": "content-type",
"value": "text/css"
},
{
"name": "date",
"value": "Tue, 28 Dec 2010 03:11:20 GMT"
},
{
"name": "etag",
"value": "\"67//trunk/style/page.css\""
},
{
"name": "expires",
"value": "Tue, 28 Dec 2010 03:14:20 GMT"
},
{
"name": "last-modified",
"value": "Mon, 13 Sep 2010 12:19:05 GMT"
},
{
"name": "server",
"value": "Apache"
}
],
"headersSize": -1,
"httpVersion": "HTTP/1.1",
"redirectURL": "",
"status": 200,
"statusText": "OK"
},
"startedDateTime": "2010-12-28T03:11:23.013199Z",
"time": 1278,
"timings": {
"blocked": -1,
"connect": 81,
"dns": 91,
"receive": 942,
"send": 0,
"wait": 254
}
},
{
"cache": {},
"pageref": "page_1",
"request": {
"bodySize": 0,
"cookies": [],
"headers": [
{
"name": "accept",
"value": "*/*"
},
{
"name": "accept-charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "accept-encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "accept-language",
"value": "en-US,en;q=0.8"
},
{
"name": "connection",
"value": "keep-alive"
},
{
"name": "host",
"value": "pcapr.googlecode.com"
},
{
"name": "referer",
"value": "http://pcapr.net/home"
},
{
"name": "user-agent",
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10"
}
],
"headersSize": -1,
"httpVersion": "HTTP/1.1",
"method": "GET",
"queryString": [],
"url": "http://pcapr.googlecode.com/svn/trunk/script/jquery.form.js"
},
"response": {
"bodySize": 23288,
"content": {
"compression": 0,
"mimeType": "text/plain",
"size": 23288,
"text": "/*\r\n * jQuery Form Plugin\r\n * version: 2.28 (10-MAY-2009)\r\n * @requires jQuery v1.2.2 or later\r\n *\r\n * Examples and documentation at: http://malsup.com/jquery/form/\r\n * Dual licensed under the MIT and GPL licenses:\r\n * http://www.opensource.org/licenses/mit-license.php\r\n * http://www.gnu.org/licenses/gpl.html\r\n */\r\n;(function($) {\r\n\r\n/*\r\n Usage Note:\r\n -----------\r\n Do not use both ajaxSubmit and ajaxForm on the same form. These\r\n functions are intended to be exclusive. Use ajaxSubmit if you want\r\n to bind your own submit handler to the form. For example,\r\n\r\n $(document).ready(function() {\r\n $('#myForm').bind('submit', function() {\r\n $(this).ajaxSubmit({\r\n target: '#output'\r\n });\r\n return false; // <-- important!\r\n });\r\n });\r\n\r\n Use ajaxForm when you want the plugin to manage all the event binding\r\n for you. For example,\r\n\r\n $(document).ready(function() {\r\n $('#myForm').ajaxForm({\r\n target: '#output'\r\n });\r\n });\r\n\r\n When using ajaxForm, the ajaxSubmit function will be invoked for you\r\n at the appropriate time.\r\n*/\r\n\r\n/**\r\n * ajaxSubmit() provides a mechanism for immediately submitting\r\n * an HTML form using AJAX.\r\n */\r\n$.fn.ajaxSubmit = function(options) {\r\n // fast fail if nothing selected (http://dev.jquery.com/ticket/2752)\r\n if (!this.length) {\r\n log('ajaxSubmit: skipping submit process - no element selected');\r\n return this;\r\n }\r\n\r\n if (typeof options == 'function')\r\n options = { success: options };\r\n\r\n var url = $.trim(this.attr('action'));\r\n if (url) {\r\n\t // clean url (don't include hash vaue)\r\n\t url = (url.match(/^([^#]+)/)||[])[1];\r\n \t}\r\n \turl = url || window.location.href || ''\r\n\r\n options = $.extend({\r\n url: url,\r\n type: this.attr('method') || 'GET'\r\n }, options || {});\r\n\r\n // hook for manipulating the form data before it is extracted;\r\n // convenient for use with rich editors like tinyMCE or FCKEditor\r\n var veto = {};\r\n this.trigger('form-pre-serialize', [this, options, veto]);\r\n if (veto.veto) {\r\n log('ajaxSubmit: submit vetoed via form-pre-serialize trigger');\r\n return this;\r\n }\r\n\r\n // provide opportunity to alter form data before it is serialized\r\n if (options.beforeSerialize && options.beforeSerialize(this, options) === false) {\r\n log('ajaxSubmit: submit aborted via beforeSerialize callback');\r\n return this;\r\n }\r\n\r\n var a = this.formToArray(options.semantic);\r\n if (options.data) {\r\n options.extraData = options.data;\r\n for (var n in options.data) {\r\n if(options.data[n] instanceof Array) {\r\n for (var k in options.data[n])\r\n a.push( { name: n, value: options.data[n][k] } );\r\n }\r\n else\r\n a.push( { name: n, value: options.data[n] } );\r\n }\r\n }\r\n\r\n // give pre-submit callback an opportunity to abort the submit\r\n if (options.beforeSubmit && options.beforeSubmit(a, this, options) === false) {\r\n log('ajaxSubmit: submit aborted via beforeSubmit callback');\r\n return this;\r\n }\r\n\r\n // fire vetoable 'validate' event\r\n this.trigger('form-submit-validate', [a, this, options, veto]);\r\n if (veto.veto) {\r\n log('ajaxSubmit: submit vetoed via form-submit-validate trigger');\r\n return this;\r\n }\r\n\r\n var q = $.param(a);\r\n\r\n if (options.type.toUpperCase() == 'GET') {\r\n options.url += (options.url.indexOf('?') >= 0 ? '&' : '?') + q;\r\n options.data = null; // data is null for 'get'\r\n }\r\n else\r\n options.data = q; // data is the query string for 'post'\r\n\r\n var $form = this, callbacks = [];\r\n if (options.resetForm) callbacks.push(function() { $form.resetForm(); });\r\n if (options.clearForm) callbacks.push(function() { $form.clearForm(); });\r\n\r\n // perform a load on the target only if dataType is not provided\r\n if (!options.dataType && options.target) {\r\n var oldSuccess = options.success || function(){};\r\n callbacks.push(function(data) {\r\n $(options.target).html(data).each(oldSuccess, arguments);\r\n });\r\n }\r\n else if (options.success)\r\n callbacks.push(options.success);\r\n\r\n options.success = function(data, status) {\r\n for (var i=0, max=callbacks.length; i < max; i++)\r\n callbacks[i].apply(options, [data, status, $form]);\r\n };\r\n\r\n // are there files to upload?\r\n var files = $('input:file', this).fieldValue();\r\n var found = false;\r\n for (var j=0; j < files.length; j++)\r\n if (files[j])\r\n found = true;\r\n\r\n\tvar multipart = false;\r\n//\tvar mp = 'multipart/form-data';\r\n//\tmultipart = ($form.attr('enctype') == mp || $form.attr('encoding') == mp);\r\n\r\n // options.iframe allows user to force iframe mode\r\n if (options.iframe || found || multipart) {\r\n // hack to fix Safari hang (thanks to Tim Molendijk for this)\r\n // see: http://groups.google.com/group/jquery-dev/browse_thread/thread/36395b7ab510dd5d\r\n if (options.closeKeepAlive)\r\n $.get(options.closeKeepAlive, fileUpload);\r\n else\r\n fileUpload();\r\n }\r\n else\r\n $.ajax(options);\r\n\r\n // fire 'notify' event\r\n this.trigger('form-submit-notify', [this, options]);\r\n return this;\r\n\r\n\r\n // private function for handling file uploads (hat tip to YAHOO!)\r\n function fileUpload() {\r\n var form = $form[0];\r\n\r\n if ($(':input[name=submit]', form).length) {\r\n alert('Error: Form elements must not be named \"submit\".');\r\n return;\r\n }\r\n\r\n var opts = $.extend({}, $.ajaxSettings, options);\r\n\t\tvar s = $.extend(true, {}, $.extend(true, {}, $.ajaxSettings), opts);\r\n\r\n var id = 'jqFormIO' + (new Date().getTime());\r\n var $io = $('<iframe id=\"' + id + '\" name=\"' + id + '\" src=\"about:blank\" />');\r\n var io = $io[0];\r\n\r\n $io.css({ position: 'absolute', top: '-1000px', left: '-1000px' });\r\n\r\n var xhr = { // mock object\r\n aborted: 0,\r\n responseText: null,\r\n responseXML: null,\r\n status: 0,\r\n statusText: 'n/a',\r\n getAllResponseHeaders: function() {},\r\n getResponseHeader: function() {},\r\n setRequestHeader: function() {},\r\n abort: function() {\r\n this.aborted = 1;\r\n $io.attr('src','about:blank'); // abort op in progress\r\n }\r\n };\r\n\r\n var g = opts.global;\r\n // trigger ajax global events so that activity/block indicators work like normal\r\n if (g && ! $.active++) $.event.trigger(\"ajaxStart\");\r\n if (g) $.event.trigger(\"ajaxSend\", [xhr, opts]);\r\n\r\n\t\tif (s.beforeSend && s.beforeSend(xhr, s) === false) {\r\n\t\t\ts.global && $.active--;\r\n\t\t\treturn;\r\n }\r\n if (xhr.aborted)\r\n return;\r\n\r\n var cbInvoked = 0;\r\n var timedOut = 0;\r\n\r\n // add submitting element to data if we know it\r\n var sub = form.clk;\r\n if (sub) {\r\n var n = sub.name;\r\n if (n && !sub.disabled) {\r\n options.extraData = options.extraData || {};\r\n options.extraData[n] = sub.value;\r\n if (sub.type == \"image\") {\r\n options.extraData[name+'.x'] = form.clk_x;\r\n options.extraData[name+'.y'] = form.clk_y;\r\n }\r\n }\r\n }\r\n\r\n // take a breath so that pending repaints get some cpu time before the upload starts\r\n setTimeout(function() {\r\n // make sure form attrs are set\r\n var t = $form.attr('target'), a = $form.attr('action');\r\n\r\n\t\t\t// update form attrs in IE friendly way\r\n\t\t\tform.setAttribute('target',id);\r\n\t\t\tif (form.getAttribute('method') != 'POST')\r\n\t\t\t\tform.setAttribute('method', 'POST');\r\n\t\t\tif (form.getAttribute('action') != opts.url)\r\n\t\t\t\tform.setAttribute('action', opts.url);\r\n\r\n // ie borks in some cases when setting encoding\r\n if (! options.skipEncodingOverride) {\r\n $form.attr({\r\n encoding: 'multipart/form-data',\r\n enctype: 'multipart/form-data'\r\n });\r\n }\r\n\r\n // support timout\r\n if (opts.timeout)\r\n setTimeout(function() { timedOut = true; cb(); }, opts.timeout);\r\n\r\n // add \"extra\" data to form if provided in options\r\n var extraInputs = [];\r\n try {\r\n if (options.extraData)\r\n for (var n in options.extraData)\r\n extraInputs.push(\r\n $('<input type=\"hidden\" name=\"'+n+'\" value=\"'+options.extraData[n]+'\" />')\r\n .appendTo(form)[0]);\r\n\r\n // add iframe to doc and submit the form\r\n $io.appendTo('body');\r\n io.attachEvent ? io.attachEvent('onload', cb) : io.addEventListener('load', cb, false);\r\n form.submit();\r\n }\r\n finally {\r\n // reset attrs and remove \"extra\" input elements\r\n\t\t\t\tform.setAttribute('action',a);\r\n t ? form.setAttribute('target', t) : $form.removeAttr('target');\r\n $(extraInputs).remove();\r\n }\r\n }, 10);\r\n\r\n var nullCheckFlag = 0;\r\n\r\n function cb() {\r\n if (cbInvoked++) return;\r\n\r\n io.detachEvent ? io.detachEvent('onload', cb) : io.removeEventListener('load', cb, false);\r\n\r\n var ok = true;\r\n try {\r\n if (timedOut) throw 'timeout';\r\n // extract the server response from the iframe\r\n var data, doc;\r\n\r\n doc = io.contentWindow ? io.contentWindow.document : io.contentDocument ? io.contentDocument : io.document;\r\n\r\n if ((doc.body == null || doc.body.innerHTML == '') && !nullCheckFlag) {\r\n // in some browsers (cough, Opera 9.2.x) the iframe DOM is not always traversable when\r\n // the onload callback fires, so we give them a 2nd chance\r\n nullCheckFlag = 1;\r\n cbInvoked--;\r\n setTimeout(cb, 100);\r\n return;\r\n }\r\n\r\n xhr.responseText = doc.body ? doc.body.innerHTML : null;\r\n xhr.responseXML = doc.XMLDocument ? doc.XMLDocument : doc;\r\n xhr.getResponseHeader = function(header){\r\n var headers = {'content-type': opts.dataType};\r\n return headers[header];\r\n };\r\n\r\n if (opts.dataType == 'json' || opts.dataType == 'script') {\r\n var ta = doc.getElementsByTagName('textarea')[0];\r\n xhr.responseText = ta ? ta.value : xhr.responseText;\r\n }\r\n else if (opts.dataType == 'xml' && !xhr.responseXML && xhr.responseText != null) {\r\n xhr.responseXML = toXml(xhr.responseText);\r\n }\r\n data = $.httpData(xhr, opts.dataType);\r\n }\r\n catch(e){\r\n ok = false;\r\n $.handleError(opts, xhr, 'error', e);\r\n }\r\n\r\n // ordering of these callbacks/triggers is odd, but that's how $.ajax does it\r\n if (ok) {\r\n opts.success(data, 'success');\r\n if (g) $.event.trigger(\"ajaxSuccess\", [xhr, opts]);\r\n }\r\n if (g) $.event.trigger(\"ajaxComplete\", [xhr, opts]);\r\n if (g && ! --$.active) $.event.trigger(\"ajaxStop\");\r\n if (opts.complete) opts.complete(xhr, ok ? 'success' : 'error');\r\n\r\n // clean up\r\n setTimeout(function() {\r\n $io.remove();\r\n xhr.responseXML = null;\r\n }, 100);\r\n };\r\n\r\n function toXml(s, doc) {\r\n if (window.ActiveXObject) {\r\n doc = new ActiveXObject('Microsoft.XMLDOM');\r\n doc.async = 'false';\r\n doc.loadXML(s);\r\n }\r\n else\r\n doc = (new DOMParser()).parseFromString(s, 'text/xml');\r\n return (doc && doc.documentElement && doc.documentElement.tagName != 'parsererror') ? doc : null;\r\n };\r\n };\r\n};\r\n\r\n/**\r\n * ajaxForm() provides a mechanism for fully automating form submission.\r\n *\r\n * The advantages of using this method instead of ajaxSubmit() are:\r\n *\r\n * 1: This method will include coordinates for <input type=\"image\" /> elements (if the element\r\n * is used to submit the form).\r\n * 2. This method will include the submit element's name/value data (for the element that was\r\n * used to submit the form).\r\n * 3. This method binds the submit() method to the form for you.\r\n *\r\n * The options argument for ajaxForm works exactly as it does for ajaxSubmit. ajaxForm merely\r\n * passes the options argument along after properly binding events for submit elements and\r\n * the form itself.\r\n */\r\n$.fn.ajaxForm = function(options) {\r\n return this.ajaxFormUnbind().bind('submit.form-plugin',function() {\r\n $(this).ajaxSubmit(options);\r\n return false;\r\n }).each(function() {\r\n // store options in hash\r\n $(\":submit,input:image\", this).bind('click.form-plugin',function(e) {\r\n var form = this.form;\r\n form.clk = this;\r\n if (this.type == 'image') {\r\n if (e.offsetX != undefined) {\r\n form.clk_x = e.offsetX;\r\n form.clk_y = e.offsetY;\r\n } else if (typeof $.fn.offset == 'function') { // try to use dimensions plugin\r\n var offset = $(this).offset();\r\n form.clk_x = e.pageX - offset.left;\r\n form.clk_y = e.pageY - offset.top;\r\n } else {\r\n form.clk_x = e.pageX - this.offsetLeft;\r\n form.clk_y = e.pageY - this.offsetTop;\r\n }\r\n }\r\n // clear form vars\r\n setTimeout(function() { form.clk = form.clk_x = form.clk_y = null; }, 10);\r\n });\r\n });\r\n};\r\n\r\n// ajaxFormUnbind unbinds the event handlers that were bound by ajaxForm\r\n$.fn.ajaxFormUnbind = function() {\r\n this.unbind('submit.form-plugin');\r\n return this.each(function() {\r\n $(\":submit,input:image\", this).unbind('click.form-plugin');\r\n });\r\n\r\n};\r\n\r\n/**\r\n * formToArray() gathers form element data into an array of objects that can\r\n * be passed to any of the following ajax functions: $.get, $.post, or load.\r\n * Each object in the array has both a 'name' and 'value' property. An example of\r\n * an array for a simple login form might be:\r\n *\r\n * [ { name: 'username', value: 'jresig' }, { name: 'password', value: 'secret' } ]\r\n *\r\n * It is this array that is passed to pre-submit callback functions provided to the\r\n * ajaxSubmit() and ajaxForm() methods.\r\n */\r\n$.fn.formToArray = function(semantic) {\r\n var a = [];\r\n if (this.length == 0) return a;\r\n\r\n var form = this[0];\r\n var els = semantic ? form.getElementsByTagName('*') : form.elements;\r\n if (!els) return a;\r\n for(var i=0, max=els.length; i < max; i++) {\r\n var el = els[i];\r\n var n = el.name;\r\n if (!n) continue;\r\n\r\n if (semantic && form.clk && el.type == \"image\") {\r\n // handle image inputs on the fly when semantic == true\r\n if(!el.disabled && form.clk == el) {\r\n \ta.push({name: n, value: $(el).val()});\r\n a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});\r\n }\r\n continue;\r\n }\r\n\r\n var v = $.fieldValue(el, true);\r\n if (v && v.constructor == Array) {\r\n for(var j=0, jmax=v.length; j < jmax; j++)\r\n a.push({name: n, value: v[j]});\r\n }\r\n else if (v !== null && typeof v != 'undefined')\r\n a.push({name: n, value: v});\r\n }\r\n\r\n if (!semantic && form.clk) {\r\n // input type=='image' are not found in elements array! handle it here\r\n var $input = $(form.clk), input = $input[0], n = input.name;\r\n if (n && !input.disabled && input.type == 'image') {\r\n \ta.push({name: n, value: $input.val()});\r\n a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});\r\n }\r\n }\r\n return a;\r\n};\r\n\r\n/**\r\n * Serializes form data into a 'submittable' string. This method will return a string\r\n * in the format: name1=value1&name2=value2\r\n */\r\n$.fn.formSerialize = function(semantic) {\r\n //hand off to jQuery.param for proper encoding\r\n return $.param(this.formToArray(semantic));\r\n};\r\n\r\n/**\r\n * Serializes all field elements in the jQuery object into a query string.\r\n * This method will return a string in the format: name1=value1&name2=value2\r\n */\r\n$.fn.fieldSerialize = function(successful) {\r\n var a = [];\r\n this.each(function() {\r\n var n = this.name;\r\n if (!n) return;\r\n var v = $.fieldValue(this, successful);\r\n if (v && v.constructor == Array) {\r\n for (var i=0,max=v.length; i < max; i++)\r\n a.push({name: n, value: v[i]});\r\n }\r\n else if (v !== null && typeof v != 'undefined')\r\n a.push({name: this.name, value: v});\r\n });\r\n //hand off to jQuery.param for proper encoding\r\n return $.param(a);\r\n};\r\n\r\n/**\r\n * Returns the value(s) of the element in the matched set. For example, consider the following form:\r\n *\r\n * <form><fieldset>\r\n * <input name=\"A\" type=\"text\" />\r\n * <input name=\"A\" type=\"text\" />\r\n * <input name=\"B\" type=\"checkbox\" value=\"B1\" />\r\n * <input name=\"B\" type=\"checkbox\" value=\"B2\"/>\r\n * <input name=\"C\" type=\"radio\" value=\"C1\" />\r\n * <input name=\"C\" type=\"radio\" value=\"C2\" />\r\n * </fieldset></form>\r\n *\r\n * var v = $(':text').fieldValue();\r\n * // if no values are entered into the text inputs\r\n * v == ['','']\r\n * // if values entered into the text inputs are 'foo' and 'bar'\r\n * v == ['foo','bar']\r\n *\r\n * var v = $(':checkbox').fieldValue();\r\n * // if neither checkbox is checked\r\n * v === undefined\r\n * // if both checkboxes are checked\r\n * v == ['B1', 'B2']\r\n *\r\n * var v = $(':radio').fieldValue();\r\n * // if neither radio is checked\r\n * v === undefined\r\n * // if first radio is checked\r\n * v == ['C1']\r\n *\r\n * The successful argument controls whether or not the field element must be 'successful'\r\n * (per http://www.w3.org/TR/html4/interact/forms.html#successful-controls).\r\n * The default value of the successful argument is true. If this value is false the value(s)\r\n * for each element is returned.\r\n *\r\n * Note: This method *always* returns an array. If no valid value can be determined the\r\n * array will be empty, otherwise it will contain one or more values.\r\n */\r\n$.fn.fieldValue = function(successful) {\r\n for (var val=[], i=0, max=this.length; i < max; i++) {\r\n var el = this[i];\r\n var v = $.fieldValue(el, successful);\r\n if (v === null || typeof v == 'undefined' || (v.constructor == Array && !v.length))\r\n continue;\r\n v.constructor == Array ? $.merge(val, v) : val.push(v);\r\n }\r\n return val;\r\n};\r\n\r\n/**\r\n * Returns the value of the field element.\r\n */\r\n$.fieldValue = function(el, successful) {\r\n var n = el.name, t = el.type, tag = el.tagName.toLowerCase();\r\n if (typeof successful == 'undefined') successful = true;\r\n\r\n if (successful && (!n || el.disabled || t == 'reset' || t == 'button' ||\r\n (t == 'checkbox' || t == 'radio') && !el.checked ||\r\n (t == 'submit' || t == 'image') && el.form && el.form.clk != el ||\r\n tag == 'select' && el.selectedIndex == -1))\r\n return null;\r\n\r\n if (tag == 'select') {\r\n var index = el.selectedIndex;\r\n if (index < 0) return null;\r\n var a = [], ops = el.options;\r\n var one = (t == 'select-one');\r\n var max = (one ? index+1 : ops.length);\r\n for(var i=(one ? index : 0); i < max; i++) {\r\n var op = ops[i];\r\n if (op.selected) {\r\n\t\t\t\tvar v = op.value;\r\n\t\t\t\tif (!v) // extra pain for IE...\r\n \tv = (op.attributes && op.attributes['value'] && !(op.attributes['value'].specified)) ? op.text : op.value;\r\n if (one) return v;\r\n a.push(v);\r\n }\r\n }\r\n return a;\r\n }\r\n return el.value;\r\n};\r\n\r\n/**\r\n * Clears the form data. Takes the following actions on the form's input fields:\r\n * - input text fields will have their 'value' property set to the empty string\r\n * - select elements will have their 'selectedIndex' property set to -1\r\n * - checkbox and radio inputs will have their 'checked' property set to false\r\n * - inputs of type submit, button, reset, and hidden will *not* be effected\r\n * - button elements will *not* be effected\r\n */\r\n$.fn.clearForm = function() {\r\n return this.each(function() {\r\n $('input,select,textarea', this).clearFields();\r\n });\r\n};\r\n\r\n/**\r\n * Clears the selected form elements.\r\n */\r\n$.fn.clearFields = $.fn.clearInputs = function() {\r\n return this.each(function() {\r\n var t = this.type, tag = this.tagName.toLowerCase();\r\n if (t == 'text' || t == 'password' || tag == 'textarea')\r\n this.value = '';\r\n else if (t == 'checkbox' || t == 'radio')\r\n this.checked = false;\r\n else if (tag == 'select')\r\n this.selectedIndex = -1;\r\n });\r\n};\r\n\r\n/**\r\n * Resets the form data. Causes all form elements to be reset to their original value.\r\n */\r\n$.fn.resetForm = function() {\r\n return this.each(function() {\r\n // guard against an input with the name of 'reset'\r\n // note that IE reports the reset function as an 'object'\r\n if (typeof this.reset == 'function' || (typeof this.reset == 'object' && !this.reset.nodeType))\r\n this.reset();\r\n });\r\n};\r\n\r\n/**\r\n * Enables or disables any matching elements.\r\n */\r\n$.fn.enable = function(b) {\r\n if (b == undefined) b = true;\r\n return this.each(function() {\r\n this.disabled = !b;\r\n });\r\n};\r\n\r\n/**\r\n * Checks/unchecks any matching checkboxes or radio buttons and\r\n * selects/deselects and matching option elements.\r\n */\r\n$.fn.selected = function(select) {\r\n if (select == undefined) select = true;\r\n return this.each(function() {\r\n var t = this.type;\r\n if (t == 'checkbox' || t == 'radio')\r\n this.checked = select;\r\n else if (this.tagName.toLowerCase() == 'option') {\r\n var $sel = $(this).parent('select');\r\n if (select && $sel[0] && $sel[0].type == 'select-one') {\r\n // deselect all other options\r\n $sel.find('option').selected(false);\r\n }\r\n this.selected = select;\r\n }\r\n });\r\n};\r\n\r\n// helper fn for console logging\r\n// set $.fn.ajaxSubmit.debug to true to enable debug logging\r\nfunction log() {\r\n if ($.fn.ajaxSubmit.debug && window.console && window.console.log)\r\n window.console.log('[jquery.form] ' + Array.prototype.join.call(arguments,''));\r\n};\r\n\r\n})(jQuery);\r\n"
},
"cookies": [],
"headers": [
{
"name": "accept-ranges",
"value": "bytes"
},
{
"name": "cache-control",
"value": "public, max-age=180"
},
{
"name": "content-length",
"value": "23288"
},
{
"name": "content-type",
"value": "text/plain"
},
{
"name": "date",
"value": "Tue, 28 Dec 2010 03:11:20 GMT"
},
{
"name": "etag",
"value": "\"13//trunk/script/jquery.form.js\""
},
{
"name": "expires",
"value": "Tue, 28 Dec 2010 03:14:20 GMT"
},
{
"name": "last-modified",
"value": "Wed, 12 Aug 2009 01:00:57 GMT"
},
{
"name": "server",
"value": "Apache"
}
],
"headersSize": -1,
"httpVersion": "HTTP/1.1",
"redirectURL": "",
"status": 200,
"statusText": "OK"
},
"startedDateTime": "2010-12-28T03:11:23.013571Z",
"time": 1262,
"timings": {
"blocked": -1,
"connect": 83,
"dns": -1,
"receive": 871,
"send": 0,
"wait": 306
}
},
{
"cache": {},
"pageref": "page_1",
"request": {
"bodySize": 0,
"cookies": [],
"headers": [
{
"name": "accept",
"value": "*/*"
},
{
"name": "accept-charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "accept-encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "accept-language",
"value": "en-US,en;q=0.8"
},
{
"name": "connection",
"value": "keep-alive"
},
{
"name": "host",
"value": "pcapr.googlecode.com"
},
{
"name": "referer",
"value": "http://pcapr.net/home"
},
{
"name": "user-agent",
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10"
}
],
"headersSize": -1,
"httpVersion": "HTTP/1.1",
"method": "GET",
"queryString": [],
"url": "http://pcapr.googlecode.com/svn/trunk/script/jquery.dimensions.js"
},
"response": {
"bodySize": 10040,
"content": {
"compression": 0,
"mimeType": "text/plain",
"size": 10040,
"text": "/** \n * This plugin overrides jQuery's height() and width() functions and\n * adds more handy stuff for cross-browser compatibility.\n */\n\n/**\n * Returns the css height value for the first matched element.\n * If used on document, returns the document's height (innerHeight)\n * If used on window, returns the viewport's (window) height\n *\n * @example $(\"#testdiv\").height()\n * @result \"200px\"\n *\n * @example $(document).height();\n * @result 800\n *\n * @example $(window).height();\n * @result 400\n * \n * @name height\n * @type Object\n * @cat Plugins/Dimensions\n */\njQuery.fn.height = function() {\n\tif ( this.get(0) == window )\n\t\treturn self.innerHeight ||\n\t\t\tjQuery.boxModel && document.documentElement.clientHeight ||\n\t\t\tdocument.body.clientHeight;\n\tif ( this.get(0) == document )\n\t\treturn Math.max( document.body.scrollHeight, document.body.offsetHeight );\n\t\n\treturn this.css(\"height\", arguments[0]);\n};\n\n/**\n * Returns the css width value for the first matched element.\n * If used on document, returns the document's width (innerWidth)\n * If used on window, returns the viewport's (window) width\n *\n * @example $(\"#testdiv\").width()\n * @result \"200px\"\n *\n * @example $(document).width();\n * @result 800\n *\n * @example $(window).width();\n * @result 400\n * \n * @name width\n * @type Object\n * @cat Plugins/Dimensions\n */\njQuery.fn.width = function() {\n\tif ( this.get(0) == window )\n\t\treturn self.innerWidth ||\n\t\t\tjQuery.boxModel && document.documentElement.clientWidth ||\n\t\t\tdocument.body.clientWidth;\n\t\n\tif ( this.get(0) == document )\n\t\treturn Math.max( document.body.scrollWidth, document.body.offsetWidth );\n\t\n\treturn this.css(\"width\", arguments[0]);\n};\n\n/**\n * Returns the inner height value (without border) for the first matched element.\n * If used on document, returns the document's height (innerHeight)\n * If used on window, returns the viewport's (window) height\n *\n * @example $(\"#testdiv\").innerHeight()\n * @result 800\n * \n * @name innerHeight\n * @type Number\n * @cat Plugins/Dimensions\n */\njQuery.fn.innerHeight = function() {\n\treturn this.get(0) == window || this.get(0) == document ?\n\t\tthis.height() :\n\t\tthis.get(0).offsetHeight - parseInt(this.css(\"borderTop\") || 0) - parseInt(this.css(\"borderBottom\") || 0);\n};\n\n/**\n * Returns the inner width value (without border) for the first matched element.\n * If used on document, returns the document's Width (innerWidth)\n * If used on window, returns the viewport's (window) width\n *\n * @example $(\"#testdiv\").innerWidth()\n * @result 1000\n * \n * @name innerWidth\n * @type Number\n * @cat Plugins/Dimensions\n */\njQuery.fn.innerWidth = function() {\n\treturn this.get(0) == window || this.get(0) == document ?\n\t\tthis.width() :\n\t\tthis.get(0).offsetWidth - parseInt(this.css(\"borderLeft\") || 0) - parseInt(this.css(\"borderRight\") || 0);\n};\n\n/**\n * Returns the outer height value (including border) for the first matched element.\n * Cannot be used on document or window.\n *\n * @example $(\"#testdiv\").outerHeight()\n * @result 1000\n * \n * @name outerHeight\n * @type Number\n * @cat Plugins/Dimensions\n */\njQuery.fn.outerHeight = function() {\n\treturn this.get(0) == window || this.get(0) == document ?\n\t\tthis.height() :\n\t\tthis.get(0).offsetHeight;\t\n};\n\n/**\n * Returns the outer width value (including border) for the first matched element.\n * Cannot be used on document or window.\n *\n * @example $(\"#testdiv\").outerWidth()\n * @result 1000\n * \n * @name outerWidth\n * @type Number\n * @cat Plugins/Dimensions\n */\njQuery.fn.outerWidth = function() {\n\treturn this.get(0) == window || this.get(0) == document ?\n\t\tthis.width() :\n\t\tthis.get(0).offsetWidth;\t\n};\n\n/**\n * Returns how many pixels the user has scrolled to the right (scrollLeft).\n * Works on containers with overflow: auto and window/document.\n *\n * @example $(\"#testdiv\").scrollLeft()\n * @result 100\n * \n * @name scrollLeft\n * @type Number\n * @cat Plugins/Dimensions\n */\njQuery.fn.scrollLeft = function() {\n\tif ( this.get(0) == window || this.get(0) == document )\n\t\treturn self.pageXOffset ||\n\t\t\tjQuery.boxModel && document.documentElement.scrollLeft ||\n\t\t\tdocument.body.scrollLeft;\n\t\n\treturn this.get(0).scrollLeft;\n};\n\n/**\n * Returns how many pixels the user has scrolled to the bottom (scrollTop).\n * Works on containers with overflow: auto and window/document.\n *\n * @example $(\"#testdiv\").scrollTop()\n * @result 100\n * \n * @name scrollTop\n * @type Number\n * @cat Plugins/Dimensions\n */\njQuery.fn.scrollTop = function() {\n\tif ( this.get(0) == window || this.get(0) == document )\n\t\treturn self.pageYOffset ||\n\t\t\tjQuery.boxModel && document.documentElement.scrollTop ||\n\t\t\tdocument.body.scrollTop;\n\n\treturn this.get(0).scrollTop;\n};\n\n/**\n * This returns an object with top, left, width, height, borderLeft,\n * borderTop, marginLeft, marginTop, scrollLeft, scrollTop, \n * pageXOffset, pageYOffset.\n *\n * The top and left values include the scroll offsets but the\n * scrollLeft and scrollTop properties of the returned object\n * are the combined scroll offets of the parent elements \n * (not including the window scroll offsets). This is not the\n * same as the element's scrollTop and scrollLeft.\n * \n * For accurate readings make sure to use pixel values.\n *\n * @name offset\t\n * @type Object\n * @cat Plugins/Dimensions\n * @author Brandon Aaron ([email protected] || http://brandonaaron.net)\n */\n/**\n * This returns an object with top, left, width, height, borderLeft,\n * borderTop, marginLeft, marginTop, scrollLeft, scrollTop, \n * pageXOffset, pageYOffset.\n *\n * The top and left values include the scroll offsets but the\n * scrollLeft and scrollTop properties of the returned object\n * are the combined scroll offets of the parent elements \n * (not including the window scroll offsets). This is not the\n * same as the element's scrollTop and scrollLeft.\n * \n * For accurate readings make sure to use pixel values.\n *\n * @name offset\t\n * @type Object\n * @param String refElement This is an expression. The offset returned will be relative to the first matched element.\n * @cat Plugins/Dimensions\n * @author Brandon Aaron ([email protected] || http://brandonaaron.net)\n */\n/**\n * This returns an object with top, left, width, height, borderLeft,\n * borderTop, marginLeft, marginTop, scrollLeft, scrollTop, \n * pageXOffset, pageYOffset.\n *\n * The top and left values include the scroll offsets but the\n * scrollLeft and scrollTop properties of the returned object\n * are the combined scroll offets of the parent elements \n * (not including the window scroll offsets). This is not the\n * same as the element's scrollTop and scrollLeft.\n * \n * For accurate readings make sure to use pixel values.\n *\n * @name offset\t\n * @type Object\n * @param jQuery refElement The offset returned will be relative to the first matched element.\n * @cat Plugins/Dimensions\n * @author Brandon Aaron ([email protected] || http://brandonaaron.net)\n */\n/**\n * This returns an object with top, left, width, height, borderLeft,\n * borderTop, marginLeft, marginTop, scrollLeft, scrollTop, \n * pageXOffset, pageYOffset.\n *\n * The top and left values include the scroll offsets but the\n * scrollLeft and scrollTop properties of the returned object\n * are the combined scroll offets of the parent elements \n * (not including the window scroll offsets). This is not the\n * same as the element's scrollTop and scrollLeft.\n * \n * For accurate readings make sure to use pixel values.\n *\n * @name offset\t\n * @type Object\n * @param HTMLElement refElement The offset returned will be relative to this element.\n * @cat Plugins/Dimensions\n * @author Brandon Aaron ([email protected] || http://brandonaaron.net)\n */\njQuery.fn.offset = function(refElem) {\n\tif (!this[0]) throw 'jQuery.fn.offset requires an element.';\n\n\trefElem = (refElem) ? jQuery(refElem)[0] : null;\n\tvar x = 0, y = 0, elem = this[0], parent = this[0], sl = 0, st = 0;\n\tdo {\n\t\tif (parent.tagName == 'BODY' || parent.tagName == 'HTML') {\n\t\t\t// Safari and IE don't add margin for static and relative\n\t\t\tif ((jQuery.browser.safari || jQuery.browser.msie) && jQuery.css(parent, 'position') != 'absolute') {\n\t\t\t\tx += parseInt(jQuery.css(parent, 'marginLeft')) || 0;\n\t\t\t\ty += parseInt(jQuery.css(parent, 'marginTop')) || 0;\n\t\t\t}\n\t\t\tbreak;\n\t\t}\n\n\t\tx += parent.offsetLeft || 0;\n\t\ty += parent.offsetTop || 0;\n\n\t\t// Mozilla and IE do not add the border\n\t\tif (jQuery.browser.mozilla || jQuery.browser.msie) {\n\t\t\tx += parseInt(jQuery.css(parent, 'borderLeftWidth')) || 0;\n\t\t\ty += parseInt(jQuery.css(parent, 'borderTopWidth')) || 0;\n\t\t}\n\n\t\t// Mozilla removes the border if the parent has overflow hidden\n\t\tif (jQuery.browser.mozilla && jQuery.css(parent, 'overflow') == 'hidden') {\n\t\t\tx += parseInt(jQuery.css(parent, 'borderLeftWidth')) || 0;\n\t\t\ty += parseInt(jQuery.css(parent, 'borderTopWidth')) || 0;\n\t\t}\n\n\t\t// Need to get scroll offsets in-between offsetParents\n\t\tvar op = parent.offsetParent;\n\t\tdo {\n\t\t\tsl += parent.scrollLeft || 0;\n\t\t\tst += parent.scrollTop || 0;\n\t\t\tparent = parent.parentNode;\n\t\t} while (parent != op);\n\t} while (parent);\n\n\tif (refElem) { // Get the relative offset\n\t\tvar offset = jQuery(refElem).offset();\n\t\tx = x - offset.left;\n\t\ty = y - offset.top;\n\t\tsl = sl - offset.scrollLeft;\n\t\tst = st - offset.scrollTop;\n\t}\n\n\t// Safari and Opera do not add the border for the element\n\tif (jQuery.browser.safari || jQuery.browser.opera) {\n\t\tx += parseInt(jQuery.css(elem, 'borderLeftWidth')) || 0;\n\t\ty += parseInt(jQuery.css(elem, 'borderTopWidth')) || 0;\n\t}\n\n\treturn {\n\t\ttop: y - st,\n\t\tleft: x - sl,\n\t\twidth: elem.offsetWidth,\n\t\theight: elem.offsetHeight,\n\t\tborderTop: parseInt(jQuery.css(elem, 'borderTopWidth')) || 0,\n\t\tborderLeft: parseInt(jQuery.css(elem, 'borderLeftWidth')) || 0,\n\t\tmarginTop: parseInt(jQuery.css(elem, 'marginTopWidth')) || 0,\n\t\tmarginLeft: parseInt(jQuery.css(elem, 'marginLeftWidth')) || 0,\n\t\tscrollTop: st,\n\t\tscrollLeft: sl,\n\t\tpageYOffset: window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0,\n\t\tpageXOffset: window.pageXOffset || document.documentElement.scrollLeft || document.body.scrollLeft || 0\n\t};\n};"
},
"cookies": [],
"headers": [
{
"name": "accept-ranges",
"value": "bytes"
},
{
"name": "cache-control",
"value": "public, max-age=180"
},
{
"name": "content-length",
"value": "10040"
},
{
"name": "content-type",
"value": "text/plain"
},
{
"name": "date",
"value": "Tue, 28 Dec 2010 03:11:20 GMT"
},
{
"name": "etag",
"value": "\"5//trunk/script/jquery.dimensions.js\""
},
{
"name": "expires",
"value": "Tue, 28 Dec 2010 03:14:20 GMT"
},
{
"name": "last-modified",
"value": "Wed, 15 Apr 2009 18:54:35 GMT"
},
{
"name": "server",
"value": "Apache"
}
],
"headersSize": -1,
"httpVersion": "HTTP/1.1",
"redirectURL": "",
"status": 200,
"statusText": "OK"
},
"startedDateTime": "2010-12-28T03:11:23.013978Z",
"time": 1107,
"timings": {
"blocked": -1,
"connect": 83,
"dns": -1,
"receive": 700,
"send": 0,
"wait": 324
}
},
{
"cache": {},
"pageref": "page_1",
"request": {
"bodySize": 0,
"cookies": [],
"headers": [
{
"name": "accept",
"value": "*/*"
},
{
"name": "accept-charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "accept-encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "accept-language",
"value": "en-US,en;q=0.8"
},
{
"name": "connection",
"value": "keep-alive"
},
{
"name": "host",
"value": "pcapr.googlecode.com"
},
{
"name": "referer",
"value": "http://pcapr.net/home"
},
{
"name": "user-agent",
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10"
}
],
"headersSize": -1,
"httpVersion": "HTTP/1.1",
"method": "GET",
"queryString": [],
"url": "http://pcapr.googlecode.com/svn/trunk/script/jquery.menu.js"
},
"response": {
"bodySize": 4014,
"content": {
"compression": 0,
"mimeType": "text/plain",
"size": 4014,
"text": "/*\n * ContextMenu - jQuery plugin for right-click context menus\n *\n * Author: Chris Domigan\n * Contributors: Dan G. Switzer, II\n * Parts of this plugin are inspired by Joern Zaefferer's Tooltip plugin\n *\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n *\n * Version: r2\n * Date: 16 July 2007\n *\n * For documentation visit http://www.trendskitchens.co.nz/jquery/contextmenu/\n *\n */\n(function($){\n var menu, shadow, trigger, content, hash, currentTarget;\n var defaults = {\n menuStyle: {\n listStyle: 'none',\n padding: '1px',\n margin: '0px',\n backgroundColor: '#fff',\n border: '1px solid #999',\n width: '100px'\n },\n itemStyle: {\n margin: '0px',\n color: '#000',\n display: 'block',\n cursor: 'default',\n padding: '3px',\n border: '1px solid #fff',\n backgroundColor: 'transparent'\n },\n itemHoverStyle: {\n border: '1px solid #0a246a',\n backgroundColor: '#b6bdd2'\n },\n shadow: true\n };\n \n $.fn.contextMenu = function(id, options){\n if (!menu) {\n menu = $('<div id=\"jqContextMenu\"></div>').hide().css({\n position: 'absolute',\n zIndex: '500'\n }).appendTo('body').bind('click', function(e){\n e.stopPropagation();\n });\n }\n\t\t\n if (!shadow) {\n shadow = $('<div></div>').css({\n backgroundColor: '#000',\n position: 'absolute',\n opacity: 0.2,\n zIndex: 499\n }).appendTo('body').hide();\n }\n\t\t\n hash = hash || [];\n hash.push({\n id: id,\n menuStyle: $.extend({}, defaults.menuStyle, options.menuStyle || {}),\n itemStyle: $.extend({}, defaults.itemStyle, options.itemStyle || {}),\n itemHoverStyle: $.extend({}, defaults.itemHoverStyle, options.itemHoverStyle || {}),\n bindings: options.bindings || {},\n shadow: options.shadow || options.shadow === false ? options.shadow : defaults.shadow\n });\n \n var index = hash.length - 1;\n $(this).bind('click', function(e){\n display(index, this, e, options);\n return false;\n });\n return this;\n };\n \n function display(index, trigger, e, options){\n var cur = hash[index];\n content = $('#' + cur.id).find('ul:first').clone(true);\n content.css(cur.menuStyle).find('li').css(cur.itemStyle).hover(function(){\n $(this).css(cur.itemHoverStyle);\n }, function(){\n $(this).css(cur.itemStyle);\n }).find('img').css({\n verticalAlign: 'middle',\n paddingRight: '2px'\n });\n \n menu.html(content);\n \n $.each(cur.bindings, function(id, func){\n $('#' + id, menu).bind('click', function(e){\n hide();\n func(trigger, currentTarget);\n });\n });\n \n var offset = $(trigger).offset();\n menu.css({\n 'left': offset.left,\n 'top': offset.top + offset.height + 2\n }).show();\n\t\t\n if (cur.shadow) {\n\t\t\tshadow.css({\n\t\t\t\twidth: menu.width(),\n\t\t\t\theight: menu.height(),\n\t\t\t\tleft: offset.left + 2,\n\t\t\t\ttop: offset.top + offset.height + 4\n\t\t\t}).show();\n\t\t}\n\t\t\n $(document).one('click', hide);\n }\n \n function hide(){\n menu.hide();\n shadow.hide();\n }\n \n $.contextMenu = {\n defaults: function(userDefaults){\n $.each(userDefaults, function(i, val){\n if (typeof val == 'object' && defaults[i]) {\n\t\t\t\t\t$.extend(defaults[i], val);\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tdefaults[i] = val;\n\t\t\t\t}\n });\n }\n }; \n})(jQuery);\n\n$(function(){\n $('div.contextMenu').hide();\n});\n"
},
"cookies": [],
"headers": [
{
"name": "accept-ranges",
"value": "bytes"
},
{
"name": "cache-control",
"value": "public, max-age=180"
},
{
"name": "content-length",
"value": "4014"
},
{
"name": "content-type",
"value": "text/plain"
},
{
"name": "date",
"value": "Tue, 28 Dec 2010 03:11:20 GMT"
},
{
"name": "etag",
"value": "\"5//trunk/script/jquery.menu.js\""
},
{
"name": "expires",
"value": "Tue, 28 Dec 2010 03:14:20 GMT"
},
{
"name": "last-modified",
"value": "Wed, 15 Apr 2009 18:54:35 GMT"
},
{
"name": "server",
"value": "Apache"
}
],
"headersSize": -1,
"httpVersion": "HTTP/1.1",
"redirectURL": "",
"status": 200,
"statusText": "OK"
},
"startedDateTime": "2010-12-28T03:11:23.014346Z",
"time": 941,
"timings": {
"blocked": -1,
"connect": 83,
"dns": -1,
"receive": 525,
"send": 0,
"wait": 332
}
},
{
"cache": {},
"pageref": "page_1",
"request": {
"bodySize": 0,
"cookies": [],
"headers": [
{
"name": "accept",
"value": "text/css,*/*;q=0.1"
},
{
"name": "accept-charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "accept-encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "accept-language",
"value": "en-US,en;q=0.8"
},
{
"name": "connection",
"value": "keep-alive"
},
{
"name": "host",
"value": "pcapr.googlecode.com"
},
{
"name": "referer",
"value": "http://pcapr.net/home"
},
{
"name": "user-agent",
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10"
}
],
"headersSize": -1,
"httpVersion": "HTTP/1.1",
"method": "GET",
"queryString": [],
"url": "http://pcapr.googlecode.com/svn/trunk/style/pmagick.css"
},
"response": {
"bodySize": 3922,
"content": {
"compression": 0,
"mimeType": "text/css",
"size": 3922,
"text": "/*\n * Copyright (C) 2009 Mu Dynamics, Inc\n * All rights reserved.\n * http://www.opensource.org/licenses/bsd-license.php\n * \n * http://www.mudynamics.com\n * http://labs.mudynamics.com\n * http://www.pcapr.net\n */\n\nform#upload {\n\tpadding-bottom: 10px;\n}\n\n.sortby {\n\tfloat: right;\n}\n\n.sortby ul {\n\tlist-style: none;\n\tpadding: 0px;\n\tmargin: 0px;\n\tline-height: 1em;\n\ttext-indent: -3em;\n}\n\n.meta-proto {\n\ttext-decoration: none;\t\n}\n\n.tag {\n\ttext-decoration: none;\t\n\tcolor: #D2691E;\n}\n\n.meta-proto:hover,.tag:hover {\n\tbackground-color: #DDD;\n}\n\n.browser {\n\tmin-height: 150px;\n}\n\n.browser dd {\n\tpadding-bottom: 10px;\n}\n\n.browser dt {\n\tpadding-bottom: 5px;\n}\n\n.browser dt a {\n\tfont-size: larger;\n}\n\n.browser .description {\n\tcolor: #af7b49;\n}\n\nli.p-comment {\n\tmargin-bottom: 16px;\n\tpadding-left: 10px;\n\tborder-left: 1px dotted #2E6AB1;\n}\n\n.splitter {\n\tmin-height: 500px;\n\tmargin-bottom: 10px;\n}\n\n.splitter #top {\n\tbackground-color: #FAFAFA;\n\theight: 100px;\n\toverflow-x: hidden;\n\toverflow-y: auto;\n\tpadding: 10px;\n\tmin-height: 100px;\n\tborder: 1px solid #CCC !important;\n\t-moz-border-radius-topleft: 8px;\n\t-moz-border-radius-topright: 8px;\n}\n\n.splitter #bottom {\n\tbackground-color: #FAFAFA;\n\toverflow: auto;\n\theight: 100px;\n\tmin-height: 100px;\n\tborder: 1px solid #CCC !important;\n\t-moz-border-radius-bottomleft: 8px;\n\t-moz-border-radius-bottomright: 8px;\n}\n\n.splitter #bottom pre {\n\tmargin: 0px;\n\tpadding: 10px;\n}\n\n.splitter .hsplitbar {\n\theight: 6px;\n}\n\n.splitter .hsplitbar.active, .splitter .hsplitbar:hover {\n\tbackground-color: #e88;\n}\n\n.pageNavigation {\n\tmargin-bottom: 10px;\n}\n\n.pageNavigation .summary {\n\tfont-size: 90%;\n}\n\n.pages {\n\tfont-size:85%;\n}\n\n.pages span {\n\tbackground:#FFFFFF none repeat scroll 0%;\n\tborder:1px solid #FFFFFF;\n\tpadding: 1px;\n}\n\n.pages span.selected a {\n\tbackground:#2E6AB1 none repeat scroll 0%;\n\tborder:1px solid #2E6AB1;\n\tcolor:#FFFFFF;\n\tfont-weight:bold;\n}\n\n.pages a {\n\tborder:1px solid #9AAFE5;\n\ttext-decoration:none;\n\tpadding: 1px 8px;\t\n}\n\n.pages a:hover {\n\tborder-color:#2E6AB1;\n}\n\n.dragger {\n\tcursor: move;\n\tbackground: #2e6ab1;\n\tcolor: #2e6ab1;\n\tborder: 1px solid #9aafe5;\n\tfont-size: 0.5em;\n}\n\n.pcap .titlecol {\n width: 100%;\n}\n\n.pcap td {\n\tpadding: 2px 4px;\n\tvertical-align: top;\n\twhite-space: nowrap;\n}\n\n.packet #details {\n\tcursor: pointer;\n\tbackground: url('../image/collapsed.gif') no-repeat scroll -3px -3px;\n\ttext-decoration: none;\n\toutline: none;\n}\n\n.packet #details.expanded {\n\tbackground-image: url('../image/expanded.gif')\n}\n\n.packet #details.loading {\n\tbackground-image: url('../image/throbber.gif');\n}\n\n.packet #details img {\n\twidth: 12px;\n\theight: 12px;\n\tvertical-align: middle;\n\tborder-color: transparent;\n}\n\n.details select {\n font-family: Arial, Helvetica, sans-serif;\n}\n\n.title {\n\twhite-space: nowrap;\n}\n\n.proto {\n\tfont-family: Monaco, Courier, monospace;\n\tfont-size: 11px;\n}\n\n.field {\n\tmargin-left: 15px;\n}\n\n.header a.toggle {\n\tcursor: pointer;\n\tbackground: url('../image/collapsed.gif') no-repeat scroll -3px -3px;\n\ttext-decoration: none;\t\n\toutline: none;\n}\n\n.header img {\n\twidth: 12px;\n\theight: 12px;\n\tvertical-align: middle;\n\tborder-color: transparent;\n}\n\n.header a.expanded {\n\tbackground-image: url('../image/expanded.gif')\t\n}\n\n.action_bar {\n\tlist-style: none;\n\tpadding-bottom: 10px;\n}\n\n.action_bar li { \n\tfloat: left; \n}\n\n.action_bar li a { \n\tmargin: 0pt; \n\tpadding: 0pt 5px; \n\tbackground: transparent none repeat scroll 0% 0%; \n\tfloat: left; \n\tfont-weight: bold; \n}\n\n.action_bar a {\n\ttext-indent: 10px;\n}\n\n.action_bar a#upload {\n\tbackground: url(../image/upload.png) no-repeat;\n}\n\n.action_bar a#download {\n\tbackground: url(../image/download.png) no-repeat;\t\n}\n\n.action_bar a#saveas {\n\tbackground: url(../image/upload.png) no-repeat;\n}\n\n.action_bar a#delete {\n\tbackground: url(../image/delete.png) no-repeat;\n}\n\n.action_bar a#musl {\n\tbackground: url(../image/icon-3.png) no-repeat;\n}\n\n.about dl {\n margin: 0px;\n}\n\n.cloud a {\n\tline-height: 1em;\n\tpadding: 2px;\n}\n\n"
},
"cookies": [],
"headers": [
{
"name": "accept-ranges",
"value": "bytes"
},
{
"name": "cache-control",
"value": "public, max-age=180"
},
{
"name": "content-length",
"value": "3922"
},
{
"name": "content-type",
"value": "text/css"
},
{
"name": "date",
"value": "Tue, 28 Dec 2010 03:11:20 GMT"
},
{
"name": "etag",
"value": "\"14//trunk/style/pmagick.css\""
},
{
"name": "expires",
"value": "Tue, 28 Dec 2010 03:14:20 GMT"
},
{
"name": "last-modified",
"value": "Fri, 25 Sep 2009 18:07:36 GMT"
},
{
"name": "server",
"value": "Apache"
}
],
"headersSize": -1,
"httpVersion": "HTTP/1.1",
"redirectURL": "",
"status": 200,
"statusText": "OK"
},
"startedDateTime": "2010-12-28T03:11:23.014687Z",
"time": 1549,
"timings": {
"blocked": -1,
"connect": 84,
"dns": -1,
"receive": 1124,
"send": 0,
"wait": 340
}
},
{
"cache": {},
"pageref": "page_1",
"request": {
"bodySize": 0,
"cookies": [],
"headers": [
{
"name": "accept",
"value": "*/*"
},
{
"name": "accept-charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "accept-encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "accept-language",
"value": "en-US,en;q=0.8"
},
{
"name": "connection",
"value": "keep-alive"
},
{
"name": "host",
"value": "jqueryjs.googlecode.com"
},
{
"name": "referer",
"value": "http://pcapr.net/home"
},
{
"name": "user-agent",
"value": "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10"
}
],
"headersSize": -1,
"httpVersion": "HTTP/1.1",
"method": "GET",
"queryString": [],
"url": "http://jqueryjs.googlecode.com/files/jquery-1.2.6.min.js"
},
"response": {
"bodySize": 55774,
"content": {
"compression": 0,
"mimeType": "text/x-c",
"size": 55774,
"text": "/*\n * jQuery 1.2.6 - New Wave Javascript\n *\n * Copyright (c) 2008 John Resig (jquery.com)\n * Dual licensed under the MIT (MIT-LICENSE.txt)\n * and GPL (GPL-LICENSE.txt) licenses.\n *\n * $Date: 2008-05-24 14:22:17 -0400 (Sat, 24 May 2008) $\n * $Rev: 5685 $\n */\n(function(){var _jQuery=window.jQuery,_$=window.$;var jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context);};var quickExpr=/^[^<]*(<(.|\\s)+>)[^>]*$|^#(\\w+)$/,isSimple=/^.[^:#\\[\\.]*$/,undefined;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;return this;}if(typeof selector==\"string\"){var match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1])selector=jQuery.clean([match[1]],context);else{var elem=document.getElementById(match[3]);if(elem){if(elem.id!=match[3])return jQuery().find(selector);return jQuery(elem);}selector=[];}}else\nreturn jQuery(context).find(selector);}else if(jQuery.isFunction(selector))return jQuery(document)[jQuery.fn.ready?\"ready\":\"load\"](selector);return this.setArray(jQuery.makeArray(selector));},jquery:\"1.2.6\",size:function(){return this.length;},length:0,get:function(num){return num==undefined?jQuery.makeArray(this):this[num];},pushStack:function(elems){var ret=jQuery(elems);ret.prevObject=this;return ret;},setArray:function(elems){this.length=0;Array.prototype.push.apply(this,elems);return this;},each:function(callback,args){return jQuery.each(this,callback,args);},index:function(elem){var ret=-1;return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this);},attr:function(name,value,type){var options=name;if(name.constructor==String)if(value===undefined)return this[0]&&jQuery[type||\"attr\"](this[0],name);else{options={};options[name]=value;}return this.each(function(i){for(name in options)jQuery.attr(type?this.style:this,name,jQuery.prop(this,options[name],type,i,name));});},css:function(key,value){if((key=='width'||key=='height')&&parseFloat(value)<0)value=undefined;return this.attr(key,value,\"curCSS\");},text:function(text){if(typeof text!=\"object\"&&text!=null)return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));var ret=\"\";jQuery.each(text||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8)ret+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this]);});});return ret;},wrapAll:function(html){if(this[0])jQuery(html,this[0].ownerDocument).clone().insertBefore(this[0]).map(function(){var elem=this;while(elem.firstChild)elem=elem.firstChild;return elem;}).append(this);return this;},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html);});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},append:function(){return this.domManip(arguments,true,false,function(elem){if(this.nodeType==1)this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,true,function(elem){if(this.nodeType==1)this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,true,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},find:function(selector){var elems=jQuery.map(this,function(elem){return jQuery.find(selector,elem);});return this.pushStack(/[^+>] [^+>]/.test(selector)||selector.indexOf(\"..\")>-1?jQuery.unique(elems):elems);},clone:function(events){var ret=this.map(function(){if(jQuery.browser.msie&&!jQuery.isXMLDoc(this)){var clone=this.cloneNode(true),container=document.createElement(\"div\");container.appendChild(clone);return jQuery.clean([container.innerHTML])[0];}else\nreturn this.cloneNode(true);});var clone=ret.find(\"*\").andSelf().each(function(){if(this[expando]!=undefined)this[expando]=null;});if(events===true)this.find(\"*\").andSelf().each(function(i){if(this.nodeType==3)return;var events=jQuery.data(this,\"events\");for(var type in events)for(var handler in events[type])jQuery.event.add(clone[i],type,events[type][handler],events[type][handler].data);});return ret;},filter:function(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,function(elem,i){return selector.call(elem,i);})||jQuery.multiFilter(selector,this));},not:function(selector){if(selector.constructor==String)if(isSimple.test(selector))return this.pushStack(jQuery.multiFilter(selector,this,true));else\nselector=jQuery.multiFilter(selector,this);var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector;});},add:function(selector){return this.pushStack(jQuery.unique(jQuery.merge(this.get(),typeof selector=='string'?jQuery(selector):jQuery.makeArray(selector))));},is:function(selector){return!!selector&&jQuery.multiFilter(selector,this).length>0;},hasClass:function(selector){return this.is(\".\"+selector);},val:function(value){if(value==undefined){if(this.length){var elem=this[0];if(jQuery.nodeName(elem,\"select\")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type==\"select-one\";if(index<0)return null;for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery.browser.msie&&!option.attributes.value.specified?option.text:option.value;if(one)return value;values.push(value);}}return values;}else\nreturn(this[0].value||\"\").replace(/\\r/g,\"\");}return undefined;}if(value.constructor==Number)value+='';return this.each(function(){if(this.nodeType!=1)return;if(value.constructor==Array&&/radio|checkbox/.test(this.type))this.checked=(jQuery.inArray(this.value,value)>=0||jQuery.inArray(this.name,value)>=0);else if(jQuery.nodeName(this,\"select\")){var values=jQuery.makeArray(value);jQuery(\"option\",this).each(function(){this.selected=(jQuery.inArray(this.value,values)>=0||jQuery.inArray(this.text,values)>=0);});if(!values.length)this.selectedIndex=-1;}else\nthis.value=value;});},html:function(value){return value==undefined?(this[0]?this[0].innerHTML:null):this.empty().append(value);},replaceWith:function(value){return this.after(value).remove();},eq:function(i){return this.slice(i,i+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},andSelf:function(){return this.add(this.prevObject);},data:function(key,value){var parts=key.split(\".\");parts[1]=parts[1]?\".\"+parts[1]:\"\";if(value===undefined){var data=this.triggerHandler(\"getData\"+parts[1]+\"!\",[parts[0]]);if(data===undefined&&this.length)data=jQuery.data(this[0],key);return data===undefined&&parts[1]?this.data(parts[0]):data;}else\nreturn this.trigger(\"setData\"+parts[1]+\"!\",[parts[0],value]).each(function(){jQuery.data(this,key,value);});},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});},domManip:function(args,table,reverse,callback){var clone=this.length>1,elems;return this.each(function(){if(!elems){elems=jQuery.clean(args,this.ownerDocument);if(reverse)elems.reverse();}var obj=this;if(table&&jQuery.nodeName(this,\"table\")&&jQuery.nodeName(elems[0],\"tr\"))obj=this.getElementsByTagName(\"tbody\")[0]||this.appendChild(this.ownerDocument.createElement(\"tbody\"));var scripts=jQuery([]);jQuery.each(elems,function(){var elem=clone?jQuery(this).clone(true)[0]:this;if(jQuery.nodeName(elem,\"script\"))scripts=scripts.add(elem);else{if(elem.nodeType==1)scripts=scripts.add(jQuery(\"script\",elem).remove());callback.call(obj,elem);}});scripts.each(evalScript);});}};jQuery.fn.init.prototype=jQuery.fn;function evalScript(i,elem){if(elem.src)jQuery.ajax({url:elem.src,async:false,dataType:\"script\"});else\njQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||\"\");if(elem.parentNode)elem.parentNode.removeChild(elem);}function now(){return+new Date;}jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options;if(target.constructor==Boolean){deep=target;target=arguments[1]||{};i=2;}if(typeof target!=\"object\"&&typeof target!=\"function\")target={};if(length==i){target=this;--i;}for(;i<length;i++)if((options=arguments[i])!=null)for(var name in options){var src=target[name],copy=options[name];if(target===copy)continue;if(deep&©&&typeof copy==\"object\"&&!copy.nodeType)target[name]=jQuery.extend(deep,src||(copy.length!=null?[]:{}),copy);else if(copy!==undefined)target[name]=copy;}return target;};var expando=\"jQuery\"+now(),uuid=0,windowData={},exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{};jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)window.jQuery=_jQuery;return jQuery;},isFunction:function(fn){return!!fn&&typeof fn!=\"string\"&&!fn.nodeName&&fn.constructor!=Array&&/^[\\s[]?function/.test(fn+\"\");},isXMLDoc:function(elem){return elem.documentElement&&!elem.body||elem.tagName&&elem.ownerDocument&&!elem.ownerDocument.body;},globalEval:function(data){data=jQuery.trim(data);if(data){var head=document.getElementsByTagName(\"head\")[0]||document.documentElement,script=document.createElement(\"script\");script.type=\"text/javascript\";if(jQuery.browser.msie)script.text=data;else\nscript.appendChild(document.createTextNode(data));head.insertBefore(script,head.firstChild);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},cache:{},data:function(elem,name,data){elem=elem==window?windowData:elem;var id=elem[expando];if(!id)id=elem[expando]=++uuid;if(name&&!jQuery.cache[id])jQuery.cache[id]={};if(data!==undefined)jQuery.cache[id][name]=data;return name?jQuery.cache[id][name]:id;},removeData:function(elem,name){elem=elem==window?windowData:elem;var id=elem[expando];if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];name=\"\";for(name in jQuery.cache[id])break;if(!name)jQuery.removeData(elem);}}else{try{delete elem[expando];}catch(e){if(elem.removeAttribute)elem.removeAttribute(expando);}delete jQuery.cache[id];}},each:function(object,callback,args){var name,i=0,length=object.length;if(args){if(length==undefined){for(name in object)if(callback.apply(object[name],args)===false)break;}else\nfor(;i<length;)if(callback.apply(object[i++],args)===false)break;}else{if(length==undefined){for(name in object)if(callback.call(object[name],name,object[name])===false)break;}else\nfor(var value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}return object;},prop:function(elem,value,type,i,name){if(jQuery.isFunction(value))value=value.call(elem,i);return value&&value.constructor==Number&&type==\"curCSS\"&&!exclude.test(name)?value+\"px\":value;},className:{add:function(elem,classNames){jQuery.each((classNames||\"\").split(/\\s+/),function(i,className){if(elem.nodeType==1&&!jQuery.className.has(elem.className,className))elem.className+=(elem.className?\" \":\"\")+className;});},remove:function(elem,classNames){if(elem.nodeType==1)elem.className=classNames!=undefined?jQuery.grep(elem.className.split(/\\s+/),function(className){return!jQuery.className.has(classNames,className);}).join(\" \"):\"\";},has:function(elem,className){return jQuery.inArray(className,(elem.className||elem).toString().split(/\\s+/))>-1;}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];}callback.call(elem);for(var name in options)elem.style[name]=old[name];},css:function(elem,name,force){if(name==\"width\"||name==\"height\"){var val,props={position:\"absolute\",visibility:\"hidden\",display:\"block\"},which=name==\"width\"?[\"Left\",\"Right\"]:[\"Top\",\"Bottom\"];function getWH(){val=name==\"width\"?elem.offsetWidth:elem.offsetHeight;var padding=0,border=0;jQuery.each(which,function(){padding+=parseFloat(jQuery.curCSS(elem,\"padding\"+this,true))||0;border+=parseFloat(jQuery.curCSS(elem,\"border\"+this+\"Width\",true))||0;});val-=Math.round(padding+border);}if(jQuery(elem).is(\":visible\"))getWH();else\njQuery.swap(elem,props,getWH);return Math.max(0,val);}return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret,style=elem.style;function color(elem){if(!jQuery.browser.safari)return false;var ret=defaultView.getComputedStyle(elem,null);return!ret||ret.getPropertyValue(\"color\")==\"\";}if(name==\"opacity\"&&jQuery.browser.msie){ret=jQuery.attr(style,\"opacity\");return ret==\"\"?\"1\":ret;}if(jQuery.browser.opera&&name==\"display\"){var save=style.outline;style.outline=\"0 solid black\";style.outline=save;}if(name.match(/float/i))name=styleFloat;if(!force&&style&&style[name])ret=style[name];else if(defaultView.getComputedStyle){if(name.match(/float/i))name=\"float\";name=name.replace(/([A-Z])/g,\"-$1\").toLowerCase();var computedStyle=defaultView.getComputedStyle(elem,null);if(computedStyle&&!color(elem))ret=computedStyle.getPropertyValue(name);else{var swap=[],stack=[],a=elem,i=0;for(;a&&color(a);a=a.parentNode)stack.unshift(a);for(;i<stack.length;i++)if(color(stack[i])){swap[i]=stack[i].style.display;stack[i].style.display=\"block\";}ret=name==\"display\"&&swap[stack.length-1]!=null?\"none\":(computedStyle&&computedStyle.getPropertyValue(name))||\"\";for(i=0;i<swap.length;i++)if(swap[i]!=null)stack[i].style.display=swap[i];}if(name==\"opacity\"&&ret==\"\")ret=\"1\";}else if(elem.currentStyle){var camelCase=name.replace(/\\-(\\w)/g,function(all,letter){return letter.toUpperCase();});ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!/^\\d+(px)?$/i.test(ret)&&/^\\d/.test(ret)){var left=style.left,rsLeft=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;style.left=ret||0;ret=style.pixelLeft+\"px\";style.left=left;elem.runtimeStyle.left=rsLeft;}}return ret;},clean:function(elems,context){var ret=[];context=context||document;if(typeof context.createElement=='undefined')context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;jQuery.each(elems,function(i,elem){if(!elem)return;if(elem.constructor==Number)elem+='';if(typeof elem==\"string\"){elem=elem.replace(/(<(\\w+)[^>]*?)\\/>/g,function(all,front,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?all:front+\"></\"+tag+\">\";});var tags=jQuery.trim(elem).toLowerCase(),div=context.createElement(\"div\");var wrap=!tags.indexOf(\"<opt\")&&[1,\"<select multiple='multiple'>\",\"</select>\"]||!tags.indexOf(\"<leg\")&&[1,\"<fieldset>\",\"</fieldset>\"]||tags.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,\"<table>\",\"</table>\"]||!tags.indexOf(\"<tr\")&&[2,\"<table><tbody>\",\"</tbody></table>\"]||(!tags.indexOf(\"<td\")||!tags.indexOf(\"<th\"))&&[3,\"<table><tbody><tr>\",\"</tr></tbody></table>\"]||!tags.indexOf(\"<col\")&&[2,\"<table><tbody></tbody><colgroup>\",\"</colgroup></table>\"]||jQuery.browser.msie&&[1,\"div<div>\",\"</div>\"]||[0,\"\",\"\"];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)div=div.lastChild;if(jQuery.browser.msie){var tbody=!tags.indexOf(\"<table\")&&tags.indexOf(\"<tbody\")<0?div.firstChild&&div.firstChild.childNodes:wrap[1]==\"<table>\"&&tags.indexOf(\"<tbody\")<0?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j)if(jQuery.nodeName(tbody[j],\"tbody\")&&!tbody[j].childNodes.length)tbody[j].parentNode.removeChild(tbody[j]);if(/^\\s/.test(elem))div.insertBefore(context.createTextNode(elem.match(/^\\s*/)[0]),div.firstChild);}elem=jQuery.makeArray(div.childNodes);}if(elem.length===0&&(!jQuery.nodeName(elem,\"form\")&&!jQuery.nodeName(elem,\"select\")))return;if(elem[0]==undefined||jQuery.nodeName(elem,\"form\")||elem.options)ret.push(elem);else\nret=jQuery.merge(ret,elem);});return ret;},attr:function(elem,name,value){if(!elem||elem.nodeType==3||elem.nodeType==8)return undefined;var notxml=!jQuery.isXMLDoc(elem),set=value!==undefined,msie=jQuery.browser.msie;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name==\"selected\"&&jQuery.browser.safari)elem.parentNode.selectedIndex;if(name in elem&¬xml&&!special){if(set){if(name==\"type\"&&jQuery.nodeName(elem,\"input\")&&elem.parentNode)throw\"type property can't be changed\";elem[name]=value;}if(jQuery.nodeName(elem,\"form\")&&elem.getAttributeNode(name))return elem.getAttributeNode(name).nodeValue;return elem[name];}if(msie&¬xml&&name==\"style\")return jQuery.attr(elem.style,\"cssText\",value);if(set)elem.setAttribute(name,\"\"+value);var attr=msie&¬xml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}if(msie&&name==\"opacity\"){if(set){elem.zoom=1;elem.filter=(elem.filter||\"\").replace(/alpha\\([^)]*\\)/,\"\")+(parseInt(value)+''==\"NaN\"?\"\":\"alpha(opacity=\"+value*100+\")\");}return elem.filter&&elem.filter.indexOf(\"opacity=\")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100)+'':\"\";}name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(set)elem[name]=value;return elem[name];},trim:function(text){return(text||\"\").replace(/^\\s+|\\s+$/g,\"\");},makeArray:function(array){var ret=[];if(array!=null){var i=array.length;if(i==null||array.split||array.setInterval||array.call)ret[0]=array;else\nwhile(i)ret[--i]=array[i];}return ret;},inArray:function(elem,array){for(var i=0,length=array.length;i<length;i++)if(array[i]===elem)return i;return-1;},merge:function(first,second){var i=0,elem,pos=first.length;if(jQuery.browser.msie){while(elem=second[i++])if(elem.nodeType!=8)first[pos++]=elem;}else\nwhile(elem=second[i++])first[pos++]=elem;return first;},unique:function(array){var ret=[],done={};try{for(var i=0,length=array.length;i<length;i++){var id=jQuery.data(array[i]);if(!done[id]){done[id]=true;ret.push(array[i]);}}}catch(e){ret=array;}return ret;},grep:function(elems,callback,inv){var ret=[];for(var i=0,length=elems.length;i<length;i++)if(!inv!=!callback(elems[i],i))ret.push(elems[i]);return ret;},map:function(elems,callback){var ret=[];for(var i=0,length=elems.length;i<length;i++){var value=callback(elems[i],i);if(value!=null)ret[ret.length]=value;}return ret.concat.apply([],ret);}});var userAgent=navigator.userAgent.toLowerCase();jQuery.browser={version:(userAgent.match(/.+(?:rv|it|ra|ie)[\\/: ]([\\d.]+)/)||[])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};var styleFloat=jQuery.browser.msie?\"styleFloat\":\"cssFloat\";jQuery.extend({boxModel:!jQuery.browser.msie||document.compatMode==\"CSS1Compat\",props:{\"for\":\"htmlFor\",\"class\":\"className\",\"float\":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,readonly:\"readOnly\",maxlength:\"maxLength\",cellspacing:\"cellSpacing\"}});jQuery.each({parent:function(elem){return elem.parentNode;},parents:function(elem){return jQuery.dir(elem,\"parentNode\");},next:function(elem){return jQuery.nth(elem,2,\"nextSibling\");},prev:function(elem){return jQuery.nth(elem,2,\"previousSibling\");},nextAll:function(elem){return jQuery.dir(elem,\"nextSibling\");},prevAll:function(elem){return jQuery.dir(elem,\"previousSibling\");},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},children:function(elem){return jQuery.sibling(elem.firstChild);},contents:function(elem){return jQuery.nodeName(elem,\"iframe\")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}},function(name,fn){jQuery.fn[name]=function(selector){var ret=jQuery.map(this,fn);if(selector&&typeof selector==\"string\")ret=jQuery.multiFilter(selector,ret);return this.pushStack(jQuery.unique(ret));};});jQuery.each({appendTo:\"append\",prependTo:\"prepend\",insertBefore:\"before\",insertAfter:\"after\",replaceAll:\"replaceWith\"},function(name,original){jQuery.fn[name]=function(){var args=arguments;return this.each(function(){for(var i=0,length=args.length;i<length;i++)jQuery(args[i])[original](this);});};});jQuery.each({removeAttr:function(name){jQuery.attr(this,name,\"\");if(this.nodeType==1)this.removeAttribute(name);},addClass:function(classNames){jQuery.className.add(this,classNames);},removeClass:function(classNames){jQuery.className.remove(this,classNames);},toggleClass:function(classNames){jQuery.className[jQuery.className.has(this,classNames)?\"remove\":\"add\"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).r.length){jQuery(\"*\",this).add(this).each(function(){jQuery.event.remove(this);jQuery.removeData(this);});if(this.parentNode)this.parentNode.removeChild(this);}},empty:function(){jQuery(\">*\",this).remove();while(this.firstChild)this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});jQuery.each([\"Height\",\"Width\"],function(i,name){var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?jQuery.browser.opera&&document.body[\"client\"+name]||jQuery.browser.safari&&window[\"inner\"+name]||document.compatMode==\"CSS1Compat\"&&document.documentElement[\"client\"+name]||document.body[\"client\"+name]:this[0]==document?Math.max(Math.max(document.body[\"scroll\"+name],document.documentElement[\"scroll\"+name]),Math.max(document.body[\"offset\"+name],document.documentElement[\"offset\"+name])):size==undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,size.constructor==String?size:size+\"px\");};});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0;}var chars=jQuery.browser.safari&&parseInt(jQuery.browser.version)<417?\"(?:[\\\\w*_-]|\\\\\\\\.)\":\"(?:[\\\\w\\u0128-\\uFFFF*_-]|\\\\\\\\.)\",quickChild=new RegExp(\"^>\\\\s*(\"+chars+\"+)\"),quickID=new RegExp(\"^(\"+chars+\"+)(#)(\"+chars+\"+)\"),quickClass=new RegExp(\"^([#.]?)(\"+chars+\"*)\");jQuery.extend({expr:{\"\":function(a,i,m){return m[2]==\"*\"||jQuery.nodeName(a,m[2]);},\"#\":function(a,i,m){return a.getAttribute(\"id\")==m[2];},\":\":{lt:function(a,i,m){return i<m[3]-0;},gt:function(a,i,m){return i>m[3]-0;},nth:function(a,i,m){return m[3]-0==i;},eq:function(a,i,m){return m[3]-0==i;},first:function(a,i){return i==0;},last:function(a,i,m,r){return i==r.length-1;},even:function(a,i){return i%2==0;},odd:function(a,i){return i%2;},\"first-child\":function(a){return a.parentNode.getElementsByTagName(\"*\")[0]==a;},\"last-child\":function(a){return jQuery.nth(a.parentNode.lastChild,1,\"previousSibling\")==a;},\"only-child\":function(a){return!jQuery.nth(a.parentNode.lastChild,2,\"previousSibling\");},parent:function(a){return a.firstChild;},empty:function(a){return!a.firstChild;},contains:function(a,i,m){return(a.textContent||a.innerText||jQuery(a).text()||\"\").indexOf(m[3])>=0;},visible:function(a){return\"hidden\"!=a.type&&jQuery.css(a,\"display\")!=\"none\"&&jQuery.css(a,\"visibility\")!=\"hidden\";},hidden:function(a){return\"hidden\"==a.type||jQuery.css(a,\"display\")==\"none\"||jQuery.css(a,\"visibility\")==\"hidden\";},enabled:function(a){return!a.disabled;},disabled:function(a){return a.disabled;},checked:function(a){return a.checked;},selected:function(a){return a.selected||jQuery.attr(a,\"selected\");},text:function(a){return\"text\"==a.type;},radio:function(a){return\"radio\"==a.type;},checkbox:function(a){return\"checkbox\"==a.type;},file:function(a){return\"file\"==a.type;},password:function(a){return\"password\"==a.type;},submit:function(a){return\"submit\"==a.type;},image:function(a){return\"image\"==a.type;},reset:function(a){return\"reset\"==a.type;},button:function(a){return\"button\"==a.type||jQuery.nodeName(a,\"button\");},input:function(a){return/input|select|textarea|button/i.test(a.nodeName);},has:function(a,i,m){return jQuery.find(m[3],a).length;},header:function(a){return/h\\d/i.test(a.nodeName);},animated:function(a){return jQuery.grep(jQuery.timers,function(fn){return a==fn.elem;}).length;}}},parse:[/^(\\[) *@?([\\w-]+) *([!*$^~=]*) *('?\"?)(.*?)\\4 *\\]/,/^(:)([\\w-]+)\\(\"?'?(.*?(\\(.*?\\))?[^(]*?)\"?'?\\)/,new RegExp(\"^([:.#]*)(\"+chars+\"+)\")],multiFilter:function(expr,elems,not){var old,cur=[];while(expr&&expr!=old){old=expr;var f=jQuery.filter(expr,elems,not);expr=f.t.replace(/^\\s*,\\s*/,\"\");cur=not?elems=f.r:jQuery.merge(cur,f.r);}return cur;},find:function(t,context){if(typeof t!=\"string\")return[t];if(context&&context.nodeType!=1&&context.nodeType!=9)return[];context=context||document;var ret=[context],done=[],last,nodeName;while(t&&last!=t){var r=[];last=t;t=jQuery.trim(t);var foundToken=false,re=quickChild,m=re.exec(t);if(m){nodeName=m[1].toUpperCase();for(var i=0;ret[i];i++)for(var c=ret[i].firstChild;c;c=c.nextSibling)if(c.nodeType==1&&(nodeName==\"*\"||c.nodeName.toUpperCase()==nodeName))r.push(c);ret=r;t=t.replace(re,\"\");if(t.indexOf(\" \")==0)continue;foundToken=true;}else{re=/^([>+~])\\s*(\\w*)/i;if((m=re.exec(t))!=null){r=[];var merge={};nodeName=m[2].toUpperCase();m=m[1];for(var j=0,rl=ret.length;j<rl;j++){var n=m==\"~\"||m==\"+\"?ret[j].nextSibling:ret[j].firstChild;for(;n;n=n.nextSibling)if(n.nodeType==1){var id=jQuery.data(n);if(m==\"~\"&&merge[id])break;if(!nodeName||n.nodeName.toUpperCase()==nodeName){if(m==\"~\")merge[id]=true;r.push(n);}if(m==\"+\")break;}}ret=r;t=jQuery.trim(t.replace(re,\"\"));foundToken=true;}}if(t&&!foundToken){if(!t.indexOf(\",\")){if(context==ret[0])ret.shift();done=jQuery.merge(done,ret);r=ret=[context];t=\" \"+t.substr(1,t.length);}else{var re2=quickID;var m=re2.exec(t);if(m){m=[0,m[2],m[3],m[1]];}else{re2=quickClass;m=re2.exec(t);}m[2]=m[2].replace(/\\\\/g,\"\");var elem=ret[ret.length-1];if(m[1]==\"#\"&&elem&&elem.getElementById&&!jQuery.isXMLDoc(elem)){var oid=elem.getElementById(m[2]);if((jQuery.browser.msie||jQuery.browser.opera)&&oid&&typeof oid.id==\"string\"&&oid.id!=m[2])oid=jQuery('[@id=\"'+m[2]+'\"]',elem)[0];ret=r=oid&&(!m[3]||jQuery.nodeName(oid,m[3]))?[oid]:[];}else{for(var i=0;ret[i];i++){var tag=m[1]==\"#\"&&m[3]?m[3]:m[1]!=\"\"||m[0]==\"\"?\"*\":m[2];if(tag==\"*\"&&ret[i].nodeName.toLowerCase()==\"object\")tag=\"param\";r=jQuery.merge(r,ret[i].getElementsByTagName(tag));}if(m[1]==\".\")r=jQuery.classFilter(r,m[2]);if(m[1]==\"#\"){var tmp=[];for(var i=0;r[i];i++)if(r[i].getAttribute(\"id\")==m[2]){tmp=[r[i]];break;}r=tmp;}ret=r;}t=t.replace(re2,\"\");}}if(t){var val=jQuery.filter(t,r);ret=r=val.r;t=jQuery.trim(val.t);}}if(t)ret=[];if(ret&&context==ret[0])ret.shift();done=jQuery.merge(done,ret);return done;},classFilter:function(r,m,not){m=\" \"+m+\" \";var tmp=[];for(var i=0;r[i];i++){var pass=(\" \"+r[i].className+\" \").indexOf(m)>=0;if(!not&&pass||not&&!pass)tmp.push(r[i]);}return tmp;},filter:function(t,r,not){var last;while(t&&t!=last){last=t;var p=jQuery.parse,m;for(var i=0;p[i];i++){m=p[i].exec(t);if(m){t=t.substring(m[0].length);m[2]=m[2].replace(/\\\\/g,\"\");break;}}if(!m)break;if(m[1]==\":\"&&m[2]==\"not\")r=isSimple.test(m[3])?jQuery.filter(m[3],r,true).r:jQuery(r).not(m[3]);else if(m[1]==\".\")r=jQuery.classFilter(r,m[2],not);else if(m[1]==\"[\"){var tmp=[],type=m[3];for(var i=0,rl=r.length;i<rl;i++){var a=r[i],z=a[jQuery.props[m[2]]||m[2]];if(z==null||/href|src|selected/.test(m[2]))z=jQuery.attr(a,m[2])||'';if((type==\"\"&&!!z||type==\"=\"&&z==m[5]||type==\"!=\"&&z!=m[5]||type==\"^=\"&&z&&!z.indexOf(m[5])||type==\"$=\"&&z.substr(z.length-m[5].length)==m[5]||(type==\"*=\"||type==\"~=\")&&z.indexOf(m[5])>=0)^not)tmp.push(a);}r=tmp;}else if(m[1]==\":\"&&m[2]==\"nth-child\"){var merge={},tmp=[],test=/(-?)(\\d*)n((?:\\+|-)?\\d*)/.exec(m[3]==\"even\"&&\"2n\"||m[3]==\"odd\"&&\"2n+1\"||!/\\D/.test(m[3])&&\"0n+\"+m[3]||m[3]),first=(test[1]+(test[2]||1))-0,last=test[3]-0;for(var i=0,rl=r.length;i<rl;i++){var node=r[i],parentNode=node.parentNode,id=jQuery.data(parentNode);if(!merge[id]){var c=1;for(var n=parentNode.firstChild;n;n=n.nextSibling)if(n.nodeType==1)n.nodeIndex=c++;merge[id]=true;}var add=false;if(first==0){if(node.nodeIndex==last)add=true;}else if((node.nodeIndex-last)%first==0&&(node.nodeIndex-last)/first>=0)add=true;if(add^not)tmp.push(node);}r=tmp;}else{var fn=jQuery.expr[m[1]];if(typeof fn==\"object\")fn=fn[m[2]];if(typeof fn==\"string\")fn=eval(\"false||function(a,i){return \"+fn+\";}\");r=jQuery.grep(r,function(elem,i){return fn(elem,i,m,r);},not);}}return{r:r,t:t};},dir:function(elem,dir){var matched=[],cur=elem[dir];while(cur&&cur!=document){if(cur.nodeType==1)matched.push(cur);cur=cur[dir];}return matched;},nth:function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir])if(cur.nodeType==1&&++num==result)break;return cur;},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&n!=elem)r.push(n);}return r;}});jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)return;if(jQuery.browser.msie&&elem.setInterval)elem=window;if(!handler.guid)handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=this.proxy(fn,function(){return fn.apply(this,arguments);});handler.data=data;}var events=jQuery.data(elem,\"events\")||jQuery.data(elem,\"events\",{}),handle=jQuery.data(elem,\"handle\")||jQuery.data(elem,\"handle\",function(){if(typeof jQuery!=\"undefined\"&&!jQuery.event.triggered)return jQuery.event.handle.apply(arguments.callee.elem,arguments);});handle.elem=elem;jQuery.each(types.split(/\\s+/),function(index,type){var parts=type.split(\".\");type=parts[0];handler.type=parts[1];var handlers=events[type];if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem)===false){if(elem.addEventListener)elem.addEventListener(type,handle,false);else if(elem.attachEvent)elem.attachEvent(\"on\"+type,handle);}}handlers[handler.guid]=handler;jQuery.event.global[type]=true;});elem=null;},guid:1,global:{},remove:function(elem,types,handler){if(elem.nodeType==3||elem.nodeType==8)return;var events=jQuery.data(elem,\"events\"),ret,index;if(events){if(types==undefined||(typeof types==\"string\"&&types.charAt(0)==\".\"))for(var type in events)this.remove(elem,type+(types||\"\"));else{if(types.type){handler=types.handler;types=types.type;}jQuery.each(types.split(/\\s+/),function(index,type){var parts=type.split(\".\");type=parts[0];if(events[type]){if(handler)delete events[type][handler.guid];else\nfor(handler in events[type])if(!parts[1]||events[type][handler].type==parts[1])delete events[type][handler];for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem)===false){if(elem.removeEventListener)elem.removeEventListener(type,jQuery.data(elem,\"handle\"),false);else if(elem.detachEvent)elem.detachEvent(\"on\"+type,jQuery.data(elem,\"handle\"));}ret=null;delete events[type];}}});}for(ret in events)break;if(!ret){var handle=jQuery.data(elem,\"handle\");if(handle)handle.elem=null;jQuery.removeData(elem,\"events\");jQuery.removeData(elem,\"handle\");}}},trigger:function(type,data,elem,donative,extra){data=jQuery.makeArray(data);if(type.indexOf(\"!\")>=0){type=type.slice(0,-1);var exclusive=true;}if(!elem){if(this.global[type])jQuery(\"*\").add([window,document]).trigger(type,data);}else{if(elem.nodeType==3||elem.nodeType==8)return undefined;var val,ret,fn=jQuery.isFunction(elem[type]||null),event=!data[0]||!data[0].preventDefault;if(event){data.unshift({type:type,target:elem,preventDefault:function(){},stopPropagation:function(){},timeStamp:now()});data[0][expando]=true;}data[0].type=type;if(exclusive)data[0].exclusive=true;var handle=jQuery.data(elem,\"handle\");if(handle)val=handle.apply(elem,data);if((!fn||(jQuery.nodeName(elem,'a')&&type==\"click\"))&&elem[\"on\"+type]&&elem[\"on\"+type].apply(elem,data)===false)val=false;if(event)data.shift();if(extra&&jQuery.isFunction(extra)){ret=extra.apply(elem,val==null?data:data.concat(val));if(ret!==undefined)val=ret;}if(fn&&donative!==false&&val!==false&&!(jQuery.nodeName(elem,'a')&&type==\"click\")){this.triggered=true;try{elem[type]();}catch(e){}}this.triggered=false;}return val;},handle:function(event){var val,ret,namespace,all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);namespace=event.type.split(\".\");event.type=namespace[0];namespace=namespace[1];all=!namespace&&!event.exclusive;handlers=(jQuery.data(this,\"events\")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||handler.type==namespace){event.handler=handler;event.data=handler.data;ret=handler.apply(this,arguments);if(val!==false)val=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}}return val;},fix:function(event){if(event[expando]==true)return event;var originalEvent=event;event={originalEvent:originalEvent};var props=\"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target timeStamp toElement type view wheelDelta which\".split(\" \");for(var i=props.length;i;i--)event[props[i]]=originalEvent[props[i]];event[expando]=true;event.preventDefault=function(){if(originalEvent.preventDefault)originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation)originalEvent.stopPropagation();originalEvent.cancelBubble=true;};event.timeStamp=event.timeStamp||now();if(!event.target)event.target=event.srcElement||document;if(event.target.nodeType==3)event.target=event.target.parentNode;if(!event.relatedTarget&&event.fromElement)event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement;if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc.clientTop||0);}if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode))event.which=event.charCode||event.keyCode;if(!event.metaKey&&event.ctrlKey)event.metaKey=event.ctrlKey;if(!event.which&&event.button)event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));return event;},proxy:function(fn,proxy){proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy;},special:{ready:{setup:function(){bindReady();return;},teardown:function(){return;}},mouseenter:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind(\"mouseover\",jQuery.event.special.mouseenter.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind(\"mouseover\",jQuery.event.special.mouseenter.handler);return true;},handler:function(event){if(withinElement(event,this))return true;event.type=\"mouseenter\";return jQuery.event.handle.apply(this,arguments);}},mouseleave:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind(\"mouseout\",jQuery.event.special.mouseleave.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind(\"mouseout\",jQuery.event.special.mouseleave.handler);return true;},handler:function(event){if(withinElement(event,this))return true;event.type=\"mouseleave\";return jQuery.event.handle.apply(this,arguments);}}}};jQuery.fn.extend({bind:function(type,data,fn){return type==\"unload\"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data);});},one:function(type,data,fn){var one=jQuery.event.proxy(fn||data,function(event){jQuery(this).unbind(event,one);return(fn||data).apply(this,arguments);});return this.each(function(){jQuery.event.add(this,type,one,fn&&data);});},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data,fn){return this.each(function(){jQuery.event.trigger(type,data,this,true,fn);});},triggerHandler:function(type,data,fn){return this[0]&&jQuery.event.trigger(type,data,this[0],false,fn);},toggle:function(fn){var args=arguments,i=1;while(i<args.length)jQuery.event.proxy(fn,args[i++]);return this.click(jQuery.event.proxy(fn,function(event){this.lastToggle=(this.lastToggle||0)%i;event.preventDefault();return args[this.lastToggle++].apply(this,arguments)||false;}));},hover:function(fnOver,fnOut){return this.bind('mouseenter',fnOver).bind('mouseleave',fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)fn.call(document,jQuery);else\njQuery.readyList.push(function(){return fn.call(this,jQuery);});return this;}});jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.call(document);});jQuery.readyList=null;}jQuery(document).triggerHandler(\"ready\");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener&&!jQuery.browser.opera)document.addEventListener(\"DOMContentLoaded\",jQuery.ready,false);if(jQuery.browser.msie&&window==top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll(\"left\");}catch(error){setTimeout(arguments.callee,0);return;}jQuery.ready();})();if(jQuery.browser.opera)document.addEventListener(\"DOMContentLoaded\",function(){if(jQuery.isReady)return;for(var i=0;i<document.styleSheets.length;i++)if(document.styleSheets[i].disabled){setTimeout(arguments.callee,0);return;}jQuery.ready();},false);if(jQuery.browser.safari){var numStyles;(function(){if(jQuery.isReady)return;if(document.readyState!=\"loaded\"&&document.readyState!=\"complete\"){setTimeout(arguments.callee,0);return;}if(numStyles===undefined)numStyles=jQuery(\"style, link[rel=stylesheet]\").length;if(document.styleSheets.length!=numStyles){setTimeout(arguments.callee,0);return;}jQuery.ready();})();}jQuery.event.add(window,\"load\",jQuery.ready);}jQuery.each((\"blur,focus,load,resize,scroll,unload,click,dblclick,\"+\"mousedown,mouseup,mousemove,mouseover,mouseout,change,select,\"+\"submit,keydown,keypress,keyup,error\").split(\",\"),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name);};});var withinElement=function(event,elem){var parent=event.relatedTarget;while(parent&&parent!=elem)try{parent=parent.parentNode;}catch(error){parent=elem;}return parent==elem;};jQuery(window).bind(\"unload\",function(){jQuery(\"*\").add(document).unbind();});jQuery.fn.extend({_load:jQuery.fn.load,load:function(url,params,callback){if(typeof url!='string')return this._load(url);var off=url.indexOf(\" \");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}callback=callback||function(){};var type=\"GET\";if(params)if(jQuery.isFunction(params)){callback=params;params=null;}else{params=jQuery.param(params);type=\"POST\";}var self=this;jQuery.ajax({url:url,type:type,dataType:\"html\",data:params,complete:function(res,status){if(status==\"success\"||status==\"notmodified\")self.html(selector?jQuery(\"<div/>\").append(res.responseText.replace(/<script(.|\\s)*?\\/script>/g,\"\")).find(selector):res.responseText);self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return jQuery.nodeName(this,\"form\")?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:val.constructor==Array?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each(\"ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend\".split(\",\"),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});var jsc=now();jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data=null;}return jQuery.ajax({type:\"GET\",url:url,data:data,success:callback,dataType:type});},getScript:function(url,callback){return jQuery.get(url,null,callback,\"script\");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,\"json\");},post:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data={};}return jQuery.ajax({type:\"POST\",url:url,data:data,success:callback,dataType:type});},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings);},ajaxSettings:{url:location.href,global:true,type:\"GET\",timeout:0,contentType:\"application/x-www-form-urlencoded\",processData:true,async:true,data:null,username:null,password:null,accepts:{xml:\"application/xml, text/xml\",html:\"text/html\",script:\"text/javascript, application/javascript\",json:\"application/json, text/javascript\",text:\"text/plain\",_default:\"*/*\"}},lastModified:{},ajax:function(s){s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));var jsonp,jsre=/=\\?(&|$)/g,status,data,type=s.type.toUpperCase();if(s.data&&s.processData&&typeof s.data!=\"string\")s.data=jQuery.param(s.data);if(s.dataType==\"jsonp\"){if(type==\"GET\"){if(!s.url.match(jsre))s.url+=(s.url.match(/\\?/)?\"&\":\"?\")+(s.jsonp||\"callback\")+\"=?\";}else if(!s.data||!s.data.match(jsre))s.data=(s.data?s.data+\"&\":\"\")+(s.jsonp||\"callback\")+\"=?\";s.dataType=\"json\";}if(s.dataType==\"json\"&&(s.data&&s.data.match(jsre)||s.url.match(jsre))){jsonp=\"jsonp\"+jsc++;if(s.data)s.data=(s.data+\"\").replace(jsre,\"=\"+jsonp+\"$1\");s.url=s.url.replace(jsre,\"=\"+jsonp+\"$1\");s.dataType=\"script\";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp];}catch(e){}if(head)head.removeChild(script);};}if(s.dataType==\"script\"&&s.cache==null)s.cache=false;if(s.cache===false&&type==\"GET\"){var ts=now();var ret=s.url.replace(/(\\?|&)_=.*?(&|$)/,\"$1_=\"+ts+\"$2\");s.url=ret+((ret==s.url)?(s.url.match(/\\?/)?\"&\":\"?\")+\"_=\"+ts:\"\");}if(s.data&&type==\"GET\"){s.url+=(s.url.match(/\\?/)?\"&\":\"?\")+s.data;s.data=null;}if(s.global&&!jQuery.active++)jQuery.event.trigger(\"ajaxStart\");var remote=/^(?:\\w+:)?\\/\\/([^\\/?#]+)/;if(s.dataType==\"script\"&&type==\"GET\"&&remote.test(s.url)&&remote.exec(s.url)[1]!=location.host){var head=document.getElementsByTagName(\"head\")[0];var script=document.createElement(\"script\");script.src=s.url;if(s.scriptCharset)script.charset=s.scriptCharset;if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState==\"loaded\"||this.readyState==\"complete\")){done=true;success();complete();head.removeChild(script);}};}head.appendChild(script);return undefined;}var requestDone=false;var xhr=window.ActiveXObject?new ActiveXObject(\"Microsoft.XMLHTTP\"):new XMLHttpRequest();if(s.username)xhr.open(type,s.url,s.async,s.username,s.password);else\nxhr.open(type,s.url,s.async);try{if(s.data)xhr.setRequestHeader(\"Content-Type\",s.contentType);if(s.ifModified)xhr.setRequestHeader(\"If-Modified-Since\",jQuery.lastModified[s.url]||\"Thu, 01 Jan 1970 00:00:00 GMT\");xhr.setRequestHeader(\"X-Requested-With\",\"XMLHttpRequest\");xhr.setRequestHeader(\"Accept\",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+\", */*\":s.accepts._default);}catch(e){}if(s.beforeSend&&s.beforeSend(xhr,s)===false){s.global&&jQuery.active--;xhr.abort();return false;}if(s.global)jQuery.event.trigger(\"ajaxSend\",[xhr,s]);var onreadystatechange=function(isTimeout){if(!requestDone&&xhr&&(xhr.readyState==4||isTimeout==\"timeout\")){requestDone=true;if(ival){clearInterval(ival);ival=null;}status=isTimeout==\"timeout\"&&\"timeout\"||!jQuery.httpSuccess(xhr)&&\"error\"||s.ifModified&&jQuery.httpNotModified(xhr,s.url)&&\"notmodified\"||\"success\";if(status==\"success\"){try{data=jQuery.httpData(xhr,s.dataType,s.dataFilter);}catch(e){status=\"parsererror\";}}if(status==\"success\"){var modRes;try{modRes=xhr.getResponseHeader(\"Last-Modified\");}catch(e){}if(s.ifModified&&modRes)jQuery.lastModified[s.url]=modRes;if(!jsonp)success();}else\njQuery.handleError(s,xhr,status);complete();if(s.async)xhr=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)setTimeout(function(){if(xhr){xhr.abort();if(!requestDone)onreadystatechange(\"timeout\");}},s.timeout);}try{xhr.send(s.data);}catch(e){jQuery.handleError(s,xhr,null,e);}if(!s.async)onreadystatechange();function success(){if(s.success)s.success(data,status);if(s.global)jQuery.event.trigger(\"ajaxSuccess\",[xhr,s]);}function complete(){if(s.complete)s.complete(xhr,status);if(s.global)jQuery.event.trigger(\"ajaxComplete\",[xhr,s]);if(s.global&&!--jQuery.active)jQuery.event.trigger(\"ajaxStop\");}return xhr;},handleError:function(s,xhr,status,e){if(s.error)s.error(xhr,status,e);if(s.global)jQuery.event.trigger(\"ajaxError\",[xhr,s,e]);},active:0,httpSuccess:function(xhr){try{return!xhr.status&&location.protocol==\"file:\"||(xhr.status>=200&&xhr.status<300)||xhr.status==304||xhr.status==1223||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader(\"Last-Modified\");return xhr.status==304||xhrRes==jQuery.lastModified[url]||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpData:function(xhr,type,filter){var ct=xhr.getResponseHeader(\"content-type\"),xml=type==\"xml\"||!type&&ct&&ct.indexOf(\"xml\")>=0,data=xml?xhr.responseXML:xhr.responseText;if(xml&&data.documentElement.tagName==\"parsererror\")throw\"parsererror\";if(filter)data=filter(data,type);if(type==\"script\")jQuery.globalEval(data);if(type==\"json\")data=eval(\"(\"+data+\")\");return data;},param:function(a){var s=[];if(a.constructor==Array||a.jquery)jQuery.each(a,function(){s.push(encodeURIComponent(this.name)+\"=\"+encodeURIComponent(this.value));});else\nfor(var j in a)if(a[j]&&a[j].constructor==Array)jQuery.each(a[j],function(){s.push(encodeURIComponent(j)+\"=\"+encodeURIComponent(this));});else\ns.push(encodeURIComponent(j)+\"=\"+encodeURIComponent(jQuery.isFunction(a[j])?a[j]():a[j]));return s.join(\"&\").replace(/%20/g,\"+\");}});jQuery.fn.extend({show:function(speed,callback){return speed?this.animate({height:\"show\",width:\"show\",opacity:\"show\"},speed,callback):this.filter(\":hidden\").each(function(){this.style.display=this.oldblock||\"\";if(jQuery.css(this,\"display\")==\"none\"){var elem=jQuery(\"<\"+this.tagName+\" />\").appendTo(\"body\");this.style.display=elem.css(\"display\");if(this.style.display==\"none\")this.style.display=\"block\";elem.remove();}}).end();},hide:function(speed,callback){return speed?this.animate({height:\"hide\",width:\"hide\",opacity:\"hide\"},speed,callback):this.filter(\":visible\").each(function(){this.oldblock=this.oldblock||jQuery.css(this,\"display\");this.style.display=\"none\";}).end();},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle.apply(this,arguments):fn?this.animate({height:\"toggle\",width:\"toggle\",opacity:\"toggle\"},fn,fn2):this.each(function(){jQuery(this)[jQuery(this).is(\":hidden\")?\"show\":\"hide\"]();});},slideDown:function(speed,callback){return this.animate({height:\"show\"},speed,callback);},slideUp:function(speed,callback){return this.animate({height:\"hide\"},speed,callback);},slideToggle:function(speed,callback){return this.animate({height:\"toggle\"},speed,callback);},fadeIn:function(speed,callback){return this.animate({opacity:\"show\"},speed,callback);},fadeOut:function(speed,callback){return this.animate({opacity:\"hide\"},speed,callback);},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);return this[optall.queue===false?\"each\":\"queue\"](function(){if(this.nodeType!=1)return false;var opt=jQuery.extend({},optall),p,hidden=jQuery(this).is(\":hidden\"),self=this;for(p in prop){if(prop[p]==\"hide\"&&hidden||prop[p]==\"show\"&&!hidden)return opt.complete.call(this);if(p==\"height\"||p==\"width\"){opt.display=jQuery.css(this,\"display\");opt.overflow=this.style.overflow;}}if(opt.overflow!=null)this.style.overflow=\"hidden\";opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(/toggle|show|hide/.test(val))e[val==\"toggle\"?hidden?\"show\":\"hide\":val](prop);else{var parts=val.toString().match(/^([+-]=)?([\\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||\"px\";if(unit!=\"px\"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;}if(parts[1])end=((parts[1]==\"-=\"?-1:1)*end)+start;e.custom(start,end,unit);}else\ne.custom(start,val,\"\");}});return true;});},queue:function(type,fn){if(jQuery.isFunction(type)||(type&&type.constructor==Array)){fn=type;type=\"fx\";}if(!type||(typeof type==\"string\"&&!fn))return queue(this[0],type);return this.each(function(){if(fn.constructor==Array)queue(this,type,fn);else{queue(this,type).push(fn);if(queue(this,type).length==1)fn.call(this);}});},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue)this.queue([]);this.each(function(){for(var i=timers.length-1;i>=0;i--)if(timers[i].elem==this){if(gotoEnd)timers[i](true);timers.splice(i,1);}});if(!gotoEnd)this.dequeue();return this;}});var queue=function(elem,type,array){if(elem){type=type||\"fx\";var q=jQuery.data(elem,type+\"queue\");if(!q||array)q=jQuery.data(elem,type+\"queue\",jQuery.makeArray(array));}return q;};jQuery.fn.dequeue=function(type){type=type||\"fx\";return this.each(function(){var q=queue(this,type);q.shift();if(q.length)q[0].call(this);});};jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&speed.constructor==Object?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&easing.constructor!=Function&&easing};opt.duration=(opt.duration&&opt.duration.constructor==Number?opt.duration:jQuery.fx.speeds[opt.duration])||jQuery.fx.speeds.def;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false)jQuery(this).dequeue();if(jQuery.isFunction(opt.old))opt.old.call(this);};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],timerId:null,fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig)options.orig={};}});jQuery.fx.prototype={update:function(){if(this.options.step)this.options.step.call(this.elem,this.now,this);(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if(this.prop==\"height\"||this.prop==\"width\")this.elem.style.display=\"block\";},cur:function(force){if(this.elem[this.prop]!=null&&this.elem.style[this.prop]==null)return this.elem[this.prop];var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=now();this.start=from;this.end=to;this.unit=unit||this.unit||\"px\";this.now=this.start;this.pos=this.state=0;this.update();var self=this;function t(gotoEnd){return self.step(gotoEnd);}t.elem=this.elem;jQuery.timers.push(t);if(jQuery.timerId==null){jQuery.timerId=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++)if(!timers[i]())timers.splice(i--,1);if(!timers.length){clearInterval(jQuery.timerId);jQuery.timerId=null;}},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(0,this.cur());if(this.prop==\"width\"||this.prop==\"height\")this.elem.style[this.prop]=\"1px\";jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=now();if(gotoEnd||t>this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var done=true;for(var i in this.options.curAnim)if(this.options.curAnim[i]!==true)done=false;if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,\"display\")==\"none\")this.elem.style.display=\"block\";}if(this.options.hide)this.elem.style.display=\"none\";if(this.options.hide||this.options.show)for(var p in this.options.curAnim)jQuery.attr(this.elem.style,p,this.options.orig[p]);}if(done)this.options.complete.call(this.elem);return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;this.pos=jQuery.easing[this.options.easing||(jQuery.easing.swing?\"swing\":\"linear\")](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();}return true;}};jQuery.extend(jQuery.fx,{speeds:{slow:600,fast:200,def:400},step:{scrollLeft:function(fx){fx.elem.scrollLeft=fx.now;},scrollTop:function(fx){fx.elem.scrollTop=fx.now;},opacity:function(fx){jQuery.attr(fx.elem.style,\"opacity\",fx.now);},_default:function(fx){fx.elem.style[fx.prop]=fx.now+fx.unit;}}});jQuery.fn.offset=function(){var left=0,top=0,elem=this[0],results;if(elem)with(jQuery.browser){var parent=elem.parentNode,offsetChild=elem,offsetParent=elem.offsetParent,doc=elem.ownerDocument,safari2=safari&&parseInt(version)<522&&!/adobeair/i.test(userAgent),css=jQuery.curCSS,fixed=css(elem,\"position\")==\"fixed\";if(elem.getBoundingClientRect){var box=elem.getBoundingClientRect();add(box.left+Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),box.top+Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));add(-doc.documentElement.clientLeft,-doc.documentElement.clientTop);}else{add(elem.offsetLeft,elem.offsetTop);while(offsetParent){add(offsetParent.offsetLeft,offsetParent.offsetTop);if(mozilla&&!/^t(able|d|h)$/i.test(offsetParent.tagName)||safari&&!safari2)border(offsetParent);if(!fixed&&css(offsetParent,\"position\")==\"fixed\")fixed=true;offsetChild=/^body$/i.test(offsetParent.tagName)?offsetChild:offsetParent;offsetParent=offsetParent.offsetParent;}while(parent&&parent.tagName&&!/^body|html$/i.test(parent.tagName)){if(!/^inline|table.*$/i.test(css(parent,\"display\")))add(-parent.scrollLeft,-parent.scrollTop);if(mozilla&&css(parent,\"overflow\")!=\"visible\")border(parent);parent=parent.parentNode;}if((safari2&&(fixed||css(offsetChild,\"position\")==\"absolute\"))||(mozilla&&css(offsetChild,\"position\")!=\"absolute\"))add(-doc.body.offsetLeft,-doc.body.offsetTop);if(fixed)add(Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));}results={top:top,left:left};}function border(elem){add(jQuery.curCSS(elem,\"borderLeftWidth\",true),jQuery.curCSS(elem,\"borderTopWidth\",true));}function add(l,t){left+=parseInt(l,10)||0;top+=parseInt(t,10)||0;}return results;};jQuery.fn.extend({position:function(){var left=0,top=0,results;if(this[0]){var offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].tagName)?{top:0,left:0}:offsetParent.offset();offset.top-=num(this,'marginTop');offset.left-=num(this,'marginLeft');parentOffset.top+=num(offsetParent,'borderTopWidth');parentOffset.left+=num(offsetParent,'borderLeftWidth');results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};}return results;},offsetParent:function(){var offsetParent=this[0].offsetParent;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&jQuery.css(offsetParent,'position')=='static'))offsetParent=offsetParent.offsetParent;return jQuery(offsetParent);}});jQuery.each(['Left','Top'],function(i,name){var method='scroll'+name;jQuery.fn[method]=function(val){if(!this[0])return;return val!=undefined?this.each(function(){this==window||this==document?window.scrollTo(!i?val:jQuery(window).scrollLeft(),i?val:jQuery(window).scrollTop()):this[method]=val;}):this[0]==window||this[0]==document?self[i?'pageYOffset':'pageXOffset']||jQuery.boxModel&&document.documentElement[method]||document.body[method]:this[0][method];};});jQuery.each([\"Height\",\"Width\"],function(i,name){var tl=i?\"Left\":\"Top\",br=i?\"Right\":\"Bottom\";jQuery.fn[\"inner\"+name]=function(){return this[name.toLowerCase()]()+num(this,\"padding\"+tl)+num(this,\"padding\"+br);};jQuery.fn[\"outer\"+name]=function(margin){return this[\"inner\"+name]()+num(this,\"border\"+tl+\"Width\")+num(this,\"border\"+br+\"Width\")+(margin?num(this,\"margin\"+tl)+num(this,\"margin\"+br):0);};});})();"
},
"cookies": [],
"headers": [
{
"name": "accept-ranges",
"value": "bytes"
},
{
"name": "age",
"value": "106278"
},
{
"name": "cache-control",
"value": "public, max-age=604800"
},
{
"name": "content-disposition",
"value": "attachment; filename=\"jquery-1.2.6.min.js\""
},
{
"name": "content-length",
"value": "55774"
},
{
"name": "content-type",
"value": "text/x-c; charset=us-ascii"
},
{
"name": "date",
"value": "Sun, 26 Dec 2010 21:40:02 GMT"
},
{
"name": "expires",
"value": "Sun, 02 Jan 2011 21:40:02 GMT"
},
{
"name": "last-modified",
"value": "Sat, 24 May 2008 18:25:48 GMT"
},
{
"name": "server",
"value": "DFE/largefile"
}
],
"headersSize": -1,
"httpVersion": "HTTP/1.1",
"redirectURL": "",
"status": 200,
"statusText": "OK"
},
"startedDateTime": "2010-12-28T03:11:23.056765Z",
"time": 1191,
"timings": {
"blocked": -1,
"connect": 57,
"dns": 45,
"receive": 988,
"send": 0,
"wait": 145
}
},
{
"cache": {},
"pageref": "page_1",
"request": {
"bodySize": 0,
"cookies": [],
"headers": [
{
"name": "accept",
"value": "*/*"