-
Notifications
You must be signed in to change notification settings - Fork 0
/
newvideos.htm
1454 lines (1200 loc) · 87.7 KB
/
newvideos.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--[if IE 7 | IE 8]>
<html class="ie" dir="ltr" lang="en">
<![endif]-->
<!--[if !(IE 7) | !(IE 8) ]><!-->
<html dir="ltr" lang="en">
<!--<![endif]-->
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=1024,maximum-scale=1.0">
<title>New videos from iTUBE</title>
<meta http-equiv="X-UA-Compatible" content="IE=9; IE=8; IE=7; IE=edge,chrome=1">
<meta name="title" content="New videos from iTUBE" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<link rel="shortcut icon" href="uploads/favicon.ico">
<link rel="alternate" type="application/rss+xml" title="New videos from iTUBE" href="rss.xml" />
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="stylesheet" type="text/css" media="screen" href="templates/default/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" media="screen" href="templates/default/css/bootstrap-responsive.min.css">
<!--[if lt IE 9]>
<script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
<![endif]-->
<link rel="stylesheet" type="text/css" media="screen" href="templates/default/css/new-style.css">
<link rel="stylesheet" type="text/css" media="screen" href="templates/default/css/uniform.default.min.css">
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700&subset=all" rel="stylesheet" type="text/css">
<!--[if IE]>
<link rel="stylesheet" type="text/css" media="screen" href="http://itube.co.ke/templates/default/css/new-style-ie.css">
<link href="http://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400italic" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Open+Sans:700" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Open+Sans:700italic" rel="stylesheet" type="text/css">
<![endif]-->
<script type="text/javascript">
var MELODYURL = "http://itube.co.ke";
var MELODYURL2 = "http://itube.co.ke";
var TemplateP = "http://itube.co.ke/templates/default";
var _LOGGEDIN_ = false ;
</script>
<script type="text/javascript">
var pm_lang = {
lights_off: "Lights off",
lights_on: "Lights on",
validate_name: "Please enter a name",
validate_username: "Please enter a username",
validate_pass: "Please provide a password",
validate_captcha: "Please enter the validation code",
validate_email: "Please enter a valid email address",
validate_agree: "Please accept our policy",
validate_name_long: "Your name must consist of at least 2 characters",
validate_username_long: "Your username must consist of at least 2 characters",
validate_pass_long: "Your password must be at least 5 characters long",
validate_confirm_pass_long: "Please enter the same password as above",
choose_category: "Please choose a category",
validate_select_file: "No file was selected/uploaded.",
validate_video_title: "Please enter a title for this video",
onpage_delete_favorite_confirm: "You are about to remove this video from your favorites list. Click 'Cancel' to stop, 'OK' to delete.",
please_wait: "Loading...",
// upload video page
swfupload_status_uploaded: "Uploaded",
swfupload_status_pending: "Continue with the rest of the form.",
swfupload_status_queued: "Queued",
swfupload_status_uploading: "Uploading...",
swfupload_file: "File",
swfupload_btn_select: "Select",
swfupload_btn_cancel: "Cancel",
swfupload_status_error: "Error",
swfupload_error_oversize: "Size of the selected file(s) is greater than allowed limit",
swfupload_friendly_maxsize: ""
}
</script>
<script type="text/javascript" src="js/swfobject.js"></script>
<style type="text/css"></style>
</head>
<body>
<header class="wide-header" id="overview">
<div class="row-fluid fixed960">
<div class="span3">
<a href="index.htm" rel="home"><img src="uploads/custom-logo.png" alt="iTUBE" title="iTUBE" border="0" /></a>
</div>
<div class="span6 wide-header-pad">
<form action="search.htm" method="get" id="search" name="search" onsubmit="return validateSearch('true');">
<div class="controls">
<div class="input-append">
<input class="span10" id="appendedInputButton" size="16" name="keywords" type="text" placeholder="Search" x-webkit-speech="x-webkit-speech" onwebkitspeechchange="this.form.submit();" onkeyup="lookup(this.value);" onblur="fill();" autocomplete="off"><button class="btn" type="submit"><i class="icon-search"></i></button>
</div>
<div class="suggestionsBox" id="suggestions" style="display: none;">
<div class="suggestionList input-xlarge" id="autoSuggestionsList">
</div>
</div>
</div>
</form>
</div>
<div class="span3 hidden-phone">
<div id="user-pane" class="border-radius4">
<div class="user-data">
<span class="user-avatar">
<a href="login.htm"><img src="templates/default/img/pm-avatar.png" width="40" height="40" alt=""></a>
<span class="greet-links">
<div class="ellipsis"><strong>Welcome</strong></div>
<span class="avatar-img"><a class="primary ajax-modal" data-toggle="modal" data-backdrop="true" data-keyboard="true" href="newvideos.htm#header-login-form">Login</a> / <a href="register.htm">Register</a></span>
</span>
</div>
</span>
<div class="modal hide" id="header-login-form" role="dialog" aria-labelledby="header-login-form-label"> <!-- login modal -->
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="header-login-form-label">Login</h3>
</div>
<div class="modal-body">
<p></p>
<form class="form-horizontal" name="login_form" id="login-form" method="post" action="login.htm">
<fieldset>
<div class="control-group">
<label class="control-label" for="username">Username/Email</label>
<div class="controls"><input type="text" class="hocusfocus input-large" id="hocusfocus" name="username" value=""></div>
</div>
<div class="control-group">
<label class="control-label" for="pass">Password</label>
<div class="controls"><input type="password" class="input-large" id="pass" name="pass" maxlength="32" autocomplete="off"></div>
</div>
<div class="control-group">
<div class="controls">
<label class="checkbox">
<input type="checkbox" name="remember" value="1" > <small>Remember me</small>
</label>
</div>
</div>
<div class="">
<div class="controls">
<button type="submit" name="Login" value="Login" class="btn btn-blue" data-loading-text="Login">Login</button>
<span class="signup"><small><a href="login_2.htm">Forgot your password?</a></small></span>
</div>
</div>
</fieldset>
</form> </div>
</div>
</div>
</div>
</div>
</header>
<nav class="wide-nav">
<div class="row-fluid fixed960">
<span class="span12">
<div class="navbar">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<div class="nav-collapse">
<ul class="nav">
<li><a href="index.htm" class="wide-nav-link">Home</a></li>
<li class="dropdown">
<a href="newvideos.htm#" class="dropdown-toggle wide-nav-link" data-toggle="dropdown">Category <b class="caret"></b></a>
<ul class="dropdown-menu">
<ul id='ul_categories'>
<li class=""><a href="category_2.htm" class="">Animals</a></li>
<li class=""><a href="category_14.htm" class="">Art</a></li>
<li class=""><a href="category.htm" class="">Auto-Motor</a></li>
<li class=""><a href="category_3.htm" class="">Celeb</a></li>
<li class=""><a href="category_5.htm" class="">College</a></li>
<li class=""><a href="category_4.htm" class="">Funny</a></li>
<li class=""><a href="category_6.htm" class="">Gaming</a></li>
<li class=""><a href="category_7.htm" class="">Lifestyle</a></li>
<li class=""><a href="category_8.htm" class="">Movies</a></li>
<li class=""><a href="category_9.htm" class="">Music</a></li>
<li class=""><a href="category_10.htm" class="">News</a></li>
<li class=""><a href="category_11.htm" class="">Sports</a></li>
<li class=""><a href="category_13.htm" class="">TV</a></li>
<li class=""><a href="category_12.htm" class="">Tech</a></li>
<li class=""><a href="category_17.htm" class="">Travel</a></li>
<li class=""><a href="category_15.htm" class="">Webcam</a></li>
<li class=""><a href="category_16.htm" class="">Live</a></li>
</ul>
</ul>
</li>
<li class="dropdown">
<a href="newvideos.htm#" class="dropdown-toggle wide-nav-link" data-toggle="dropdown">Articles <b class="caret"></b></a>
<ul class="dropdown-menu">
<ul id='ul_categories'>
<li><a href="article.htm">Latest articles</a></li><li ><a href="article_2.htm">Most popular</a></li><li class=""><a href="article_3.htm" class="">This is Kenya</a></li>
</ul>
</ul>
</li>
<li><a href="topvideos.htm" class="wide-nav-link">Top videos</a></li>
<li><a href="newvideos.htm" class="wide-nav-link">New videos</a></li>
<li><a href="http://itube.co.ke/randomizer.php" rel="nofollow" class="wide-nav-link">Random video</a></li>
<li><a href="contact_us.htm" class="wide-nav-link">Contact us</a></li>
</ul>
</div><!-- /.nav-collapse -->
</div>
</div><!-- /navbar-inner -->
</div><!-- /navbar -->
</span>
</div>
</nav>
<a id="top"></a>
<div class="pm-ad-zone" align="center"><!-- BEGIN JS TAG - Itube.co.ke 728x90 < - DO NOT MODIFY -->
<SCRIPT SRC="http://ads.fidelity-media.com/ttj?id=1160152&size=728x90&promo_sizes=300x50,320x50,468x60,216x36&promo_alignment=center" TYPE="text/javascript"></SCRIPT>
<!-- END TAG -->
</div>
<div id="wrapper">
<div class="container-fluid">
<div class="row-fluid">
<div class="span12">
<div id="primary">
<h1 class="entry-title">Recently added videos</h1>
<div class="btn-group btn-group-sort opac5">
<button class="btn btn-small" id="list"><i class="icon-th"></i> </button>
<button class="btn btn-small" id="grid"><i class="icon-th-list"></i> </button>
</div>
<form class="form-inline li-dropdown-inside opac7">
Added
<select name="categories" class="inp-small" size="1" onChange="javascript:document.location=this.value;">
<option value="" selected="selected">Select one</option>
<option value="http://itube.co.ke/newvideos.php">All time</option>
<option value="http://itube.co.ke/newvideos.php?d=today">Today</option>
<option value="http://itube.co.ke/newvideos.php?d=yesterday">Yesterday</option>
<option value="http://itube.co.ke/newvideos.php?d=month">This month</option>
</select>
</form>
<hr />
<ul class="pm-ul-new-videos thumbnails" id="pm-grid">
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="watch_2.htm" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s2.dmcdn.net/EDsvO.jpg" alt="Dawn of the Planet of the Apes - TV Spot" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="watch_2.htm" class="pm-title-link" title="Dawn of the Planet of the Apes - TV Spot">Dawn of the Planet of the Apes - TV Spot</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-04-08T07:09:29-0500" title="Tuesday, April 8, 2014 7:09 AM">1 week ago</time></small></span>
<span class="pm-video-attr-numbers"><small>2,437 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">A growing nation of genetically evolved apes led by Caesar is threatened by a band of human survivors of the devastating virus unleashed a decade earlier. They reach a fragile peace, but it proves short-lived, as both sides are brought to the brink of a w</p>
<span class="pm-video-li-info">
<span class="label label-featured">Featured</span>
</span>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="watch.htm" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s1.dmcdn.net/EBGNJ.jpg" alt="How To Train Your Dragon 2 - Itchy Armpit" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="watch.htm" class="pm-title-link" title="How To Train Your Dragon 2 - Itchy Armpit">How To Train Your Dragon 2 - Itchy Armpit</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-04-08T07:08:02-0500" title="Tuesday, April 8, 2014 7:08 AM">1 week ago</time></small></span>
<span class="pm-video-attr-numbers"><small>2,515 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">How To Train Your Dragon 2 - Itchy Armpit</p>
<span class="pm-video-li-info">
<span class="label label-featured">Featured</span>
</span>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="watch_3.htm" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s1.dmcdn.net/ECjbM.jpg" alt="The Amazing Spider-Man 2- Spidey's Epic Free Fall - Movie 2014" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="watch_3.htm" class="pm-title-link" title="The Amazing Spider-Man 2- Spidey's Epic Free Fall - Movie 2014">The Amazing Spider-Man 2- Spidey's Epic Free Fall - Movie 2014</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-04-08T07:05:13-0500" title="Tuesday, April 8, 2014 7:05 AM">1 week ago</time></small></span>
<span class="pm-video-attr-numbers"><small>2,415 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">The Amazing Spider-Man 2- Spidey's Epic Free Fall - Movie 2014 2014 Movies http://teaser-trailer.com/movies-2014.html</p>
<span class="pm-video-li-info">
<span class="label label-featured">Featured</span>
</span>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="watch_4.htm" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s1.dmcdn.net/D68i4.jpg" alt=""Shifter" - Live Action Sci-fi Short - CGI by The Hallivis Brothers HD" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="watch_4.htm" class="pm-title-link" title=""Shifter" - Live Action Sci-fi Short - CGI by The Hallivis Brothers HD">"Shifter" - Live Action Sci-fi Short - CGI by The Hallivis Brothers HD</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-04-08T07:03:39-0500" title="Tuesday, April 8, 2014 7:03 AM">1 week ago</time></small></span>
<span class="pm-video-attr-numbers"><small>2,525 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">www.hallivisbrothers.com contact:info@hallivisbrothers.com Like us on Facebook: https://www.facebook.com/SHIFTERFILM Los Angeles - 2023. James Striker is on the verge of bringing down the oppressive government that has crushed all freedom in the United St</p>
<span class="pm-video-li-info">
<span class="label label-featured">Featured</span>
</span>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="watch_5.htm" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s2.dmcdn.net/EDy5p.jpg" alt="Petit Prague" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="watch_5.htm" class="pm-title-link" title="Petit Prague">Petit Prague</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-04-08T07:01:48-0500" title="Tuesday, April 8, 2014 7:01 AM">1 week ago</time></small></span>
<span class="pm-video-attr-numbers"><small>2,435 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">Prague, the Czech capital, is also known as the "Golden City". Take a boat ride on the Vltava and travel through this amazing city and see all the major attractions from incredible vantage points. The busy Charles Bridge has never looked more adorable. A </p>
<span class="pm-video-li-info">
<span class="label label-featured">Featured</span>
</span>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="watch_6.htm" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s2.dmcdn.net/EAXsu.jpg" alt="The Ultimate Boat Fails Compilation" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="watch_6.htm" class="pm-title-link" title="The Ultimate Boat Fails Compilation">The Ultimate Boat Fails Compilation</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-04-08T06:59:58-0500" title="Tuesday, April 8, 2014 6:59 AM">1 week ago</time></small></span>
<span class="pm-video-attr-numbers"><small>2,463 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">The Ultimate Boat Fails Compilation</p>
<span class="pm-video-li-info">
<span class="label label-featured">Featured</span>
</span>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="watch_8.htm" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s1.dmcdn.net/D_0xA.jpg" alt="Schwarzenegger and Fallon Star in Hilarious QVC Skit" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="watch_8.htm" class="pm-title-link" title="Schwarzenegger and Fallon Star in Hilarious QVC Skit">Schwarzenegger and Fallon Star in Hilarious QVC Skit</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-04-08T06:57:28-0500" title="Tuesday, April 8, 2014 6:57 AM">1 week ago</time></small></span>
<span class="pm-video-attr-numbers"><small>2,475 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">As part of 'The Tonight Show Starring Jimmy Fallon', the duo took part in a QVC skit, which showcased the men donning blue aprons with Fallon being the lucky one who got to wear a very realistic blonde wig. What a pair Jimmy Fallon and Arnold Schwarzenegg</p>
<span class="pm-video-li-info">
<span class="label label-featured">Featured</span>
</span>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="watch_11.htm" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s2.dmcdn.net/EEw3k.jpg" alt="Gwyneth Paltrow Says Working Moms Have it Easier, Twitter Reacts" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="watch_11.htm" class="pm-title-link" title="Gwyneth Paltrow Says Working Moms Have it Easier, Twitter Reacts">Gwyneth Paltrow Says Working Moms Have it Easier, Twitter Reacts</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-04-04T04:13:39-0500" title="Friday, April 4, 2014 4:13 AM">2 weeks ago</time></small></span>
<span class="pm-video-attr-numbers"><small>10.5k Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">Gwyneth Paltrow ignited a firestorm after telling E! News that she thinks working as a movie star as a mom is hard, whereas moms who work regular office jobs have it easier. As John Basedow (@JohnBasedow) reports, this comment did not sit well on Twitter.</p>
<span class="pm-video-li-info">
<span class="label label-featured">Featured</span>
</span>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="watch_9.htm" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s2.dmcdn.net/D43pv.jpg" alt="Exclusive Episode of Parked: Explaining What St. Patrick's Day is Really About" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="watch_9.htm" class="pm-title-link" title="Exclusive Episode of Parked: Explaining What St. Patrick's Day is Really About">Exclusive Episode of Parked: Explaining What St. Patrick's Day is Really About</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-03-19T04:45:29-0500" title="Wednesday, March 19, 2014 4:45 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>2,728 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">Dressed in shades of green St. Patrick's Day costumes Tim (Kirby Morrow), Jesse (David Lewis), Davinder (Sean Amsing) and Josh (Matty Granger) share nips of green beer and drams of concealed whiskey at their local Family Drop-in Centre. Here, they share a</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="watch_10.htm" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s1.dmcdn.net/DxaPt.jpg" alt="The Mashup Getdown Brings American Hustle to Rapping Hustlers" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="watch_10.htm" class="pm-title-link" title="The Mashup Getdown Brings American Hustle to Rapping Hustlers">The Mashup Getdown Brings American Hustle to Rapping Hustlers</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-03-19T04:42:05-0500" title="Wednesday, March 19, 2014 4:42 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>2,707 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">"American Hustlers" is the fourth installment of "The Mashup Getdown" in which the "American Hustle" movie meets rapping hustlers. American Hustle is a 2013 American crime comedy-drama film directed by David O. Russell, loosely based on the FBI ABSCAM ope</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="watch_12.htm" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="templates/default/img/no-thumbnail.jpg" alt="Share the latest trailer of the upcoming movie The Muppets: Most Wanted" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="watch_12.htm" class="pm-title-link" title="Share the latest trailer of the upcoming movie The Muppets: Most Wanted">Share the latest trailer of the upcoming movie The Muppets: Most Wanted</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-03-19T04:40:09-0500" title="Wednesday, March 19, 2014 4:40 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>1,918 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">http://www.myfilm.gr/13268 - https://www.facebook.com/myfilm.gr In theaters: March 21th, 2014 Copyright © 2014 Walt Disney Studios Motion Pictures Muppets Most Wanted - trailer #2 [HD] (2014) του Τζέιμς &Mu</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="watch_13.htm" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s2.dmcdn.net/DycSf.jpg" alt="Share the latest trailer of the upcoming movie The Muppets: Most Wanted" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="watch_13.htm" class="pm-title-link" title="Share the latest trailer of the upcoming movie The Muppets: Most Wanted">Share the latest trailer of the upcoming movie The Muppets: Most Wanted</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-03-19T04:40:09-0500" title="Wednesday, March 19, 2014 4:40 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>2,732 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">http://www.myfilm.gr/13268 - https://www.facebook.com/myfilm.gr In theaters: March 21th, 2014 Copyright © 2014 Walt Disney Studios Motion Pictures Muppets Most Wanted - trailer #2 [HD] (2014) του Τζέιμς &Mu</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="http://itube.co.ke/watch.php?vid=088b88672" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s1.dmcdn.net/D4IL3.jpg" alt="BuzzFeed Has Just Hired New Interns: The Muppets!" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="http://itube.co.ke/watch.php?vid=088b88672" class="pm-title-link" title="BuzzFeed Has Just Hired New Interns: The Muppets!">BuzzFeed Has Just Hired New Interns: The Muppets!</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-03-19T04:38:18-0500" title="Wednesday, March 19, 2014 4:38 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>2,776 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">In case you were wondering, the Muppets do not make good interns.</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="http://itube.co.ke/watch.php?vid=c65a7d79a" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s2.dmcdn.net/D4qqC.jpg" alt="Share the Best Redhead Fails the Internet Has to Offer" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="http://itube.co.ke/watch.php?vid=c65a7d79a" class="pm-title-link" title="Share the Best Redhead Fails the Internet Has to Offer">Share the Best Redhead Fails the Internet Has to Offer</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-03-19T04:36:27-0500" title="Wednesday, March 19, 2014 4:36 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>2,783 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">In honor of St. Patrick's Day this coming Monday, we proudly present the best Redhead fails the internet has to offer.</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="http://itube.co.ke/watch.php?vid=8ad6bc253" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s1.dmcdn.net/D6lPt.jpg" alt="This Diver Puts Sharks in a Trance" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="http://itube.co.ke/watch.php?vid=8ad6bc253" class="pm-title-link" title="This Diver Puts Sharks in a Trance">This Diver Puts Sharks in a Trance</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-03-19T04:34:15-0500" title="Wednesday, March 19, 2014 4:34 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>2,744 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">A diver puts a Caribbean reef shark into a trance using just his hands. British underwater photographer Simon Enderby captured the amazing moment during a routine feeding dive off the coast of the Bahamas. One diver can be seen reaching out to touch the s</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="http://itube.co.ke/watch.php?vid=76178ee58" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="templates/default/img/no-thumbnail.jpg" alt="Geo Da Silva & Jack Mazzoni: the Latest Hit by Blanco y Negro Music" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="http://itube.co.ke/watch.php?vid=76178ee58" class="pm-title-link" title="Geo Da Silva & Jack Mazzoni: the Latest Hit by Blanco y Negro Music">Geo Da Silva & Jack Mazzoni: the Latest Hit by Blanco y Negro Music</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-03-19T04:32:50-0500" title="Wednesday, March 19, 2014 4:32 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>2,829 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">Buy It On/ Cómpralo: iTunes: Coming Soon! Google Play: Coming Soon! Beatport: Coming Soon! Listen/ Escúchalo: Spotify: Coming Soon! Deezer: Coming Soon! Sigue todas nuestras novedades/ Discover new videos: http://smarturl.it/BYNSub Disfruta </p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="http://itube.co.ke/watch.php?vid=294398f01" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s2.dmcdn.net/D4hIc.jpg" alt="Discover the Weirdest Tech Featured at South by Southwest" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="http://itube.co.ke/watch.php?vid=294398f01" class="pm-title-link" title="Discover the Weirdest Tech Featured at South by Southwest">Discover the Weirdest Tech Featured at South by Southwest</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-03-19T04:28:05-0500" title="Wednesday, March 19, 2014 4:28 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>2,765 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">Real-life “Mission Impossible”? Personal satellites? Finger guns? It must be South by Southwest. Personal Tech columnist Geoffrey Fowler reports on the weirdest tech in Austin. Copyright 2014, Dow Jones & Company, Inc.</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="watch_20.htm" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s1.dmcdn.net/D6qQH.jpg" alt="The Gootecks and Mike Ross Introduce You to SXSW's Cosplay Event" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="watch_20.htm" class="pm-title-link" title="The Gootecks and Mike Ross Introduce You to SXSW's Cosplay Event">The Gootecks and Mike Ross Introduce You to SXSW's Cosplay Event</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-03-19T04:26:17-0500" title="Wednesday, March 19, 2014 4:26 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>2,853 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">Gootecks interviews DugFinn, the fabulous host and organizer of the Cosplay Competition on the SXSW Geek Stage at Palmer Events Center's SXSW Gaming Expo 2014 in Austin, TX. Check out some of the amazing costumes! Dugfinn is an award winning cosplayer and</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="http://itube.co.ke/watch.php?vid=b7c23f5a4" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s2.dmcdn.net/D63eP.jpg" alt="Laura Leishman is out with the best artists in town: Tiesto, Liz, and Lady Gaga!" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="http://itube.co.ke/watch.php?vid=b7c23f5a4" class="pm-title-link" title="Laura Leishman is out with the best artists in town: Tiesto, Liz, and Lady Gaga!">Laura Leishman is out with the best artists in town: Tiesto, Liz, and Lady Gaga!</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-03-19T04:20:15-0500" title="Wednesday, March 19, 2014 4:20 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>2,667 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">Last day of Laura Leishman at SXSW 2014! Tiesto djing in a shack! Liz & Shy Girls sing their favourite Disney songs! I get front row for Lady Gaga (sort of) !</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="pm-label-duration border-radius3 opac7">00:48</span> </span>
<a href="http://itube.co.ke/watch.php?vid=a39df32b3" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="templates/default/img/no-thumbnail.jpg" alt="Diskussion zu dem Thema Anti-Aging in Social Media" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="http://itube.co.ke/watch.php?vid=a39df32b3" class="pm-title-link" title="Diskussion zu dem Thema Anti-Aging in Social Media">Diskussion zu dem Thema Anti-Aging in Social Media</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="http://itube.co.ke/profile.php?u=expalaspresse">AnnikaHeinz</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-03-19T02:31:37-0500" title="Wednesday, March 19, 2014 2:31 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>43 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">Die ewige Schönheit war schon immer eine Sehnsucht der Menschen. Gleichzeitig wird unsere Gesellschaft im Schnitt jedoch älter. "Anti-Aging" ist das Stichwort aus der heutigen Zeit. Was kann ich tun, um jung zu bleiben? Dieser Informationsaustausch soll n</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="pm-label-duration border-radius3 opac7">00:48</span> </span>
<a href="http://itube.co.ke/watch.php?vid=83aecd9d8" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="templates/default/img/no-thumbnail.jpg" alt="Die Thematik Burn-Out in den sozialen Netzwerken" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="http://itube.co.ke/watch.php?vid=83aecd9d8" class="pm-title-link" title="Die Thematik Burn-Out in den sozialen Netzwerken">Die Thematik Burn-Out in den sozialen Netzwerken</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="http://itube.co.ke/profile.php?u=expalaspresse">AnnikaHeinz</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-03-19T02:31:37-0500" title="Wednesday, March 19, 2014 2:31 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>37 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">Stress lässt sich kaum vermeiden... aber Burnout kann man verhindern. Zuviel Belastung kann nicht nur unangenehm sein. Es kann sogar krank machen. Und wenn wir nicht aufpassen, entsteht daraus ein starker Burn-Out mit schwerwiegenden Folgen. Aber was könn</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
</span>
<a href="http://itube.co.ke/watch.php?vid=4b7c6cb9a" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://itube.co.ke/uploads/thumbs/4b7c6cb9a-1.jpg" alt="Ist die chinesische Goji-Beere wirklich so gesund?" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="http://itube.co.ke/watch.php?vid=4b7c6cb9a" class="pm-title-link" title="Ist die chinesische Goji-Beere wirklich so gesund?">Ist die chinesische Goji-Beere wirklich so gesund?</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="http://itube.co.ke/profile.php?u=expalaspresse">AnnikaHeinz</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-03-19T02:31:37-0500" title="Wednesday, March 19, 2014 2:31 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>54 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">http://www.y54.de/umor Die Goji-Frucht wird von mehreren Forschern als wertvolles Nahrungsmittel mit einem hohen Gehalt an Vital- und Nährstoffen ausgepriesen. Für die Diskussion rund um die Beere gibt es nun auch Plattformen in den Sozialen Netzwerken.</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="http://itube.co.ke/watch.php?vid=44faa1e51" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s1.dmcdn.net/DcOgz.jpg" alt="2014 Oscar Nominees: Best Supporting Actress" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="http://itube.co.ke/watch.php?vid=44faa1e51" class="pm-title-link" title="2014 Oscar Nominees: Best Supporting Actress">2014 Oscar Nominees: Best Supporting Actress</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-03-07T04:28:57-0600" title="Friday, March 7, 2014 4:28 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>879 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">Check out 2014 Oscar nominees for best supporting actress.</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="http://itube.co.ke/watch.php?vid=739ee5da9" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s2.dmcdn.net/Dy1zr.jpg" alt="Harry Potter Retold: Awesome Stories!" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="http://itube.co.ke/watch.php?vid=739ee5da9" class="pm-title-link" title="Harry Potter Retold: Awesome Stories!">Harry Potter Retold: Awesome Stories!</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-03-07T04:16:47-0600" title="Friday, March 7, 2014 4:16 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>924 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">Watch Harry Potter Retold By People Who've Never Seen Or Read It Spoiler alert: These people have no idea what they're talking about.</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="http://itube.co.ke/watch.php?vid=59b0135ca" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s2.dmcdn.net/DxJlX.jpg" alt="Obama and Biden film a 'workout' video together" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="http://itube.co.ke/watch.php?vid=59b0135ca" class="pm-title-link" title="Obama and Biden film a 'workout' video together">Obama and Biden film a 'workout' video together</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-03-07T04:15:14-0600" title="Friday, March 7, 2014 4:15 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>936 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">US President Barack Obama and Vice President Joe Biden have been jogging around the White House to show support for first lady Michelle Obama's nationwide "Let's Move" campaign.</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="http://itube.co.ke/watch.php?vid=0d44aa609" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s1.dmcdn.net/DwPD2.jpg" alt="The Ultimate Bad Acting Compilation" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="http://itube.co.ke/watch.php?vid=0d44aa609" class="pm-title-link" title="The Ultimate Bad Acting Compilation">The Ultimate Bad Acting Compilation</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-03-07T04:13:51-0600" title="Friday, March 7, 2014 4:13 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>931 Views / 1 Likes</small></span>
</div>
<p class="pm-video-attr-desc">Some actors are so bad that they're actually better than those so-called "good actors."</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="http://itube.co.ke/watch.php?vid=26265b203" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s2.dmcdn.net/DyuXx.jpg" alt="The Oscars in 2 minutes" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="http://itube.co.ke/watch.php?vid=26265b203" class="pm-title-link" title="The Oscars in 2 minutes">The Oscars in 2 minutes</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-03-07T04:10:11-0600" title="Friday, March 7, 2014 4:10 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>885 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">From red carpet falls to rising stars, the 2014 Academy Awards hosted by Ellen DeGeneres was a night to remember.</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="http://itube.co.ke/watch.php?vid=faec8bedd" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s2.dmcdn.net/DyzYB.jpg" alt="Micro Macau" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="http://itube.co.ke/watch.php?vid=faec8bedd" class="pm-title-link" title="Micro Macau">Micro Macau</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-03-07T04:07:38-0600" title="Friday, March 7, 2014 4:07 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>998 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">Macau has become known as the "Las Vegas of the Far East". Travel through the city and the amazing casinos of this former Portuguese colony in miniature size. Macau has never looked more adorable. A time-lapse tilt-shift film by Joerg Daiber. Facebook: ht</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="http://itube.co.ke/watch.php?vid=308f7c86a" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s2.dmcdn.net/DxNgT.jpg" alt="10 Funniest Oscar Moments" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="http://itube.co.ke/watch.php?vid=308f7c86a" class="pm-title-link" title="10 Funniest Oscar Moments">10 Funniest Oscar Moments</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-03-06T06:26:19-0600" title="Thursday, March 6, 2014 6:26 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>944 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">Check out the 10 funniest Oscar moments.</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
</span>
<a href="http://itube.co.ke/watch.php?vid=5fc4180f3" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="templates/default/img/no-thumbnail.jpg" alt="n/a" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="http://itube.co.ke/watch.php?vid=5fc4180f3" class="pm-title-link" title="n/a">n/a</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="http://itube.co.ke/profile.php?u=jean01r">JeanRhee</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-03-03T01:46:09-0600" title="Monday, March 3, 2014 1:46 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>49 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">You are seeing this because the user has not finished the upload process by submitting the Upload Form.Now, you can either Edit & Approve this item or Delete it.</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="pm-label-duration border-radius3 opac7">04:09</span> </span>
<a href="http://itube.co.ke/watch.php?vid=1aa70ea10" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="templates/default/img/no-thumbnail.jpg" alt="Plantar Fibroma Information and Treatment" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="http://itube.co.ke/watch.php?vid=1aa70ea10" class="pm-title-link" title="Plantar Fibroma Information and Treatment">Plantar Fibroma Information and Treatment</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="http://itube.co.ke/profile.php?u=jean01r">JeanRhee</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-03-03T01:46:09-0600" title="Monday, March 3, 2014 1:46 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>91 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">Dr. J. Robert Faux explains Plantar Fibromas and how to live with and treat them.</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="http://itube.co.ke/watch.php?vid=192a26612" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s2.dmcdn.net/Dstyf.jpg" alt="Shark Attacks Camera" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="http://itube.co.ke/watch.php?vid=192a26612" class="pm-title-link" title="Shark Attacks Camera">Shark Attacks Camera</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-02-27T00:45:18-0600" title="Thursday, February 27, 2014 12:45 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>1,844 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">Shark Bite: Hammerhead Bares Its Teeth For Diver's Camera A SHARK reveals its fearsome teeth - trying to take a bite out of a camera on the ocean floor. This close encounter was captured by wildlife photographer Amos Nachoum, 63, from Israel, during one o</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="http://itube.co.ke/watch.php?vid=6a4c89630" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s2.dmcdn.net/Dthuf.jpg" alt="Best Fails of the Week 3 February 2014" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="http://itube.co.ke/watch.php?vid=6a4c89630" class="pm-title-link" title="Best Fails of the Week 3 February 2014">Best Fails of the Week 3 February 2014</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-02-27T00:43:53-0600" title="Thursday, February 27, 2014 12:43 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>2,235 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">This Week's Best Fails</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="http://itube.co.ke/watch.php?vid=43e103c33" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s2.dmcdn.net/DtIzp.jpg" alt="10 Things You Didn't Know About South Park" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="http://itube.co.ke/watch.php?vid=43e103c33" class="pm-title-link" title="10 Things You Didn't Know About South Park">10 Things You Didn't Know About South Park</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-02-27T00:42:30-0600" title="Thursday, February 27, 2014 12:42 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>1,865 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">Talking poops, Jesus fighting Santa and Cartman. It can o...</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="http://itube.co.ke/watch.php?vid=18074187f" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s2.dmcdn.net/Ds5O3.jpg" alt="Discover "Parked": Brand New Series" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="http://itube.co.ke/watch.php?vid=18074187f" class="pm-title-link" title="Discover "Parked": Brand New Series">Discover "Parked": Brand New Series</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-02-27T00:41:15-0600" title="Thursday, February 27, 2014 12:41 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>1,883 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">Set in the Pacific Northwest, PARKED follows a group of early 30’s long-time friends now faced with the realities of life as they come face to face with the fact that who they are isn’t who they imagined they’d be and if they aren’</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>
<a href="http://itube.co.ke/watch.php?vid=2fa8a59cc" class="pm-thumb-fix pm-thumb-145"><span class="pm-thumb-fix-clip"><img src="http://s2.dmcdn.net/Dss8Z.jpg" alt="Sonic (Remi Gaillard)" width="145"><span class="vertical-align"></span></span></a>
</span>
<h3 dir="ltr"><a href="http://itube.co.ke/watch.php?vid=2fa8a59cc" class="pm-title-link" title="Sonic (Remi Gaillard)">Sonic (Remi Gaillard)</a></h3>
<div class="pm-video-attr">
<span class="pm-video-attr-author">by <a href="profile.htm">Admin</a></span>
<span class="pm-video-attr-since"><small>Added <time datetime="2014-02-27T00:39:52-0600" title="Thursday, February 27, 2014 12:39 AM">1 month ago</time></small></span>
<span class="pm-video-attr-numbers"><small>1,873 Views / 0 Likes</small></span>
</div>
<p class="pm-video-attr-desc">Après Mario et Pacman, Rémi continue d'explorer l'univers des jeux vidéos ! Voici Sonic... La police !</p>
</div>
</li>
<li>
<div class="pm-li-video">
<span class="pm-video-thumb pm-thumb-138 pm-thumb border-radius2">
<span class="pm-video-li-thumb-info">
<span class="label label-pop">Popular</span> </span>