btjunkie 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,4 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
data/.rspec ADDED
@@ -0,0 +1,5 @@
1
+ --color
2
+ -fs
3
+ -Ilib
4
+ -Ispec
5
+ --require spec_helper
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in btjunkie.gemspec
4
+ gemspec
@@ -0,0 +1,2 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
@@ -0,0 +1,66 @@
1
+ # Btjunkie
2
+
3
+ Unofficial API for [Btjunkie](http://btjunkie.org/).
4
+
5
+ ## How to use
6
+
7
+ Fetch torrents from the [video section](http://btjunkie.org/browse/Video?o=72&t=0).
8
+
9
+ ### Most recent
10
+
11
+ ```` ruby
12
+ Btjunkie.category(:movies)
13
+ ````
14
+
15
+ ### Specify a page
16
+
17
+ ```` ruby
18
+ Btjunkie.page(12).category(:movies)
19
+ ````
20
+
21
+ Default is `1`.
22
+
23
+ ### Cookies
24
+
25
+ Btjunkie requires that you pass some cookies to fetch there data.
26
+ You can easily do that by specifying the `sessid`.
27
+
28
+ ```` ruby
29
+ Btjunkie.cookies({
30
+ sessid: "1212lksdjfkj3lkeda090w83922af6b"
31
+ })
32
+ ````
33
+
34
+ ## Data to work with
35
+
36
+ As soon as the `results` method is applied to the query a request to *Btjunkie* is made.
37
+ The `results` method returns a list of `Torrent` object with the following methods.
38
+
39
+ - **title** (*String*) The title.
40
+ - **details** (*String*) The url to the details page.
41
+ - **torrent** (*String*) The url. This should be a direct link to the torrent.
42
+ - **tid** (*String*) The `tid` method, also known as `torrent id` is a *truly* unique identifier for all torrents. It is generated using a [MD5](http://sv.wikipedia.org/wiki/MD5) with the torrent domain and the `id` method as a seed.
43
+ - **torrent_id** (*String*) The same as the `tid` method.
44
+ - **dead?** (*Boolean*) Check to see if the torrent has no seeders. If it has no seeders, then `dead?` will be true.
45
+ - **id** (*Fixnum*) An unique id for the torrent. The id is only unique for this specific torrent, not all torrents.
46
+ - **seeders** (*Fixnum*) The amount of seeders.
47
+ - **subtitle** (*[Undertexter](https://github.com/oleander/Undertexter)*) The subtitle for the torrent. Takes one argument, the language for the subtitle. Default is `:english`. Read more about it [here](https://github.com/oleander/Undertexter).
48
+ - **movie** (*[MovieSearcher](https://github.com/oleander/MovieSearcher)*) Read more about the returned object at the [MovieSearcher](https://github.com/oleander/MovieSearcher) project page.
49
+
50
+ ```` ruby
51
+ torrents = Btjunkie.category(:movies).results
52
+ puts torrents.class # => Array
53
+ puts torrents.first.class # => BtjunkieContainer::Torrent
54
+ ````
55
+
56
+ ## How do install
57
+
58
+ [sudo] gem install btjunkie
59
+
60
+ ## Requirements
61
+
62
+ *Btjunkie* is tested in *OS X 10.6.7* using Ruby *1.8.7*, *1.9.2*.
63
+
64
+ ## License
65
+
66
+ *Btjunkie* is released under the *MIT license*.
@@ -0,0 +1,27 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+
4
+ Gem::Specification.new do |s|
5
+ s.name = "btjunkie"
6
+ s.version = "0.0.1"
7
+ s.platform = Gem::Platform::RUBY
8
+ s.authors = ["Linus Oleander"]
9
+ s.email = ["linus@oleander.nu"]
10
+ s.homepage = ""
11
+ s.summary = %q{The unofficial API for btjunkie.org}
12
+ s.description = %q{The unofficial API for btjunkie.org.}
13
+
14
+ s.rubyforge_project = "btjunkie"
15
+
16
+ s.files = `git ls-files`.split("\n")
17
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
+ s.require_paths = ["lib"]
20
+
21
+ s.add_dependency("rest-client")
22
+ s.add_dependency("abstract")
23
+ s.add_dependency("nokogiri")
24
+
25
+ s.add_development_dependency("rspec")
26
+ s.add_development_dependency("webmock")
27
+ end
@@ -0,0 +1,69 @@
1
+ require "rest-client"
2
+ require "nokogiri"
3
+ require "abstract"
4
+ require "btjunkie/torrent"
5
+ require "movie_searcher"
6
+ require "undertexter"
7
+
8
+ class Btjunkie
9
+ def initialize
10
+ @page = 1
11
+ @categories = {
12
+ :movies => "http://btjunkie.org/browse/Video?o=72&t=1&s=1&p=<PAGE>"
13
+ }
14
+ end
15
+
16
+ def page(page)
17
+ tap { @page = page }
18
+ end
19
+
20
+ def cookies(cookies)
21
+ tap { @cookies = cookies }
22
+ end
23
+
24
+ def category(what)
25
+ tap { @url = @categories[what] }
26
+ end
27
+
28
+ def results
29
+ @_torrents ||= scrape
30
+ end
31
+
32
+ def self.method_missing(meth, *args, &blk)
33
+ Btjunkie.new.send(meth, *args, &blk)
34
+ end
35
+
36
+ private
37
+ def scrape
38
+ if @url.nil?
39
+ raise ArgumentError.new "You need to specify a category"
40
+ elsif @cookies.nil?
41
+ raise ArgumentError.new "You need to specify a cookie using #cookies"
42
+ end
43
+
44
+ content.css("table.tab_results tr").reject do |tr|
45
+ tr.at_css("th.label").nil? or
46
+ tr.at_css("font[color='#32CD32']").nil?
47
+ end.map do |tr|
48
+ a = tr.css("a");
49
+ BtjunkieContainer::Torrent.new({
50
+ :torrent => a[0].attr("href"),
51
+ :details => a[2].attr("href"),
52
+ :title => a[2].content,
53
+ :seeders => tr.at_css("font[color='#32CD32']").text
54
+ })
55
+ end
56
+ end
57
+
58
+ def url
59
+ @_url ||= @url.gsub("<PAGE>", @page.to_s)
60
+ end
61
+
62
+ def download
63
+ @_download ||= RestClient.get(url, :timeout => 10)
64
+ end
65
+
66
+ def content
67
+ @_content ||= Nokogiri::HTML(download)
68
+ end
69
+ end
@@ -0,0 +1,69 @@
1
+ require "digest/md5"
2
+
3
+ module BtjunkieContainer
4
+ class Torrent
5
+ attr_accessor :title, :torrent
6
+ def initialize(args)
7
+ @_subtitle = {}
8
+ args.keys.each { |name| instance_variable_set "@" + name.to_s, args[name] }
9
+ end
10
+
11
+ # Is the torrent dead?
12
+ # The definition of dead is; no seeders
13
+ # Returns a boolean
14
+ def dead?
15
+ seeders <= 0
16
+ end
17
+
18
+ def seeders
19
+ @_seeders ||= @seeders.to_i
20
+ end
21
+
22
+ # Generates an id using the details url
23
+ def id
24
+ @_id ||= torrent.match(/(\w+)\/download\.torrent$/)[1]
25
+ end
26
+
27
+ # Returns the domain for the torrent, without http or www
28
+ # If the domain for some reason isn't found, it will use an empty string
29
+ def domain
30
+ "btjunkie.org"
31
+ end
32
+
33
+ # Returns a unique id for the torrent based on the domain and the id of the torrent
34
+ def tid
35
+ @_tid ||= Digest::MD5.hexdigest("#{domain}#{id}")
36
+ rescue => error
37
+ raise "Details: #{details} #{error}"
38
+ end
39
+
40
+ # Just a mirror method for {tid}, just in case someone don't like the method name tid
41
+ def torrent_id
42
+ @_torrent_id ||= tid
43
+ end
44
+
45
+ # Returns an movie_searcher object based on the imdb_id, if it exists, otherwise the torrent title
46
+ # Read more about it here: https://github.com/oleander/MovieSearcher
47
+ # Return type: A MovieSearcher object or nil
48
+ def movie
49
+ @_movie ||= MovieSearcher.find_by_release_name(title, options: {
50
+ :details => true
51
+ })
52
+ end
53
+
54
+ # Returns a Undertexter object, if we found a imdb_id, otherwise nil
55
+ # Read more about it here: https://github.com/oleander/Undertexter
56
+ # Return type: A single Undertexter object or nil
57
+ def subtitle(option = :english)
58
+ @_subtitle[option] ||= Undertexter.find(movie.imdb_id, language: option).based_on(title)
59
+ end
60
+
61
+ def details
62
+ @_details ||= "http://#{domain}#{@details}"
63
+ end
64
+
65
+ def imdb_id; nil; end
66
+
67
+ alias_method :torrent_id, :id
68
+ end
69
+ end
@@ -0,0 +1,69 @@
1
+ require "spec_helper"
2
+
3
+ describe Btjunkie do
4
+ describe "#page" do
5
+ it "should be possible pass a page" do
6
+ Btjunkie.page(10).should be_instance_of(Btjunkie)
7
+ end
8
+ end
9
+
10
+ describe "#cookies" do
11
+ it "should be possible pass a page" do
12
+ Btjunkie.cookies({
13
+ random: "random"
14
+ }).should be_instance_of(Btjunkie)
15
+ end
16
+ end
17
+
18
+ describe "errors" do
19
+ it "should raise an error if no category if being defined" do
20
+ lambda { Btjunkie.results }.should raise_error(ArgumentError, "You need to specify a category")
21
+ end
22
+
23
+ it "should raise an error if no cookies if being passed" do
24
+ lambda { Btjunkie.category(:movies).results }.should raise_error(ArgumentError, "You need to specify a cookie using #cookies")
25
+ end
26
+ end
27
+
28
+ describe "#results" do
29
+ describe "movies category" do
30
+ before(:each) do
31
+ stub_request(:get, "http://btjunkie.org/browse/Video?o=72&p=1&s=1&t=1").
32
+ to_return(:body => File.read("spec/fixtures/movies.html"))
33
+ @bt = Btjunkie.category(:movies).cookies({
34
+ id: "random"
35
+ })
36
+ end
37
+
38
+ it "should return a list of 49 torrents" do
39
+ @bt.should have(49).results
40
+ end
41
+
42
+ it "should contain the right data" do
43
+ object = mock(Object.new)
44
+ object.should_receive(:based_on).exactly(49).times
45
+
46
+ @bt.results.each do |torrent|
47
+ torrent.torrent.should match(/http:\/\/dl\.btjunkie\.org\/torrent\/.+?\/\w+\/download\.torrent/)
48
+ torrent.title.should_not be_empty
49
+ torrent.details.should match(URI.regexp)
50
+ torrent.should_not be_dead
51
+ torrent.seeders.should be_instance_of(Fixnum)
52
+ torrent.should be_instance_of(BtjunkieContainer::Torrent)
53
+ torrent.domain.should eq("btjunkie.org")
54
+ torrent.id.should match(/[a-z0-9]+/)
55
+ torrent.tid.should match(/[a-fA-F\d]{32}/)
56
+ torrent.torrent_id.should eq(torrent.id)
57
+
58
+ MovieSearcher.should_receive(:find_by_release_name).with(torrent.title, options: {
59
+ :details => true
60
+ }).and_return(Struct.new(:imdb_id).new("123"))
61
+
62
+ Undertexter.should_receive(:find).with("123", language: :english).and_return(object)
63
+
64
+ torrent.subtitle(:english)
65
+ end
66
+ end
67
+ end
68
+ end
69
+ end
@@ -0,0 +1,1061 @@
1
+
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
3
+ <html>
4
+ <head>
5
+ <title>Video Torrent - btjunkie</title>
6
+ <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
7
+ <meta name="keywords" content="Video torrent download, Video download torrent,Video,torrent,bittorrent,download,password" />
8
+ <meta name="description" content="Video TORRENT DOWLOAD HERE, Video Download Torrent,Video,torrent,bittorrent,download,password" />
9
+ <meta name="robots" content="index,follow" /><meta name="author" content="btjunkie" /><meta name="resource-type" content="document" /><meta name="rating" content="General" /><meta name="distribution" content="global" /><meta http-equiv="content-language" content="en" /><meta http-equiv="pragma" content="no-cache" /><meta http-equiv="cache-control" content="no-cache" />
10
+ <script type="text/javascript">
11
+ var lang= new Array(7);
12
+ lang[0]='Search must be at least 2 characters.';
13
+ lang[1]='Please select a category.';
14
+ lang[2]='login';
15
+ lang[3]='Username';
16
+ lang[4]='Password';
17
+ lang[5]='Forgot Password';
18
+ lang[6]='Your request is being processed, please wait...';
19
+ lang[7]='Problems Logging In';
20
+ lang[8]='Your search settings have been saved.';
21
+ if ((navigator.plugins && navigator.plugins.length)||(navigator.mimeTypes && navigator.mimeTypes.length))
22
+ flash_installed = 1;
23
+ else
24
+ flash_installed = 0;
25
+ var nofocus=0;
26
+ var browser_type = 'ns';
27
+ var http_prefix = 'http://';
28
+ var advanced=0;
29
+ var on_tab_search = 'basic';
30
+ function setdefault(onoff) {
31
+ var f = document.form_search_advance;
32
+ if (onoff == 1) {
33
+ var fval = '0';
34
+ if (f.f.checked) { fval = 1; }
35
+ createCookie('default','f=' + fval + '&c=' + f.c.value + '&o=' + f.o.value + '&t=' + f.t.value,360);
36
+ alert(lang[8]);
37
+ }
38
+ else {
39
+ createCookie('default','',-1);
40
+ window.location.reload();
41
+ }
42
+ }
43
+ function createCookie(name,value,days) {
44
+ if (days) {
45
+ var date = new Date();
46
+ date.setTime(date.getTime()+(days*24*60*60*1000));
47
+ var expires = "; expires="+date.toGMTString();
48
+ }
49
+ else var expires = "";
50
+ document.cookie = name+"="+value+expires+"; path=/";
51
+ }
52
+ </script>
53
+ <link rel="stylesheet" type="text/css" href="http://static.btjunkie.org/css/default-1-17.css">
54
+ <script language="JavaScript" src="http://static.btjunkie.org/js/global-2-7.js"></script>
55
+ </head>
56
+ <body class="body" OnLoad="init('browse','1');">
57
+ <DIV ID="dek"></DIV>
58
+ <table width="990" cellspacing="0" cellpadding="0" border="0" align="center"><tr><td>
59
+ <table cellpadding="0" border="0" cellspacing="0" width="100%" bgcolor="#334D80">
60
+ <tr><th colspan="2" height="7"><img src="http://static.btjunkie.org/images/blank.gif" width="1" height="7"></th></tr>
61
+ <tr>
62
+ <th height="40" width="290" align="left" valign="middle">
63
+ <span width="19"><img src="http://static.btjunkie.org/images/blank.gif" width="19"></span>
64
+ <a href="/"><img src="http://static.btjunkie.org/images/btjunkie_text2.gif" width="180" height="40" border="0" title="btjunkie - the largest bittorrent search engine">
65
+ </th>
66
+ <th height="40" width="700" align="right">
67
+ <table class="headertext" cellpadding="0" cellspacing="0" border="0" width="530">
68
+ <tr><th height="6" width="1"><img src="http://static.btjunkie.org/images/blank.gif" border="0" alt="" width="1" height="6"></th></tr>
69
+ <tr>
70
+ <th width="15"></th>
71
+ <th width="16%" align="center"><a href="/" class="blocked_wht">Home</a></th>
72
+ <th><img src="http://static.btjunkie.org/images/header-split.gif" alt="" border="0"></th>
73
+ <th width="16%" align="center"><a href="/?do=latest" class="blocked_wht">Latest</th>
74
+ <th><img src="http://static.btjunkie.org/images/header-split.gif" alt="" border="0"></th>
75
+ <th width="16%" align="center"><a href="/?do=upload" class="blocked_wht">Upload</th>
76
+ <th><img src="http://static.btjunkie.org/images/header-split.gif" alt="" border="0"></th>
77
+ <th width="16%" align="center"><a href="/member" class="blocked_wht">Members</th>
78
+ <th><img src="http://static.btjunkie.org/images/header-split.gif" alt="" border="0"></th>
79
+ <th width="14%" align="center"><a href="/?do=help" class="blocked_wht">Help</th>
80
+ <th><img src="http://static.btjunkie.org/images/header-split.gif" alt="" border="0"></th>
81
+ <th width="16%" align="center"><a href="/?do=lang" class="blocked_wht">Language</th>
82
+ </tr></table>
83
+ </th>
84
+ </tr>
85
+ </table>
86
+ <table cellpadding="0" border="0" cellspacing="0" width="100%" height="26" bgcolor="#334D80">
87
+ <tr><th height="5" colspan="6"><img src="http://static.btjunkie.org/images/blank.gif" border="0" height="5" width="1"></th>
88
+ </tr>
89
+ <tr>
90
+ <th width="10"><img src="http://static.btjunkie.org/images/blank.gif" border="0" width="10" height="1"></th>
91
+ <th id="tab_search" align="center" valign="center" width="100" class="tab_bg" onclick="tab_toggle('search');" style="">
92
+ <div style="width: 100px; height: 26px;background:transparent url(/images/round_tlb.gif) no-repeat 0px top;"><div style="width: 100px; height: 26px;background:transparent url(/images/round_trb.gif) no-repeat right top;">
93
+ <table cellpadding="0" cellspacing="0" border="0" height="26" width="100"><tr><th valign="middle">
94
+ <a href="#" class="blocked_lblue" onclick="tab_toggle('search');">&nbsp;Search&nbsp;</a>
95
+ </th></tr></table>
96
+ </div></div>
97
+ </th>
98
+ <th width="5"></th>
99
+ <th id="tab_browse" align="center" valign="center" width="100" class="tab_bg" onclick="tab_toggle('browse');" style="background: #00FF33;">
100
+ <div style="width: 100px; height: 26px;background:transparent url(/images/round_tlb.gif) no-repeat 0px top;"><div style="width: 100px; height: 26px;background:transparent url(/images/round_trb.gif) no-repeat right top;">
101
+ <table cellpadding="0" cellspacing="0" border="0" height="26" width="100"><tr><th valign="middle">
102
+ <a href="#" class="blocked_lblue" onclick="tab_toggle('browse');">&nbsp;Browse&nbsp;</a></th>
103
+ </th></tr></table>
104
+ </div></div>
105
+ <th width="%"><img src="http://static.btjunkie.org/images/blank.gif" width="1" height="1" alt="" border="0"></th>
106
+ <th align="right" width="455" bgcolor="#334D80">
107
+ <span style="margin-right:20px;"><a href="/?do=report" class="blocked_orange">3 unreported torrents</a></span><font size="2" style="color:#CDDAE9;"><b>Spot</b> [<a href="/member?do=signoff" class="blocked_bluel">Sign Off</a>]<img src="http://<?print $static?>/images/blank.gif" width="10" border="0" height="1"> </th>
108
+ </tr>
109
+ </table>
110
+ <table class="navbar_bg" width="100%" cellspacing="0" cellpadding="0" border="0" style="display:none;" id="search_basic">
111
+ <tr class="font_white" height="35">
112
+ <form action="/search" method="GET" name="form_search_basic" onsubmit="return validate('search_basic')">
113
+ <th align="left" style="background:transparent url(/images/round_blc2.gif) no-repeat 0px bottom;">
114
+ <table cellspacing="0" cellpadding="0" border="0">
115
+ <tr>
116
+ <th width="10"></th>
117
+ <th align="left">
118
+ <input type="text" name="q" value="" style="height: 23px;width: 275px; font-size:14pt; background-color: #000000; color: #cddae9; border: 0px;">
119
+ </th>
120
+ <th align="left" style="color: #FFFFFF; background-color: #000000; border: 0px; color: #cddae9;">
121
+ <input type="checkbox" name="f" style="color: #cddae9;" value="1" > <b>File Scan</b>&nbsp;
122
+ </th>
123
+ <th width="10"></th>
124
+ <th align="left"">
125
+ <input type="submit" style="font-weight: bold;" value="Go">
126
+ </th>
127
+ </table>
128
+ </th>
129
+ <th align="right" style="background:transparent url(/images/round_brc2.gif) no-repeat right bottom;">
130
+ <a href="/?do=safe" class="WhtUnd"><b><font size="-2">Safe Search: ON</font></b></a>&nbsp;&nbsp;
131
+ <input type="button" value="Advanced" onclick="tab_toggle('search_advance');">&nbsp;
132
+ <span width="5"><img src="http://static.btjunkie.org/images/blank.gif" width="5" border="0"></span>
133
+ </th>
134
+ </form>
135
+ </tr>
136
+ </table>
137
+ <table class="navbar_bg" width="100%" cellspacing="0" cellpadding="0" border="0" style="display:none;" id="search_advance">
138
+ <tr class="font_white">
139
+ <form action="/search" method="GET" name="form_search_advance" onSubmit=" return validate('search_advance')">
140
+ <th align="left" style="background:transparent url(/images/round_blc.gif) no-repeat 0px bottom;">
141
+ <table cellspacing="0" cellpadding="0" border="0">
142
+ <tr>
143
+ <th height="7"><img src="http://static.btjunkie.org/images/blank.gif" height="7" alt="" border="0"></th>
144
+ </tr>
145
+ <tr>
146
+ <th width="10"></th>
147
+ <th align="left">
148
+ <input type="text" name="q" size="23" value="" class="input1" style="height: 18px;font-size:14px;">
149
+ </th>
150
+ <th width="10"></th>
151
+ <th align="left">
152
+ <select name="c" class="input1" style="font-size: 10pt; height: 20px;width:128px;font-weight: bold;">
153
+ <option value="0">All Categories</option>
154
+ <option value="1">Audio</option>
155
+ <option value="7">Anime</option>
156
+ <option value="2">Games</option>
157
+ <option value="3">Software</option>
158
+ <option value="4">TV</option>
159
+ <option value="5">Unsorted</option>
160
+ <option value="6" selected>Video</option>
161
+ <option value="8">XXX</option>
162
+ </select>
163
+ </th>
164
+ <th width="10"></th>
165
+ <th valign="center" align="left">
166
+ <input type="submit" style="font-weight: bold;" value="BTJunkie Search" style="font-size: 12px;">
167
+ </th>
168
+ </tr>
169
+ <tr>
170
+ <th height="4"><img src="http://static.btjunkie.org/images/blank.gif" height="4" alt="" border="0"></th>
171
+ </tr>
172
+ <tr>
173
+ <th width="10"></th>
174
+ <th align="left">
175
+ <select name="o" class="input1" style="font-size: 12px; height: 20px;width:182px;font-weight: bold;">
176
+ <option value="52">Most Seeded to Least</option>
177
+ <option value="62">Most Size to Least</option>
178
+ <option value="51">Least Seeded to Most</option>
179
+ <option value="61">Least Size to Most</option>
180
+ <option value="72" selected>From Newest to Oldest</option>
181
+ <option value="71">From Oldest to Newest</option>
182
+ </select>
183
+ </th>
184
+ <th width="10"></th>
185
+ <th align="left">
186
+ <select name="t" class="input1" style="font-size: 10pt; height: 20px;width:128px;font-weight: bold;"><option value="0">All Trackers</option><option value="1" >Public Trackers</option><option value="2" >Private Trackers</option></select>
187
+ </th>
188
+ <th width="10"></th>
189
+ <th align="left" class="input1">
190
+ <input type="checkbox" name="f" value="1" > <b>File Scan</b>&nbsp;
191
+ </th>
192
+ </tr>
193
+ <tr>
194
+ <th height="7"><img src="/images/blank.gif" alt="" height="7"></th>
195
+ </tr>
196
+ </table>
197
+ </th>
198
+ <th align="left">
199
+
200
+ </th>
201
+ </form>
202
+ <th align="right" valign="top" style="background:transparent url(/images/round_brc.gif) no-repeat right bottom;">
203
+ <table height="55" cellspacing="0" cellpadding="0" border="0" style="margin:5px;">
204
+ <tr><th valign="top" align="right">
205
+ <input type="button" value="Basic" onclick="tab_toggle('search_basic');">
206
+ </th>
207
+ <th width="5"><img src="http://static.btjunkie.org/images/blank.gif" border="0" width="5"></th>
208
+ </tr>
209
+ <tr><th valign="bottom">
210
+ <font size="1"><a href="/?do=safe" class="WhtUnd"><b><font size="-2"><u>Safe Search: ON</u></font></b></a> |
211
+ <font size="1"><a href="/?do=helpbox&q=advance_search" class="Wht" onclick="return show_hide_box(this,400,440,'2px solid',80,0,0)"><u>Search Manual</u></a></font> |
212
+ <font size="1"><a href="#" class="Wht" onclick="setdefault('1');"><u>
213
+ Save Search Settings</a></u>
214
+ </font>
215
+ </th></tr>
216
+ </table>
217
+ </th>
218
+ </tr>
219
+ </table>
220
+ <table class="navbar_bg" width="100%" cellspacing="0" cellpadding="0" border="0" style="" id="browse">
221
+ <tr class="font_white" height="35">
222
+ <form action="/browse/Video" method="GET" name="form_browse" onsubmit="return validate('browse')">
223
+ <th align="left" style="background:transparent url(/images/round_blc.gif) no-repeat 0px bottom;">
224
+ <table cellspacing="0" cellpadding="0" border="0">
225
+ <tr>
226
+ <th width="10"></th>
227
+ <th align="left">
228
+ <select class="input1" style="font-weight: bold;font-size: 12px; height: 20px; width: 145px;" onchange="change_category(this.value);">
229
+ <option value="0">Select Category...</option>
230
+ <option value="Audio">Audio</option>
231
+ <option value="Anime">Anime</option>
232
+ <option value="Games">Games</option>
233
+ <option value="Software">Software</option>
234
+ <option value="TV">TV</option>
235
+ <option value="Unsorted">Unsorted</option>
236
+ <option value="Video" selected>Video</option>
237
+ <option value="XXX">XXX</option>
238
+ </select>
239
+ </th>
240
+ <th width="10"></th>
241
+ <th align="left">
242
+ <select name="o" class="input1" style="font-weight: bold;font-size: 12px; height: 20px; width: 180px;" onchange="validate('browse'); document.form_browse.submit();">
243
+ <option value="52">Most Seeded to Least</option>
244
+ <option value="32">Most Leeched to Least</option>
245
+ <option value="22">Most Health to Least</option>
246
+ <option value="62">Most Size to Least</option>
247
+ <option value="51">Least Seeded to Most</option>
248
+ <option value="31">Least Leeched to Most</option>
249
+ <option value="21">Least Health to Most</option>
250
+ <option value="61">Least Size to Most</option>
251
+ <option value="41">From A to Z</option>
252
+ <option value="42">From Z to A</option>
253
+ <option value="72" selected>From Newest to Oldest</option>
254
+ <option value="71">From Oldest to Newest</option>
255
+ </select>
256
+ </th>
257
+ <th width="10"></th>
258
+ <th align="left">
259
+ <select name="t" onchange="document.form_browse.submit();" class="input1" style="font-size: 10pt; height: 20px;width:143px;font-weight: bold;"><option value="0">All Trackers</option><option value="1" >Public Trackers</option><option value="2" >Private Trackers</option></select>
260
+ </th>
261
+ <th width="10"></th>
262
+ <th align="left" class="input1">
263
+ <input type="checkbox" name="s" value="1" onclick="validate('browse'); document.form_browse.submit();" checked>
264
+ <b>Seeded Only</b>&nbsp;
265
+ </th>
266
+ </tr>
267
+ </table>
268
+ </th><th width="10" align="left" style="background:transparent url(/images/round_brc.gif) no-repeat right bottom;"><img src="http://static.btjunkie.org/images/blank.gif" width="10" height="1"></th>
269
+ </form>
270
+ </tr>
271
+ </table>
272
+ <table width="100%" align="center" cellspacing="0" border="0" cellpadding="0">
273
+ <tr><th colspan="2" height="15"><img src="http://static.btjunkie.org/images/blank.gif" border="0" height="1" width="15"></th></tr>
274
+ <tr>
275
+ <th align="center"><div id="topad"><script type="text/javascript">var AdBrite_Title_Color = 'FF0000';var AdBrite_Text_Color = '000000';var AdBrite_Background_Color = 'FFFFFF';var AdBrite_Border_Color = 'FFFFFF';</script><script src="http://ads.adbrite.com/mb/text_group.php?sid=425415&zs=3732385f3930" type="text/javascript"></script></div></th>
276
+ <th width="160"><img src="http://static.btjunkie.org/images/blank.gif" border="0" height="1" width="160"></th>
277
+ </tr>
278
+ </table>
279
+ <div height="4"><img src="http://static.btjunkie.org/images/blank.gif" border="0" height="4" width="1"></div>
280
+ <table width="100%" cellspacing="0" cellpadding="0" border="0">
281
+ <tr>
282
+ <th align="left" valign="top" height="600"><div id="main">
283
+ <div><img src="/images/blank.gif" height="10" border="0"></div>
284
+ <table cellspacing="1" cellpadding="5" border="0" bgcolor="#d7dce5" style="border: #334D80 2px solid;"><form name="filters"><tr><th bgcolor="#334D80"><b><font color="#FFFFFF">Filters:&nbsp;</font></b></th>
285
+ <th align="left" id="lang_filter">
286
+ <b>Language:</b>
287
+ <select name="filter_lang" onchange="location.href='/browse/Video?o=72&t=0&s=1&l=' + document.filters.filter_lang.value">
288
+ <option value="0">All</option>
289
+ <option value="2">Dutch</option>
290
+ <option value="3">French</option>
291
+ <option value="7">German</option>
292
+ <option value="4">Italian</option>
293
+ <option value="5">Spanish</option>
294
+ <option value="6">Swedish</option>
295
+ </select>
296
+ </th></tr></form></table>
297
+ <table><tr><th height="10"></th></tr></table>
298
+ <table cellpadding="0" cellspacing="0" border="0" width="100%" class="tab_result">
299
+ <tr>
300
+ <th align="left" valign="top">
301
+ <div id="header"><h1 style="background-color: #EEEEEE; padding: 0px; margin: 0px; font: normal 10pt tahoma;">
302
+ <font style="font-weight: normal; font: normal;"><strong>Video</strong>
303
+ </h1></div>
304
+ </th>
305
+ <th align="right">
306
+ <font style="font-weight: normal; font: normal;">
307
+ Results <strong>1 - 50</strong> of <strong>17,299</strong> </th>
308
+ </tr>
309
+ </table>
310
+ <table cellpadding="1" cellspacing="0" width="100%" class="tab_results">
311
+
312
+ <tr class="row_header">
313
+ <th width="60%" align="left"><a class="Wht" href="/browse/Video?o=41&t=0&s=1">Torrent Name</th>
314
+ <th width="8%" align="center"><a class="Wht" href="/browse/Video?o=11&t=0&s=1">Category</th>
315
+ <th width="10%" align="center"><a class="Wht" href="/browse/Video?o=62&t=0&s=1">Size</th>
316
+ <th width="5%" align="center"><a class="Wht" href="/browse/Video?o=71&t=0&s=1">Date</th>
317
+ <th width="5%" align="center"><a class="Wht" href="/browse/Video?o=52&t=0&s=1">Seed</th>
318
+ <th width="5%" align="center"><a class="Wht" href="/browse/Video?o=32&t=0&s=1">Leech</th>
319
+ <th width="7%" align="center"><a class="Wht" href="/browse/Video?o=22&t=0&s=1">Health</th>
320
+ </tr> <tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/FAST-FIVE-2011-TS-XVID-WBZ/4358e498db609d9bc26e628d3754977117374bca256d/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
321
+ <a href="/torrent/FAST-FIVE-2011-TS-XVID-WBZ/4358e498db609d9bc26e628d3754977117374bca256d/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358e498db609d9bc26e628d3754977117374bca256d');">
322
+ <img name="img4358e498db609d9bc26e628d3754977117374bca256d" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
323
+ <a href="/torrent/FAST-FIVE-2011-TS-XVID-WBZ/4358e498db609d9bc26e628d3754977117374bca256d" class="BlckUnd">FAST FIVE 2011 TS XVID-WBZ</a></th><th align="right"><table cellspacing="0" cellpadding="0" border="0"><tr><td><div align="center" style="margin-right: 3px;width: 14px; height: 14px; background-image:url('/images/vote_up.png')"><font size="-2">1</font></div></td><td><div align="center" style="width: 14px; height: 14px; background-image:url('/images/comment_icon.png')"><font size="-2">2</font></div></td></tr></table></th></table></th>
324
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
325
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">722MB</font></th>
326
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
327
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">10167</font></th>
328
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">17316</font></th>
329
+ <th width="7%" align="center">
330
+ <table cellspacing="0" cellpadding="0" border="0">
331
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
332
+ </table>
333
+ </th>
334
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Fast-And-Furious-5-Rio-Heist-TS-READNFO-XViD-IMAGiNE/43584d2b3d5a8de97a52c5f2187d92d1156d72740b03/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
335
+ <a href="/torrent/Fast-And-Furious-5-Rio-Heist-TS-READNFO-XViD-IMAGiNE/43584d2b3d5a8de97a52c5f2187d92d1156d72740b03/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img43584d2b3d5a8de97a52c5f2187d92d1156d72740b03');">
336
+ <img name="img43584d2b3d5a8de97a52c5f2187d92d1156d72740b03" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
337
+ <a href="/torrent/Fast-And-Furious-5-Rio-Heist-TS-READNFO-XViD-IMAGiNE/43584d2b3d5a8de97a52c5f2187d92d1156d72740b03" class="BlckUnd">Fast And Furious 5 Rio Heist TS READNFO XViD-IMAGiNE</a></th><th align="right"></th></table></th>
338
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
339
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">1436MB</font></th>
340
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
341
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">1957</font></th>
342
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">6794</font></th>
343
+ <th width="7%" align="center">
344
+ <table cellspacing="0" cellpadding="0" border="0">
345
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
346
+ </table>
347
+ </th>
348
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Fast-Five-2011-TS-XviD-miguel-ENG/4358a9e22c72041e3d336766a3ed5769070ebe9c548a/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
349
+ <a href="/torrent/Fast-Five-2011-TS-XviD-miguel-ENG/4358a9e22c72041e3d336766a3ed5769070ebe9c548a/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358a9e22c72041e3d336766a3ed5769070ebe9c548a');">
350
+ <img name="img4358a9e22c72041e3d336766a3ed5769070ebe9c548a" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
351
+ <a href="/torrent/Fast-Five-2011-TS-XviD-miguel-ENG/4358a9e22c72041e3d336766a3ed5769070ebe9c548a" class="BlckUnd">Fast Five 2011 [TS.XviD-miguel] [ENG]</a></th><th align="right"></th></table></th>
352
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
353
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">1434MB</font></th>
354
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
355
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">1109</font></th>
356
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">5212</font></th>
357
+ <th width="7%" align="center">
358
+ <table cellspacing="0" cellpadding="0" border="0">
359
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
360
+ </table>
361
+ </th>
362
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Thor-2011-XViD/4358978681630f7e89c6ff0c4feb237e33b803530372/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
363
+ <a href="/torrent/Thor-2011-XViD/4358978681630f7e89c6ff0c4feb237e33b803530372/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358978681630f7e89c6ff0c4feb237e33b803530372');">
364
+ <img name="img4358978681630f7e89c6ff0c4feb237e33b803530372" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
365
+ <a href="/torrent/Thor-2011-XViD/4358978681630f7e89c6ff0c4feb237e33b803530372" class="BlckUnd">Thor 2011 XViD</a></th><th align="right"><table cellspacing="0" cellpadding="0" border="0"><tr><td><div align="center" style="margin-right: 3px;width: 14px; height: 14px; background-image:url('/images/vote_down.png')"><font size="-2">3</font></div></td><td><div align="center" style="width: 14px; height: 14px; background-image:url('/images/comment_icon.png')"><font size="-2">2</font></div></td></tr></table></th></table></th>
366
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
367
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">707MB</font></th>
368
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
369
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">607</font></th>
370
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">511</font></th>
371
+ <th width="7%" align="center">
372
+ <table cellspacing="0" cellpadding="0" border="0">
373
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
374
+ </table>
375
+ </th>
376
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Fast-amp-Furious-5-Rio-Heist-TS-READNFO-XViD-IMAGiNE/435869fb16e9543974d56f15db56c9f1bb8d403a4be6/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
377
+ <a href="/torrent/Fast-amp-Furious-5-Rio-Heist-TS-READNFO-XViD-IMAGiNE/435869fb16e9543974d56f15db56c9f1bb8d403a4be6/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img435869fb16e9543974d56f15db56c9f1bb8d403a4be6');">
378
+ <img name="img435869fb16e9543974d56f15db56c9f1bb8d403a4be6" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
379
+ <a href="/torrent/Fast-amp-Furious-5-Rio-Heist-TS-READNFO-XViD-IMAGiNE/435869fb16e9543974d56f15db56c9f1bb8d403a4be6" class="BlckUnd">Fast &amp; Furious 5. Rio Heist TS READNFO XViD - IMAGiNE</a></th><th align="right"><table cellspacing="0" cellpadding="0" border="0"><tr><td><div align="center" style="margin-right: 3px;width: 14px; height: 14px; background-image:url('/images/vote_up.png')"><font size="-2">3</font></div></td><td><div align="center" style="width: 14px; height: 14px; background-image:url('/images/comment_icon.png')"><font size="-2">2</font></div></td></tr></table></th></table></th>
380
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
381
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">1436MB</font></th>
382
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
383
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">444</font></th>
384
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">485</font></th>
385
+ <th width="7%" align="center">
386
+ <table cellspacing="0" cellpadding="0" border="0">
387
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
388
+ </table>
389
+ </th>
390
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Fast-And-Furious-5-Rio-Heist-TS-XViD-DTRG-SAFCuk009/43585e37a3d456def32d45121caa032e881ea164bd6f/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
391
+ <a href="/torrent/Fast-And-Furious-5-Rio-Heist-TS-XViD-DTRG-SAFCuk009/43585e37a3d456def32d45121caa032e881ea164bd6f/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img43585e37a3d456def32d45121caa032e881ea164bd6f');">
392
+ <img name="img43585e37a3d456def32d45121caa032e881ea164bd6f" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
393
+ <a href="/torrent/Fast-And-Furious-5-Rio-Heist-TS-XViD-DTRG-SAFCuk009/43585e37a3d456def32d45121caa032e881ea164bd6f" class="BlckUnd">Fast And Furious 5 Rio Heist TS XViD - DTRG -SAFCuk009</a></th><th align="right"><font size="-2"><div align="center" style="width: 14px; height: 14px; background-image:url('/images/comment_icon.png')">1</div></font></th></table></th>
394
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
395
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">1217MB</font></th>
396
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
397
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">408</font></th>
398
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">1069</font></th>
399
+ <th width="7%" align="center">
400
+ <table cellspacing="0" cellpadding="0" border="0">
401
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
402
+ </table>
403
+ </th>
404
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Hop-2011-TS-V2-READNFO-XViD-IMAGiNE/4358f7c7d6642e568c2ba05a8b10f70b8ffc165f1236/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
405
+ <a href="/torrent/Hop-2011-TS-V2-READNFO-XViD-IMAGiNE/4358f7c7d6642e568c2ba05a8b10f70b8ffc165f1236/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358f7c7d6642e568c2ba05a8b10f70b8ffc165f1236');">
406
+ <img name="img4358f7c7d6642e568c2ba05a8b10f70b8ffc165f1236" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
407
+ <a href="/torrent/Hop-2011-TS-V2-READNFO-XViD-IMAGiNE/4358f7c7d6642e568c2ba05a8b10f70b8ffc165f1236" class="BlckUnd">Hop 2011 TS V2 READNFO XViD-IMAGiNE</a></th><th align="right"></th></table></th>
408
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
409
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">1335MB</font></th>
410
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
411
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">336</font></th>
412
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">1042</font></th>
413
+ <th width="7%" align="center">
414
+ <table cellspacing="0" cellpadding="0" border="0">
415
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
416
+ </table>
417
+ </th>
418
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Housewife-1-on-1-Bridgette-B/4358fda15386f96a04f9227e548aa27d497c0ab36e46/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
419
+ <a href="/torrent/Housewife-1-on-1-Bridgette-B/4358fda15386f96a04f9227e548aa27d497c0ab36e46/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358fda15386f96a04f9227e548aa27d497c0ab36e46');">
420
+ <img name="img4358fda15386f96a04f9227e548aa27d497c0ab36e46" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
421
+ <a href="/torrent/Housewife-1-on-1-Bridgette-B/4358fda15386f96a04f9227e548aa27d497c0ab36e46" class="BlckUnd">Housewife 1 on 1 - Bridgette B.</a></th><th align="right"></th></table></th>
422
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
423
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">264MB</font></th>
424
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
425
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">332</font></th>
426
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">200</font></th>
427
+ <th width="7%" align="center">
428
+ <table cellspacing="0" cellpadding="0" border="0">
429
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
430
+ </table>
431
+ </th>
432
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/TeenSexMovs-Presents-Francheska-New-Release/4358b6733ce16832994946db322ce5cacd1f0d42cb26/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
433
+ <a href="/torrent/TeenSexMovs-Presents-Francheska-New-Release/4358b6733ce16832994946db322ce5cacd1f0d42cb26/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358b6733ce16832994946db322ce5cacd1f0d42cb26');">
434
+ <img name="img4358b6733ce16832994946db322ce5cacd1f0d42cb26" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
435
+ <a href="/torrent/TeenSexMovs-Presents-Francheska-New-Release/4358b6733ce16832994946db322ce5cacd1f0d42cb26" class="BlckUnd">TeenSexMovs Presents - Francheska {New Release}</a></th><th align="right"></th></table></th>
436
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
437
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">409MB</font></th>
438
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
439
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">250</font></th>
440
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">312</font></th>
441
+ <th width="7%" align="center">
442
+ <table cellspacing="0" cellpadding="0" border="0">
443
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
444
+ </table>
445
+ </th>
446
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/WhiteZilla-Bibi-Noel/435846198b738375bcfea3ce81029e1891edc7b00b9d/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
447
+ <a href="/torrent/WhiteZilla-Bibi-Noel/435846198b738375bcfea3ce81029e1891edc7b00b9d/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img435846198b738375bcfea3ce81029e1891edc7b00b9d');">
448
+ <img name="img435846198b738375bcfea3ce81029e1891edc7b00b9d" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
449
+ <a href="/torrent/WhiteZilla-Bibi-Noel/435846198b738375bcfea3ce81029e1891edc7b00b9d" class="BlckUnd">WhiteZilla - Bibi Noel</a></th><th align="right"></th></table></th>
450
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
451
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">519MB</font></th>
452
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
453
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">200</font></th>
454
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">165</font></th>
455
+ <th width="7%" align="center">
456
+ <table cellspacing="0" cellpadding="0" border="0">
457
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
458
+ </table>
459
+ </th>
460
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/WhiteZilla-Krissy-Lynn/435826896a73c1fec9d5a5f1d0f3677f2b0f584d2bf9/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
461
+ <a href="/torrent/WhiteZilla-Krissy-Lynn/435826896a73c1fec9d5a5f1d0f3677f2b0f584d2bf9/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img435826896a73c1fec9d5a5f1d0f3677f2b0f584d2bf9');">
462
+ <img name="img435826896a73c1fec9d5a5f1d0f3677f2b0f584d2bf9" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
463
+ <a href="/torrent/WhiteZilla-Krissy-Lynn/435826896a73c1fec9d5a5f1d0f3677f2b0f584d2bf9" class="BlckUnd">WhiteZilla - Krissy Lynn</a></th><th align="right"></th></table></th>
464
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
465
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">575MB</font></th>
466
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
467
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">198</font></th>
468
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">180</font></th>
469
+ <th width="7%" align="center">
470
+ <table cellspacing="0" cellpadding="0" border="0">
471
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
472
+ </table>
473
+ </th>
474
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/William-and-Kate-2011-Dvdrip-a-PRESTiGE/4358032efa93443a154bbc45908a78cf0903ac5d7b43/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
475
+ <a href="/torrent/William-and-Kate-2011-Dvdrip-a-PRESTiGE/4358032efa93443a154bbc45908a78cf0903ac5d7b43/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358032efa93443a154bbc45908a78cf0903ac5d7b43');">
476
+ <img name="img4358032efa93443a154bbc45908a78cf0903ac5d7b43" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
477
+ <a href="/torrent/William-and-Kate-2011-Dvdrip-a-PRESTiGE/4358032efa93443a154bbc45908a78cf0903ac5d7b43" class="BlckUnd">William and Kate 2011 Dvdrip a PRESTiGE</a></th><th align="right"></th></table></th>
478
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
479
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">1339MB</font></th>
480
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
481
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">187</font></th>
482
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">562</font></th>
483
+ <th width="7%" align="center">
484
+ <table cellspacing="0" cellpadding="0" border="0">
485
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
486
+ </table>
487
+ </th>
488
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Fast-amp-Furious-5-Rio-Heist-TS-READNFO-XviD-UNDEAD/435877935b638e695cde28a4c5f39201fd583c7fd9ae/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
489
+ <a href="/torrent/Fast-amp-Furious-5-Rio-Heist-TS-READNFO-XviD-UNDEAD/435877935b638e695cde28a4c5f39201fd583c7fd9ae/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img435877935b638e695cde28a4c5f39201fd583c7fd9ae');">
490
+ <img name="img435877935b638e695cde28a4c5f39201fd583c7fd9ae" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
491
+ <a href="/torrent/Fast-amp-Furious-5-Rio-Heist-TS-READNFO-XviD-UNDEAD/435877935b638e695cde28a4c5f39201fd583c7fd9ae" class="BlckUnd">Fast &amp; Furious 5. Rio Heist TS READNFO.XviD.UNDEAD</a></th><th align="right"></th></table></th>
492
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
493
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">702MB</font></th>
494
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
495
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">169</font></th>
496
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">222</font></th>
497
+ <th width="7%" align="center">
498
+ <table cellspacing="0" cellpadding="0" border="0">
499
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
500
+ </table>
501
+ </th>
502
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Cartago-La-Construccion-De-Un-Imperio-Docu-DVDRip-Spanish/4358ed2bf09d8a75d108daeb151ebd70d0ab5367a251/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
503
+ <a href="/torrent/Cartago-La-Construccion-De-Un-Imperio-Docu-DVDRip-Spanish/4358ed2bf09d8a75d108daeb151ebd70d0ab5367a251/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358ed2bf09d8a75d108daeb151ebd70d0ab5367a251');">
504
+ <img name="img4358ed2bf09d8a75d108daeb151ebd70d0ab5367a251" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
505
+ <a href="/torrent/Cartago-La-Construccion-De-Un-Imperio-Docu-DVDRip-Spanish/4358ed2bf09d8a75d108daeb151ebd70d0ab5367a251" class="BlckUnd">Cartago.La Construccion De Un Imperio.(Docu.DVDRip.Spanish)</a></th><th align="right"></th></table></th>
506
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
507
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">515MB</font></th>
508
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
509
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">159</font></th>
510
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">139</font></th>
511
+ <th width="7%" align="center">
512
+ <table cellspacing="0" cellpadding="0" border="0">
513
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
514
+ </table>
515
+ </th>
516
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/18XGirls-Blair-Afternoon-Party/43585706b5c3dbcf607c244461941474087427b02c00/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
517
+ <a href="/torrent/18XGirls-Blair-Afternoon-Party/43585706b5c3dbcf607c244461941474087427b02c00/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img43585706b5c3dbcf607c244461941474087427b02c00');">
518
+ <img name="img43585706b5c3dbcf607c244461941474087427b02c00" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
519
+ <a href="/torrent/18XGirls-Blair-Afternoon-Party/43585706b5c3dbcf607c244461941474087427b02c00" class="BlckUnd">18XGirls - Blair Afternoon Party</a></th><th align="right"></th></table></th>
520
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
521
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">207MB</font></th>
522
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
523
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">147</font></th>
524
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">61</font></th>
525
+ <th width="7%" align="center">
526
+ <table cellspacing="0" cellpadding="0" border="0">
527
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
528
+ </table>
529
+ </th>
530
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Dead-Awake-2011-DD5-1-Nl-subs-Eng-subs-RETAIL-NTSC-TBS/43586f449aefb981cb51d23fd2268b4dba27d7a31601/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
531
+ <a href="/torrent/Dead-Awake-2011-DD5-1-Nl-subs-Eng-subs-RETAIL-NTSC-TBS/43586f449aefb981cb51d23fd2268b4dba27d7a31601/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img43586f449aefb981cb51d23fd2268b4dba27d7a31601');">
532
+ <img name="img43586f449aefb981cb51d23fd2268b4dba27d7a31601" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
533
+ <a href="/torrent/Dead-Awake-2011-DD5-1-Nl-subs-Eng-subs-RETAIL-NTSC-TBS/43586f449aefb981cb51d23fd2268b4dba27d7a31601" class="BlckUnd">Dead Awake (2011)(DD5.1)(Nl subs)(Eng subs) RETAIL NTSC TBS</a></th><th align="right"></th></table></th>
534
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
535
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">3579MB</font></th>
536
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
537
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">139</font></th>
538
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">476</font></th>
539
+ <th width="7%" align="center">
540
+ <table cellspacing="0" cellpadding="0" border="0">
541
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
542
+ </table>
543
+ </th>
544
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/HD-Jessica-Jaymes-MyDadsHotGirlfriend/435860715c59f9a97fb56fb0d8820bfd93c71665005e/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
545
+ <a href="/torrent/HD-Jessica-Jaymes-MyDadsHotGirlfriend/435860715c59f9a97fb56fb0d8820bfd93c71665005e/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img435860715c59f9a97fb56fb0d8820bfd93c71665005e');">
546
+ <img name="img435860715c59f9a97fb56fb0d8820bfd93c71665005e" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
547
+ <a href="/torrent/HD-Jessica-Jaymes-MyDadsHotGirlfriend/435860715c59f9a97fb56fb0d8820bfd93c71665005e" class="BlckUnd">(HD)Jessica Jaymes MyDadsHotGirlfriend</a></th><th align="right"></th></table></th>
548
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
549
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">654MB</font></th>
550
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
551
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">135</font></th>
552
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">121</font></th>
553
+ <th width="7%" align="center">
554
+ <table cellspacing="0" cellpadding="0" border="0">
555
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
556
+ </table>
557
+ </th>
558
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Scouts-Honor-2009-DVDRip-XviD-IGUANA/43582bd31c5273208f64355e3fce02dba1989f0a6751/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
559
+ <a href="/torrent/Scouts-Honor-2009-DVDRip-XviD-IGUANA/43582bd31c5273208f64355e3fce02dba1989f0a6751/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img43582bd31c5273208f64355e3fce02dba1989f0a6751');">
560
+ <img name="img43582bd31c5273208f64355e3fce02dba1989f0a6751" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
561
+ <a href="/torrent/Scouts-Honor-2009-DVDRip-XviD-IGUANA/43582bd31c5273208f64355e3fce02dba1989f0a6751" class="BlckUnd">Scouts Honor 2009 DVDRip XviD-IGUANA</a></th><th align="right"></th></table></th>
562
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
563
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">706MB</font></th>
564
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
565
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">134</font></th>
566
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">305</font></th>
567
+ <th width="7%" align="center">
568
+ <table cellspacing="0" cellpadding="0" border="0">
569
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
570
+ </table>
571
+ </th>
572
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Nuestro-Secreto-DVDRip-Spanish/43586cb2a85a29852ac06cf7ce6e300900ae6491cb83/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
573
+ <a href="/torrent/Nuestro-Secreto-DVDRip-Spanish/43586cb2a85a29852ac06cf7ce6e300900ae6491cb83/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img43586cb2a85a29852ac06cf7ce6e300900ae6491cb83');">
574
+ <img name="img43586cb2a85a29852ac06cf7ce6e300900ae6491cb83" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
575
+ <a href="/torrent/Nuestro-Secreto-DVDRip-Spanish/43586cb2a85a29852ac06cf7ce6e300900ae6491cb83" class="BlckUnd">Nuestro Secreto.(DVDRip.Spanish).</a></th><th align="right"></th></table></th>
576
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
577
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">697MB</font></th>
578
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
579
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">129</font></th>
580
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">213</font></th>
581
+ <th width="7%" align="center">
582
+ <table cellspacing="0" cellpadding="0" border="0">
583
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
584
+ </table>
585
+ </th>
586
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Andrew-Blake-Les-Femmes-Erotique-1993/43584e4ff444c4bbe1fa3f3f2d0902335f6fe6df3888/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
587
+ <a href="/torrent/Andrew-Blake-Les-Femmes-Erotique-1993/43584e4ff444c4bbe1fa3f3f2d0902335f6fe6df3888/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img43584e4ff444c4bbe1fa3f3f2d0902335f6fe6df3888');">
588
+ <img name="img43584e4ff444c4bbe1fa3f3f2d0902335f6fe6df3888" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
589
+ <a href="/torrent/Andrew-Blake-Les-Femmes-Erotique-1993/43584e4ff444c4bbe1fa3f3f2d0902335f6fe6df3888" class="BlckUnd">Andrew Blake - Les Femmes Erotique (1993)</a></th><th align="right"></th></table></th>
590
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
591
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">701MB</font></th>
592
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
593
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">126</font></th>
594
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">95</font></th>
595
+ <th width="7%" align="center">
596
+ <table cellspacing="0" cellpadding="0" border="0">
597
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
598
+ </table>
599
+ </th>
600
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/The-Lincoln-Lawyer-2011-READNFO-R5-LiNE-XviD-FiRMA/4358b8cdca8e591f7c7d80e27284373282ee0b425a7c/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
601
+ <a href="/torrent/The-Lincoln-Lawyer-2011-READNFO-R5-LiNE-XviD-FiRMA/4358b8cdca8e591f7c7d80e27284373282ee0b425a7c/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358b8cdca8e591f7c7d80e27284373282ee0b425a7c');">
602
+ <img name="img4358b8cdca8e591f7c7d80e27284373282ee0b425a7c" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
603
+ <a href="/torrent/The-Lincoln-Lawyer-2011-READNFO-R5-LiNE-XviD-FiRMA/4358b8cdca8e591f7c7d80e27284373282ee0b425a7c" class="BlckUnd">The Lincoln Lawyer 2011 READNFO R5 LiNE XviD-FiRMA</a></th><th align="right"><table cellspacing="0" cellpadding="0" border="0"><tr><td><div align="center" style="margin-right: 3px;width: 14px; height: 14px; background-image:url('/images/vote_up.png')"><font size="-2">1</font></div></td><td><div align="center" style="width: 14px; height: 14px; background-image:url('/images/comment_icon.png')"><font size="-2">1</font></div></td></tr></table></th></table></th>
604
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
605
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">1151MB</font></th>
606
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
607
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">117</font></th>
608
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">2338</font></th>
609
+ <th width="7%" align="center">
610
+ <table cellspacing="0" cellpadding="0" border="0">
611
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
612
+ </table>
613
+ </th>
614
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Femme-a-Prendre-2004-French-Hot-Movie/43587fa0a033a634d4d66b78c07e35d9bbf2f7d5e6ed/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
615
+ <a href="/torrent/Femme-a-Prendre-2004-French-Hot-Movie/43587fa0a033a634d4d66b78c07e35d9bbf2f7d5e6ed/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img43587fa0a033a634d4d66b78c07e35d9bbf2f7d5e6ed');">
616
+ <img name="img43587fa0a033a634d4d66b78c07e35d9bbf2f7d5e6ed" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
617
+ <a href="/torrent/Femme-a-Prendre-2004-French-Hot-Movie/43587fa0a033a634d4d66b78c07e35d9bbf2f7d5e6ed" class="BlckUnd">Femme a Prendre ( 2004) ~ French Hot Movie ~</a></th><th align="right"></th></table></th>
618
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
619
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">701MB</font></th>
620
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
621
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">114</font></th>
622
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">99</font></th>
623
+ <th width="7%" align="center">
624
+ <table cellspacing="0" cellpadding="0" border="0">
625
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
626
+ </table>
627
+ </th>
628
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/18XGirls-Gorgeous-Natalie-In-A-Hardcore-Scene/435826e9c8a9ac0e7d4abdb95b1f77ecec8175ae661c/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
629
+ <a href="/torrent/18XGirls-Gorgeous-Natalie-In-A-Hardcore-Scene/435826e9c8a9ac0e7d4abdb95b1f77ecec8175ae661c/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img435826e9c8a9ac0e7d4abdb95b1f77ecec8175ae661c');">
630
+ <img name="img435826e9c8a9ac0e7d4abdb95b1f77ecec8175ae661c" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
631
+ <a href="/torrent/18XGirls-Gorgeous-Natalie-In-A-Hardcore-Scene/435826e9c8a9ac0e7d4abdb95b1f77ecec8175ae661c" class="BlckUnd">18XGirls - Gorgeous Natalie In A Hardcore Scene</a></th><th align="right"><font size="-2"><div align="center" style="width: 14px; height: 14px; background-image:url('/images/comment_icon.png')">1</div></font></th></table></th>
632
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
633
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">241MB</font></th>
634
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
635
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">111</font></th>
636
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">51</font></th>
637
+ <th width="7%" align="center">
638
+ <table cellspacing="0" cellpadding="0" border="0">
639
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
640
+ </table>
641
+ </th>
642
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Bisexual-Britni-Extreme-Teen-22/4358234d9851921fe3568b0ece70325f1fad3caa9fea/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
643
+ <a href="/torrent/Bisexual-Britni-Extreme-Teen-22/4358234d9851921fe3568b0ece70325f1fad3caa9fea/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358234d9851921fe3568b0ece70325f1fad3caa9fea');">
644
+ <img name="img4358234d9851921fe3568b0ece70325f1fad3caa9fea" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
645
+ <a href="/torrent/Bisexual-Britni-Extreme-Teen-22/4358234d9851921fe3568b0ece70325f1fad3caa9fea" class="BlckUnd">Bisexual Britni - Extreme Teen 22 </a></th><th align="right"></th></table></th>
646
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
647
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">354MB</font></th>
648
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
649
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">109</font></th>
650
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">125</font></th>
651
+ <th width="7%" align="center">
652
+ <table cellspacing="0" cellpadding="0" border="0">
653
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
654
+ </table>
655
+ </th>
656
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Andrew-Blake-Aroused-1999/43581de4bc74bf5ea9987a36b3cb9ed43ce1bf8cec98/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
657
+ <a href="/torrent/Andrew-Blake-Aroused-1999/43581de4bc74bf5ea9987a36b3cb9ed43ce1bf8cec98/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img43581de4bc74bf5ea9987a36b3cb9ed43ce1bf8cec98');">
658
+ <img name="img43581de4bc74bf5ea9987a36b3cb9ed43ce1bf8cec98" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
659
+ <a href="/torrent/Andrew-Blake-Aroused-1999/43581de4bc74bf5ea9987a36b3cb9ed43ce1bf8cec98" class="BlckUnd">Andrew Blake - Aroused (1999)</a></th><th align="right"></th></table></th>
660
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
661
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">770MB</font></th>
662
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
663
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">105</font></th>
664
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">99</font></th>
665
+ <th width="7%" align="center">
666
+ <table cellspacing="0" cellpadding="0" border="0">
667
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
668
+ </table>
669
+ </th>
670
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/New-Kids-Turbo-2010-SWESUB-DVDRip-XviD-Elionora/435809d81cde2780c4404c1bb80a34c0b7d8531a62df/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
671
+ <a href="/torrent/New-Kids-Turbo-2010-SWESUB-DVDRip-XviD-Elionora/435809d81cde2780c4404c1bb80a34c0b7d8531a62df/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img435809d81cde2780c4404c1bb80a34c0b7d8531a62df');">
672
+ <img name="img435809d81cde2780c4404c1bb80a34c0b7d8531a62df" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
673
+ <a href="/torrent/New-Kids-Turbo-2010-SWESUB-DVDRip-XviD-Elionora/435809d81cde2780c4404c1bb80a34c0b7d8531a62df" class="BlckUnd">New Kids Turbo 2010 SWESUB DVDRip XviD-Elionora</a></th><th align="right"></th></table></th>
674
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
675
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">700MB</font></th>
676
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
677
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">105</font></th>
678
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">6</font></th>
679
+ <th width="7%" align="center">
680
+ <table cellspacing="0" cellpadding="0" border="0">
681
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
682
+ </table>
683
+ </th>
684
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Newsmakers-2009-DVDRip-XviD-VoMiT/4358de23566442847e37e38b8ec9736f6e58f2fa8874/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
685
+ <a href="/torrent/Newsmakers-2009-DVDRip-XviD-VoMiT/4358de23566442847e37e38b8ec9736f6e58f2fa8874/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358de23566442847e37e38b8ec9736f6e58f2fa8874');">
686
+ <img name="img4358de23566442847e37e38b8ec9736f6e58f2fa8874" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
687
+ <a href="/torrent/Newsmakers-2009-DVDRip-XviD-VoMiT/4358de23566442847e37e38b8ec9736f6e58f2fa8874" class="BlckUnd">Newsmakers 2009 DVDRip XviD-VoMiT</a></th><th align="right"></th></table></th>
688
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
689
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">704MB</font></th>
690
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
691
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">96</font></th>
692
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">158</font></th>
693
+ <th width="7%" align="center">
694
+ <table cellspacing="0" cellpadding="0" border="0">
695
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
696
+ </table>
697
+ </th>
698
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Howls-Moving-Castle-2004-Dual-Audio-720p-550mb-YIFY/4358aacfdd4e7bf1c037114f8ca1e287ce21a0c6ac3d/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
699
+ <a href="/torrent/Howls-Moving-Castle-2004-Dual-Audio-720p-550mb-YIFY/4358aacfdd4e7bf1c037114f8ca1e287ce21a0c6ac3d/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358aacfdd4e7bf1c037114f8ca1e287ce21a0c6ac3d');">
700
+ <img name="img4358aacfdd4e7bf1c037114f8ca1e287ce21a0c6ac3d" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
701
+ <a href="/torrent/Howls-Moving-Castle-2004-Dual-Audio-720p-550mb-YIFY/4358aacfdd4e7bf1c037114f8ca1e287ce21a0c6ac3d" class="BlckUnd">Howls Moving Castle (2004)[Dual Audio] 720p - 550mb - YIFY</a></th><th align="right"></th></table></th>
702
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
703
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">553MB</font></th>
704
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
705
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">95</font></th>
706
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">98</font></th>
707
+ <th width="7%" align="center">
708
+ <table cellspacing="0" cellpadding="0" border="0">
709
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
710
+ </table>
711
+ </th>
712
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Nims-Island-2008-DVDRip-XviD-miguel-Dubbing-PL/43581764151667e95df705dbf285b1f8fbfa57d2591c/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
713
+ <a href="/torrent/Nims-Island-2008-DVDRip-XviD-miguel-Dubbing-PL/43581764151667e95df705dbf285b1f8fbfa57d2591c/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img43581764151667e95df705dbf285b1f8fbfa57d2591c');">
714
+ <img name="img43581764151667e95df705dbf285b1f8fbfa57d2591c" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
715
+ <a href="/torrent/Nims-Island-2008-DVDRip-XviD-miguel-Dubbing-PL/43581764151667e95df705dbf285b1f8fbfa57d2591c" class="BlckUnd">Nims Island 2008 [DVDRip.XviD-miguel] [Dubbing PL]</a></th><th align="right"></th></table></th>
716
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
717
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">705MB</font></th>
718
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
719
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">89</font></th>
720
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">199</font></th>
721
+ <th width="7%" align="center">
722
+ <table cellspacing="0" cellpadding="0" border="0">
723
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
724
+ </table>
725
+ </th>
726
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Gapeland-Roberta-Lioness/4358a3963ca67e6d47fc2559e6708bbbc42b1380b731/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
727
+ <a href="/torrent/Gapeland-Roberta-Lioness/4358a3963ca67e6d47fc2559e6708bbbc42b1380b731/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358a3963ca67e6d47fc2559e6708bbbc42b1380b731');">
728
+ <img name="img4358a3963ca67e6d47fc2559e6708bbbc42b1380b731" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
729
+ <a href="/torrent/Gapeland-Roberta-Lioness/4358a3963ca67e6d47fc2559e6708bbbc42b1380b731" class="BlckUnd">Gapeland – Roberta, Lioness</a></th><th align="right"><font size="-2"><div align="center" style="width: 14px; height: 14px; background-image:url('/images/comment_icon.png')">1</div></font></th></table></th>
730
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
731
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">662MB</font></th>
732
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
733
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">89</font></th>
734
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">94</font></th>
735
+ <th width="7%" align="center">
736
+ <table cellspacing="0" cellpadding="0" border="0">
737
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
738
+ </table>
739
+ </th>
740
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Main-Street-2010-SWESUB-AC3-DVDRip-XviD-Twix/4358d7b2e1b003eb22398fb4b5c78e682e6e1b5d5c55/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
741
+ <a href="/torrent/Main-Street-2010-SWESUB-AC3-DVDRip-XviD-Twix/4358d7b2e1b003eb22398fb4b5c78e682e6e1b5d5c55/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358d7b2e1b003eb22398fb4b5c78e682e6e1b5d5c55');">
742
+ <img name="img4358d7b2e1b003eb22398fb4b5c78e682e6e1b5d5c55" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
743
+ <a href="/torrent/Main-Street-2010-SWESUB-AC3-DVDRip-XviD-Twix/4358d7b2e1b003eb22398fb4b5c78e682e6e1b5d5c55" class="BlckUnd">Main Street 2010 SWESUB AC3 DVDRip XviD-Twix</a></th><th align="right"></th></table></th>
744
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
745
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">1398MB</font></th>
746
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
747
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">89</font></th>
748
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">25</font></th>
749
+ <th width="7%" align="center">
750
+ <table cellspacing="0" cellpadding="0" border="0">
751
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
752
+ </table>
753
+ </th>
754
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/FirstAnalDate-First-Anal-It-s-All-About-Patience-avi/4358a82afcb5a3d1c1404a13dfd891930540abb517d0/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
755
+ <a href="/torrent/FirstAnalDate-First-Anal-It-s-All-About-Patience-avi/4358a82afcb5a3d1c1404a13dfd891930540abb517d0/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358a82afcb5a3d1c1404a13dfd891930540abb517d0');">
756
+ <img name="img4358a82afcb5a3d1c1404a13dfd891930540abb517d0" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
757
+ <a href="/torrent/FirstAnalDate-First-Anal-It-s-All-About-Patience-avi/4358a82afcb5a3d1c1404a13dfd891930540abb517d0" class="BlckUnd">FirstAnalDate - First Anal It's All About Patience.avi</a></th><th align="right"></th></table></th>
758
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
759
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">198MB</font></th>
760
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
761
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">88</font></th>
762
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">69</font></th>
763
+ <th width="7%" align="center">
764
+ <table cellspacing="0" cellpadding="0" border="0">
765
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
766
+ </table>
767
+ </th>
768
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Cyber-Update-Apr-2011-EB-12798-IsisLove-MarkDavis-AmyBroo/4358fbfe62ca0cf135d9bb30807fefd3680e52c16904/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
769
+ <a href="/torrent/Cyber-Update-Apr-2011-EB-12798-IsisLove-MarkDavis-AmyBroo/4358fbfe62ca0cf135d9bb30807fefd3680e52c16904/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358fbfe62ca0cf135d9bb30807fefd3680e52c16904');">
770
+ <img name="img4358fbfe62ca0cf135d9bb30807fefd3680e52c16904" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
771
+ <a href="/torrent/Cyber-Update-Apr-2011-EB-12798-IsisLove-MarkDavis-AmyBroo/4358fbfe62ca0cf135d9bb30807fefd3680e52c16904" class="BlckUnd">Cyber Update Apr.2011\------EB-12798 IsisLove MarkDavis Amy</a></th><th align="right"></th></table></th>
772
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
773
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">683MB</font></th>
774
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
775
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">85</font></th>
776
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">194</font></th>
777
+ <th width="7%" align="center">
778
+ <table cellspacing="0" cellpadding="0" border="0">
779
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
780
+ </table>
781
+ </th>
782
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/FirstAnalDate-A-Perfect-First-Anal-Date-Scene-avi/4358c54dbe516025f3931c876f688af50f42eb2529ab/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
783
+ <a href="/torrent/FirstAnalDate-A-Perfect-First-Anal-Date-Scene-avi/4358c54dbe516025f3931c876f688af50f42eb2529ab/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358c54dbe516025f3931c876f688af50f42eb2529ab');">
784
+ <img name="img4358c54dbe516025f3931c876f688af50f42eb2529ab" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
785
+ <a href="/torrent/FirstAnalDate-A-Perfect-First-Anal-Date-Scene-avi/4358c54dbe516025f3931c876f688af50f42eb2529ab" class="BlckUnd">FirstAnalDate - A Perfect First Anal Date Scene.avi</a></th><th align="right"></th></table></th>
786
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
787
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">192MB</font></th>
788
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
789
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">82</font></th>
790
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">41</font></th>
791
+ <th width="7%" align="center">
792
+ <table cellspacing="0" cellpadding="0" border="0">
793
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
794
+ </table>
795
+ </th>
796
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/IMAX-Hubble-2010-720p-BluRay-x264-BRMP/4358d6c41bc5af14b60996156f5c4d83c0ecd8c63c28/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
797
+ <a href="/torrent/IMAX-Hubble-2010-720p-BluRay-x264-BRMP/4358d6c41bc5af14b60996156f5c4d83c0ecd8c63c28/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358d6c41bc5af14b60996156f5c4d83c0ecd8c63c28');">
798
+ <img name="img4358d6c41bc5af14b60996156f5c4d83c0ecd8c63c28" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
799
+ <a href="/torrent/IMAX-Hubble-2010-720p-BluRay-x264-BRMP/4358d6c41bc5af14b60996156f5c4d83c0ecd8c63c28" class="BlckUnd">IMAX Hubble.2010 720p BluRay x264-BRMP</a></th><th align="right"></th></table></th>
800
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
801
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">2294MB</font></th>
802
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
803
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">80</font></th>
804
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">364</font></th>
805
+ <th width="7%" align="center">
806
+ <table cellspacing="0" cellpadding="0" border="0">
807
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
808
+ </table>
809
+ </th>
810
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Little-Shop-of-Horrors-1986-HDTVRip-H264-AAC-Gopo/43581f1a4ba447d8a87a5e4a04b6e5156e86b26f1eb4/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
811
+ <a href="/torrent/Little-Shop-of-Horrors-1986-HDTVRip-H264-AAC-Gopo/43581f1a4ba447d8a87a5e4a04b6e5156e86b26f1eb4/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img43581f1a4ba447d8a87a5e4a04b6e5156e86b26f1eb4');">
812
+ <img name="img43581f1a4ba447d8a87a5e4a04b6e5156e86b26f1eb4" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
813
+ <a href="/torrent/Little-Shop-of-Horrors-1986-HDTVRip-H264-AAC-Gopo/43581f1a4ba447d8a87a5e4a04b6e5156e86b26f1eb4" class="BlckUnd">Little Shop of Horrors 1986 HDTVRip H264 AAC Gopo</a></th><th align="right"></th></table></th>
814
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
815
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">1864MB</font></th>
816
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
817
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">77</font></th>
818
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">238</font></th>
819
+ <th width="7%" align="center">
820
+ <table cellspacing="0" cellpadding="0" border="0">
821
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
822
+ </table>
823
+ </th>
824
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/No-Strings-Attached-2011-BrRip-XviD-DutchReleaseTeam-dutch-su/43583b15faaa9a3a6aef9b1e8a32eb7741c7ec79549f/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
825
+ <a href="/torrent/No-Strings-Attached-2011-BrRip-XviD-DutchReleaseTeam-dutch-su/43583b15faaa9a3a6aef9b1e8a32eb7741c7ec79549f/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img43583b15faaa9a3a6aef9b1e8a32eb7741c7ec79549f');">
826
+ <img name="img43583b15faaa9a3a6aef9b1e8a32eb7741c7ec79549f" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
827
+ <a href="/torrent/No-Strings-Attached-2011-BrRip-XviD-DutchReleaseTeam-dutch-su/43583b15faaa9a3a6aef9b1e8a32eb7741c7ec79549f" class="BlckUnd">No Strings Attached (2011) BrRip XviD DutchReleaseTeam (dut</a></th><th align="right"></th></table></th>
828
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
829
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">701MB</font></th>
830
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
831
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">73</font></th>
832
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">56</font></th>
833
+ <th width="7%" align="center">
834
+ <table cellspacing="0" cellpadding="0" border="0">
835
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
836
+ </table>
837
+ </th>
838
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Waiting-For-Forever-2010-720p-BRRip-x264-RmD-HDScene-Release/4358e785489e81534a90cc33e310f8ac1885e86a172c/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
839
+ <a href="/torrent/Waiting-For-Forever-2010-720p-BRRip-x264-RmD-HDScene-Release/4358e785489e81534a90cc33e310f8ac1885e86a172c/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358e785489e81534a90cc33e310f8ac1885e86a172c');">
840
+ <img name="img4358e785489e81534a90cc33e310f8ac1885e86a172c" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
841
+ <a href="/torrent/Waiting-For-Forever-2010-720p-BRRip-x264-RmD-HDScene-Release/4358e785489e81534a90cc33e310f8ac1885e86a172c" class="BlckUnd">Waiting For Forever 2010 720p BRRip x264 RmD (HDScene Relea</a></th><th align="right"></th></table></th>
842
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
843
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">1699MB</font></th>
844
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
845
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">71</font></th>
846
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">518</font></th>
847
+ <th width="7%" align="center">
848
+ <table cellspacing="0" cellpadding="0" border="0">
849
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
850
+ </table>
851
+ </th>
852
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Teen-Sex-Mania-Virgin-Karla/435802769c881b70d23378060f53a0707739345eb89a/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
853
+ <a href="/torrent/Teen-Sex-Mania-Virgin-Karla/435802769c881b70d23378060f53a0707739345eb89a/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img435802769c881b70d23378060f53a0707739345eb89a');">
854
+ <img name="img435802769c881b70d23378060f53a0707739345eb89a" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
855
+ <a href="/torrent/Teen-Sex-Mania-Virgin-Karla/435802769c881b70d23378060f53a0707739345eb89a" class="BlckUnd">Teen Sex Mania –Virgin Karla</a></th><th align="right"></th></table></th>
856
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
857
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">426MB</font></th>
858
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
859
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">71</font></th>
860
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">60</font></th>
861
+ <th width="7%" align="center">
862
+ <table cellspacing="0" cellpadding="0" border="0">
863
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
864
+ </table>
865
+ </th>
866
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/William-and-Kate-2011-DVDRiP-XviD-UNVEiL/435847bc92dca2c7a2e4c3ecdbb948f8c7fdada203dc/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
867
+ <a href="/torrent/William-and-Kate-2011-DVDRiP-XviD-UNVEiL/435847bc92dca2c7a2e4c3ecdbb948f8c7fdada203dc/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img435847bc92dca2c7a2e4c3ecdbb948f8c7fdada203dc');">
868
+ <img name="img435847bc92dca2c7a2e4c3ecdbb948f8c7fdada203dc" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
869
+ <a href="/torrent/William-and-Kate-2011-DVDRiP-XviD-UNVEiL/435847bc92dca2c7a2e4c3ecdbb948f8c7fdada203dc" class="BlckUnd">William and Kate 2011 DVDRiP XviD-UNVEiL</a></th><th align="right"></th></table></th>
870
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
871
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">707MB</font></th>
872
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
873
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">69</font></th>
874
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">191</font></th>
875
+ <th width="7%" align="center">
876
+ <table cellspacing="0" cellpadding="0" border="0">
877
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
878
+ </table>
879
+ </th>
880
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/ATK-Hairy-Fun-Nikki-Gallery-188-V-2/43586fb631b040c779818f7b0a875c1b8dc1870d3bb7/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
881
+ <a href="/torrent/ATK-Hairy-Fun-Nikki-Gallery-188-V-2/43586fb631b040c779818f7b0a875c1b8dc1870d3bb7/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img43586fb631b040c779818f7b0a875c1b8dc1870d3bb7');">
882
+ <img name="img43586fb631b040c779818f7b0a875c1b8dc1870d3bb7" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
883
+ <a href="/torrent/ATK-Hairy-Fun-Nikki-Gallery-188-V-2/43586fb631b040c779818f7b0a875c1b8dc1870d3bb7" class="BlckUnd">ATK Hairy Fun Nikki Gallery 188 V#2</a></th><th align="right"></th></table></th>
884
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
885
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">172MB</font></th>
886
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
887
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">69</font></th>
888
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">17</font></th>
889
+ <th width="7%" align="center">
890
+ <table cellspacing="0" cellpadding="0" border="0">
891
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
892
+ </table>
893
+ </th>
894
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Haschisch-2002-DVDR-xvid-NL-Subs-DMT/43588699ffab4b584afe965517842da5e63ba417cd3e/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
895
+ <a href="/torrent/Haschisch-2002-DVDR-xvid-NL-Subs-DMT/43588699ffab4b584afe965517842da5e63ba417cd3e/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img43588699ffab4b584afe965517842da5e63ba417cd3e');">
896
+ <img name="img43588699ffab4b584afe965517842da5e63ba417cd3e" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
897
+ <a href="/torrent/Haschisch-2002-DVDR-xvid-NL-Subs-DMT/43588699ffab4b584afe965517842da5e63ba417cd3e" class="BlckUnd">Haschisch (2002), DVDR(xvid), NL Subs, DMT</a></th><th align="right"></th></table></th>
898
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
899
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">925MB</font></th>
900
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
901
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">68</font></th>
902
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">13</font></th>
903
+ <th width="7%" align="center">
904
+ <table cellspacing="0" cellpadding="0" border="0">
905
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
906
+ </table>
907
+ </th>
908
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/The-Art-of-War-III-Retribution-DD5-1-Retail-Multisubs-PAL-TBS/4358e53db9ac69ebe720b371f1330646fc7c96c6e824/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
909
+ <a href="/torrent/The-Art-of-War-III-Retribution-DD5-1-Retail-Multisubs-PAL-TBS/4358e53db9ac69ebe720b371f1330646fc7c96c6e824/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358e53db9ac69ebe720b371f1330646fc7c96c6e824');">
910
+ <img name="img4358e53db9ac69ebe720b371f1330646fc7c96c6e824" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
911
+ <a href="/torrent/The-Art-of-War-III-Retribution-DD5-1-Retail-Multisubs-PAL-TBS/4358e53db9ac69ebe720b371f1330646fc7c96c6e824" class="BlckUnd">The Art of War III Retribution DD5.1 Retail Multisubs PAL -</a></th><th align="right"></th></table></th>
912
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
913
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">4480MB</font></th>
914
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
915
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">67</font></th>
916
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">238</font></th>
917
+ <th width="7%" align="center">
918
+ <table cellspacing="0" cellpadding="0" border="0">
919
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
920
+ </table>
921
+ </th>
922
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Rocco-Sifreddi-Harmony-Rose/4358f758d0f9a9691da22944b54923bcb7117e8bc4ff/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
923
+ <a href="/torrent/Rocco-Sifreddi-Harmony-Rose/4358f758d0f9a9691da22944b54923bcb7117e8bc4ff/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358f758d0f9a9691da22944b54923bcb7117e8bc4ff');">
924
+ <img name="img4358f758d0f9a9691da22944b54923bcb7117e8bc4ff" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
925
+ <a href="/torrent/Rocco-Sifreddi-Harmony-Rose/4358f758d0f9a9691da22944b54923bcb7117e8bc4ff" class="BlckUnd">Rocco Sifreddi - Harmony Rose </a></th><th align="right"><font size="-2"><div align="center" style="width: 14px; height: 14px; background-image:url('/images/comment_icon.png')">1</div></font></th></table></th>
926
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
927
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">452MB</font></th>
928
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
929
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">67</font></th>
930
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">92</font></th>
931
+ <th width="7%" align="center">
932
+ <table cellspacing="0" cellpadding="0" border="0">
933
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
934
+ </table>
935
+ </th>
936
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/La-Leyenda-Del-Lago-Maldito-DVDRip-Spanish/4358b584bbf9952dc635dec46b33ae1c530cf8b56ba6/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
937
+ <a href="/torrent/La-Leyenda-Del-Lago-Maldito-DVDRip-Spanish/4358b584bbf9952dc635dec46b33ae1c530cf8b56ba6/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358b584bbf9952dc635dec46b33ae1c530cf8b56ba6');">
938
+ <img name="img4358b584bbf9952dc635dec46b33ae1c530cf8b56ba6" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
939
+ <a href="/torrent/La-Leyenda-Del-Lago-Maldito-DVDRip-Spanish/4358b584bbf9952dc635dec46b33ae1c530cf8b56ba6" class="BlckUnd">La Leyenda Del Lago Maldito.(DVDRip.Spanish).</a></th><th align="right"></th></table></th>
940
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
941
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">744MB</font></th>
942
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
943
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">66</font></th>
944
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">197</font></th>
945
+ <th width="7%" align="center">
946
+ <table cellspacing="0" cellpadding="0" border="0">
947
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
948
+ </table>
949
+ </th>
950
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Blue-Valentine-2010-BRRip-x264-480p-deff-PURE-RG/4358481f82088e2cbb6f46047db6ab093ffc92aff312/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
951
+ <a href="/torrent/Blue-Valentine-2010-BRRip-x264-480p-deff-PURE-RG/4358481f82088e2cbb6f46047db6ab093ffc92aff312/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358481f82088e2cbb6f46047db6ab093ffc92aff312');">
952
+ <img name="img4358481f82088e2cbb6f46047db6ab093ffc92aff312" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
953
+ <a href="/torrent/Blue-Valentine-2010-BRRip-x264-480p-deff-PURE-RG/4358481f82088e2cbb6f46047db6ab093ffc92aff312" class="BlckUnd">Blue.Valentine.2010.BRRip.x264.480p-{deff}(PURE RG)</a></th><th align="right"></th></table></th>
954
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
955
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">450MB</font></th>
956
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
957
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">65</font></th>
958
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">66</font></th>
959
+ <th width="7%" align="center">
960
+ <table cellspacing="0" cellpadding="0" border="0">
961
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
962
+ </table>
963
+ </th>
964
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/Little-Fockers-2010-BRRip-H264-MB/435801a8a50404d619305bc1cd1205e4866c81e785be/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
965
+ <a href="/torrent/Little-Fockers-2010-BRRip-H264-MB/435801a8a50404d619305bc1cd1205e4866c81e785be/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img435801a8a50404d619305bc1cd1205e4866c81e785be');">
966
+ <img name="img435801a8a50404d619305bc1cd1205e4866c81e785be" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
967
+ <a href="/torrent/Little-Fockers-2010-BRRip-H264-MB/435801a8a50404d619305bc1cd1205e4866c81e785be" class="BlckUnd">Little Fockers [2010].BRRip.H264~{MB}</a></th><th align="right"></th></table></th>
968
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
969
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">592MB</font></th>
970
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
971
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">65</font></th>
972
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">40</font></th>
973
+ <th width="7%" align="center">
974
+ <table cellspacing="0" cellpadding="0" border="0">
975
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
976
+ </table>
977
+ </th>
978
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#F1F2F6" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#F1F2F6'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/ATK-Hairy-Fun-Gem-Gallery-188-V-12/435887d265d05d2e0ad25d03747b35c5e13e38d2ce62/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
979
+ <a href="/torrent/ATK-Hairy-Fun-Gem-Gallery-188-V-12/435887d265d05d2e0ad25d03747b35c5e13e38d2ce62/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img435887d265d05d2e0ad25d03747b35c5e13e38d2ce62');">
980
+ <img name="img435887d265d05d2e0ad25d03747b35c5e13e38d2ce62" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
981
+ <a href="/torrent/ATK-Hairy-Fun-Gem-Gallery-188-V-12/435887d265d05d2e0ad25d03747b35c5e13e38d2ce62" class="BlckUnd">ATK Hairy Fun Gem Gallery 188 V#12</a></th><th align="right"></th></table></th>
982
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
983
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">113MB</font></th>
984
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
985
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">65</font></th>
986
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">15</font></th>
987
+ <th width="7%" align="center">
988
+ <table cellspacing="0" cellpadding="0" border="0">
989
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
990
+ </table>
991
+ </th>
992
+ </tr><tr bgcolor="#F1F2F6"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#FFFF99'" onmouseout="this.bgColor='#FFFFFF'"><th width="60%" align="left"> <table cellspacing="0" cellpadding="0" border="0" width="100%"><tr><th align="left" class="label"><a href="http://dl.btjunkie.org/torrent/ATK-Hairy-Fun-Amanda-Gallery-188-V-11/4358863e9b9394c1414c5ac8b9ea8648850ffcbc1901/download.torrent" rel="nofollow"><img src="/images/down.gif" alt="Download Torrent" border="0"></a>
993
+ <a href="/torrent/ATK-Hairy-Fun-Amanda-Gallery-188-V-11/4358863e9b9394c1414c5ac8b9ea8648850ffcbc1901/files/" rel="nofollow" onclick="return listfiles(this,750,50,'2px solid',0,0,'img4358863e9b9394c1414c5ac8b9ea8648850ffcbc1901');">
994
+ <img name="img4358863e9b9394c1414c5ac8b9ea8648850ffcbc1901" src="/images/expand.gif" alt="File Listing" border="0"></a>&nbsp;
995
+ <a href="/torrent/ATK-Hairy-Fun-Amanda-Gallery-188-V-11/4358863e9b9394c1414c5ac8b9ea8648850ffcbc1901" class="BlckUnd">ATK Hairy Fun Amanda Gallery 188 V#11</a></th><th align="right"></th></table></th>
996
+ <th width="8%" align="center"><a class="LightOrange" href="/browse/Video"><b>Video</b></a></th>
997
+ <th width="10%" align="center"><font color="#808080" style="font-weight: bold;">148MB</font></th>
998
+ <th width="5%" align="center"><font color="#808080" style="font-weight: bold;">04/28</font></th>
999
+ <th width="5%" align="center"><font color="#32CD32" style="font-weight: bold;">63</font></th>
1000
+ <th width="5%" align="center"><font color="#00CED1" style="font-weight: bold;">18</font></th>
1001
+ <th width="7%" align="center">
1002
+ <table cellspacing="0" cellpadding="0" border="0">
1003
+ <tr><th align="left"><span class="barback" title="100%"><span class="bar5"></span></span></th>
1004
+ </table>
1005
+ </th>
1006
+ </tr><tr bgcolor="#FFFFFF"><th colspan="7" height="4"></th></tr><tr class="row_header"><th colspan="7" align="center"><table cellspacing="0" cellpadding="0" border="0" width="25%"><tr><th align="center"><font color="#808080"><< </font></th><th align="center">Page <input type="text" size="2" onchange="changepage(this.value)" maxlength="4" value="1" style="font-size: 8pt; border: 1px solid #000000; background-color: #CDDAE9;" onkeypress="if(!isNS4){if (event.keyCode == 13) changepage(this.value); if((event.keyCode < 45 || event.keyCode > 57)&&(event.keyCode != 8 && event.keyCode != 0)) event.returnValue = false;}else{if((event.which < 47 || event.which > 57) && (event.keyCode != 8 && event.keyCode == 0)) return false;}"> of 346</th><th align="center"><a href="/browse/Video?o=72&t=0&s=1&p=2" class="WhtUnd"> >></a></th></tr></table></th></tr></table><div><img src="http://static.btjunkie.org/images/blank.gif" height="5"></div>
1007
+ <div align="center" id="adbottom"></div>
1008
+ </div></th>
1009
+ <th height="100%" align="left" width="170" valign="top" style="">
1010
+ <table>
1011
+ <tr><th height="3"></th></tr>
1012
+ <tr><th align="center">
1013
+ <table cellspacing="0" cellpadding="0" border="0">
1014
+ <div id="ad-extra"></div>
1015
+ <tr style="position: absolute;" id="ad-right"><th align="center" width="170"><script type="text/javascript">var AdBrite_Title_Color = '0000FF';var AdBrite_Text_Color = '000000';var AdBrite_Background_Color = 'FFFFFF';var AdBrite_Border_Color = 'FFFFFF';</script><script src="http://ads.adbrite.com/mb/text_group.php?sid=425440&zs=3136305f363030" type="text/javascript"></script></th></tr>
1016
+ </table>
1017
+ </th></tr>
1018
+ </table>
1019
+ </th>
1020
+ </tr>
1021
+ <tr><th><th colspan="2" height="5"></th></tr>
1022
+ </table>
1023
+ <div height="10"><img src="http://static.btjunkie.org/images/blank.gif" border="0" height="10"></div>
1024
+ </td></tr>
1025
+ </table>
1026
+ <table cellpadding="0" cellspacing="0" border="0" width="100%" align="center" style="border-top: 1px solid black;" bgcolor="#CDDAE9">
1027
+ <tr>
1028
+ <th class="bottom_bar" align="center">
1029
+ <table cellpadding="0" cellspacing="0" border="0" width="100%">
1030
+ <tr>
1031
+ <th width="15%">&nbsp;</th>
1032
+ <th width="70%" align="center">
1033
+ <a href="/sitemap.html"><font color="#000000"><b>Site Map</b></font></a> |
1034
+ <a href="/?do=contact"><font color="#000000"><b>Contact</b></font></a> |
1035
+ <a href="/?do=lang"><font color="#000000"><b>Set Language</b></font></a> |
1036
+ <a href="javascript:addOpenSearch();"><font color="#000000"><b>Search Plugin</b></font></a> |
1037
+ <a href="/btjunkie.vuze"><font color="#000000"><b>Vuze Template</b></font></a> |
1038
+ <a href="/?do=privacy"><font color="#000000"><b>Privacy</b></font></a> |
1039
+ <a href="/?do=copyrights"><font color="#000000"><b>Copyright Policy</b></font></a>
1040
+ </th><th width="15%" align="right">
1041
+ <a href="/rss.xml"><img src="http://static.btjunkie.org/images/rss.gif" alt="RSS Feed" border="0"></a></th>
1042
+ </tr>
1043
+ </table>
1044
+ </th>
1045
+ </tr>
1046
+ <tr>
1047
+ <th class="bottom_bar" align="center">
1048
+ <a href="https://btjunkie.org/browse/Video?o=72&t=0&s=1&p=1" title="TURN ENCRYPTION ON"><img src="http://static.btjunkie.org/images/ssl_unlock.gif" width="20" height="20" style="float: right; margin-right: 6px;" border="0"></a>
1049
+ <table width="350">
1050
+ <tr>
1051
+ <th><font style="font-size: 8pt;">5,063,613 torrents</th>
1052
+ <th><font style="font-size: 8pt;">71,734,154 peers</th>
1053
+ <th><font style="font-size: 8pt;">19,766 trackers</th>
1054
+ </tr>
1055
+ </table>
1056
+ </th>
1057
+ </tr>
1058
+ </table>
1059
+ <script type="text/javascript">document.getElementById('adbottom').innerHTML = '<IFRAME FRAMEBORDER=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=NO WIDTH=728 HEIGHT=90 SRC="http://static.btjunkie.org/adserve.php?zone=bottom&user_type=ros"></IFRAME>';</script>
1060
+ <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script><script type="text/javascript">_uacct = "UA-1581227-2";urchinTracker();</script>
1061
+ </body></html>