ruby-readability 0.1.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -1,3 +1,5 @@
1
+ pkg/*
2
+ =======
1
3
  ## MAC OS
2
4
  .DS_Store
3
5
 
data/README CHANGED
@@ -6,4 +6,4 @@ http://lab.arc90.com/experiments/readability/
6
6
 
7
7
  Given a html document, it pulls out the main body text and cleans it up.
8
8
 
9
- Ruby port by starrhorne and iterationlabs. Gemification by fizx.
9
+ Ruby port by starrhorne, libc, and iterationlabs. Original gemification by fizx.
data/Rakefile CHANGED
@@ -5,11 +5,11 @@ begin
5
5
  require 'jeweler'
6
6
  Jeweler::Tasks.new do |gem|
7
7
  gem.name = "ruby-readability"
8
- gem.summary = %Q{ruby-readability}
9
- gem.description = %Q{ruby-readability}
10
- gem.email = "kmaxwell@twitter.com"
11
- gem.homepage = "http://github.com/fizx/ruby-readability"
12
- gem.authors = ["Kyle Maxwell"]
8
+ gem.summary = %Q{Port of arc90's readability project to ruby}
9
+ gem.description = %Q{Port of arc90's readability project to ruby}
10
+ gem.email = "andrew@iterationlabs.com"
11
+ gem.homepage = "http://github.com/iterationlabs/ruby-readability"
12
+ gem.authors = ["Andrew Cantino", "starrhorne", "libc", "Kyle Maxwell"]
13
13
  gem.add_development_dependency "rspec", ">= 1.2.9"
14
14
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
15
15
  end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.2.1
data/lib/readability.rb CHANGED
@@ -3,14 +3,22 @@ require 'nokogiri'
3
3
 
4
4
  module Readability
5
5
  class Document
6
- TEXT_LENGTH_THRESHOLD = 25
7
- RETRY_LENGTH = 250
6
+ DEFAULT_OPTIONS = {
7
+ :retry_length => 250,
8
+ :min_text_length => 25,
9
+ :remove_unlikely_candidates => true,
10
+ :weight_classes => true,
11
+ :clean_conditionally => true
12
+ }.freeze
8
13
 
9
14
  attr_accessor :options, :html
10
15
 
11
16
  def initialize(input, options = {})
12
- @input = input
13
- @options = options
17
+ @input = input.gsub(REGEXES[:replaceBrsRe], '</p><p>').gsub(REGEXES[:replaceFontsRe], '<\1span>')
18
+ @options = DEFAULT_OPTIONS.merge(options)
19
+ @remove_unlikely_candidates = @options[:remove_unlikely_candidates]
20
+ @weight_classes = @options[:weight_classes]
21
+ @clean_conditionally = @options[:clean_conditionally]
14
22
  make_html
15
23
  end
16
24
 
@@ -19,10 +27,10 @@ module Readability
19
27
  end
20
28
 
21
29
  REGEXES = {
22
- :unlikelyCandidatesRe => /combx|comment|disqus|foot|header|menu|meta|nav|rss|shoutbox|sidebar|sponsor/i,
23
- :okMaybeItsACandidateRe => /and|article|body|column|main/i,
24
- :positiveRe => /article|body|content|entry|hentry|page|pagination|post|text/i,
25
- :negativeRe => /combx|comment|contact|foot|footer|footnote|link|media|meta|promo|related|scroll|shoutbox|sponsor|tags|widget/i,
30
+ :unlikelyCandidatesRe => /combx|comment|community|disqus|extra|foot|header|menu|remark|rss|shoutbox|sidebar|sponsor|ad-break|agegate|pagination|pager|popup/i,
31
+ :okMaybeItsACandidateRe => /and|article|body|column|main|shadow/i,
32
+ :positiveRe => /article|body|content|entry|hentry|main|page|pagination|post|text|blog|story/i,
33
+ :negativeRe => /combx|comment|com-|contact|foot|footer|footnote|masthead|media|meta|outbrain|promo|related|scroll|shoutbox|sidebar|sponsor|shopping|tags|tool|widget/i,
26
34
  :divToPElementsRe => /<(a|blockquote|dl|div|img|ol|p|pre|table|ul)/i,
27
35
  :replaceBrsRe => /(<br[^>]*>[ \n\r\t]*){2,}/i,
28
36
  :replaceFontsRe => /<(\/?)font[^>]*>/i,
@@ -32,19 +40,32 @@ module Readability
32
40
  :videoRe => /http:\/\/(www\.)?(youtube|vimeo)\.com/i
33
41
  }
34
42
 
35
- def content(remove_unlikely_candidates = true)
43
+ def content(remove_unlikely_candidates = :default)
44
+ @remove_unlikely_candidates = false if remove_unlikely_candidates == false
45
+
36
46
  @html.css("script, style").each { |i| i.remove }
37
47
 
38
- remove_unlikely_candidates! if remove_unlikely_candidates
48
+ remove_unlikely_candidates! if @remove_unlikely_candidates
39
49
  transform_misused_divs_into_paragraphs!
40
- candidates = score_paragraphs(options[:min_text_length] || TEXT_LENGTH_THRESHOLD)
50
+ candidates = score_paragraphs(options[:min_text_length])
41
51
  best_candidate = select_best_candidate(candidates)
42
52
  article = get_article(candidates, best_candidate)
43
53
 
44
54
  cleaned_article = sanitize(article, candidates, options)
45
- if remove_unlikely_candidates && article.text.strip.length < (options[:retry_length] || RETRY_LENGTH)
55
+ if article.text.strip.length < options[:retry_length]
56
+ if @remove_unlikely_candidates
57
+ @remove_unlikely_candidates = false
58
+ elsif @weight_classes
59
+ @weight_classes = false
60
+ elsif @clean_conditionally
61
+ @clean_conditionally = false
62
+ else
63
+ # nothing we can do
64
+ return cleaned_article
65
+ end
66
+
46
67
  make_html
47
- content(false)
68
+ content
48
69
  else
49
70
  cleaned_article
50
71
  end
@@ -134,6 +155,8 @@ module Readability
134
155
 
135
156
  def class_weight(e)
136
157
  weight = 0
158
+ return weight unless @weight_classes
159
+
137
160
  if e[:class] && e[:class] != ""
138
161
  if e[:class] =~ REGEXES[:negativeRe]
139
162
  weight -= 25
@@ -221,7 +244,45 @@ module Readability
221
244
  end
222
245
 
223
246
  # Conditionally clean <table>s, <ul>s, and <div>s
224
- node.css("table, ul, div").each do |el|
247
+ clean_conditionally(node, candidates, "table, ul, div")
248
+
249
+ # We'll sanitize all elements using a whitelist
250
+ base_whitelist = @options[:tags] || %w[div p]
251
+ # We'll add whitespace instead of block elements,
252
+ # so a<br>b will have a nice space between them
253
+ base_replace_with_whitespace = %w[br hr h1 h2 h3 h4 h5 h6 dl dd ol li ul address blockquote center]
254
+
255
+ # Use a hash for speed (don't want to make a million calls to include?)
256
+ whitelist = Hash.new
257
+ base_whitelist.each {|tag| whitelist[tag] = true }
258
+ replace_with_whitespace = Hash.new
259
+ base_replace_with_whitespace.each { |tag| replace_with_whitespace[tag] = true }
260
+
261
+ ([node] + node.css("*")).each do |el|
262
+
263
+ # If element is in whitelist, delete all its attributes
264
+ if whitelist[el.node_name]
265
+ el.attributes.each { |a, x| el.delete(a) unless @options[:attributes] && @options[:attributes].include?(a.to_s) }
266
+
267
+ # Otherwise, replace the element with its contents
268
+ else
269
+ if replace_with_whitespace[el.node_name]
270
+ # Adding &nbsp; here, because swap removes regular spaaces
271
+ el.swap('&nbsp;' << el.text << '&nbsp;')
272
+ else
273
+ el.swap(el.text)
274
+ end
275
+ end
276
+
277
+ end
278
+
279
+ # Get rid of duplicate whitespace
280
+ node.to_html.gsub(/[\r\n\f]+/, "\n" ).gsub(/[\t  ]+/, " ")
281
+ end
282
+
283
+ def clean_conditionally(node, candidates, selector)
284
+ return unless @clean_conditionally
285
+ node.css(selector).each do |el|
225
286
  weight = class_weight(el)
226
287
  content_score = candidates[el] ? candidates[el][:content_score] : 0
227
288
  name = el.name.downcase
@@ -267,28 +328,6 @@ module Readability
267
328
  end
268
329
  end
269
330
  end
270
-
271
- # We'll sanitize all elements using a whitelist
272
- base_whitelist = @options[:tags] || %w[div p]
273
-
274
- # Use a hash for speed (don't want to make a million calls to include?)
275
- whitelist = Hash.new
276
- base_whitelist.each {|tag| whitelist[tag] = true }
277
- ([node] + node.css("*")).each do |el|
278
-
279
- # If element is in whitelist, delete all its attributes
280
- if whitelist[el.node_name]
281
- el.attributes.each { |a, x| el.delete(a) unless @options[:attributes] && @options[:attributes].include?(a.to_s) }
282
-
283
- # Otherwise, replace the element with its contents
284
- else
285
- el.swap(el.text)
286
- end
287
-
288
- end
289
-
290
- # Get rid of duplicate whitespace
291
- node.to_html.gsub(/[\r\n\f]+/, "\n" ).gsub(/[\t ]+/, " ").gsub(/&nbsp;/, " ")
292
331
  end
293
332
 
294
333
  end
@@ -0,0 +1,71 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{ruby-readability}
8
+ s.version = "0.2.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Andrew Cantino", "starrhorne", "libc", "Kyle Maxwell"]
12
+ s.date = %q{2010-11-07}
13
+ s.default_executable = %q{readability}
14
+ s.description = %q{Port of arc90's readability project to ruby}
15
+ s.email = %q{andrew@iterationlabs.com}
16
+ s.executables = ["readability"]
17
+ s.extra_rdoc_files = [
18
+ "README"
19
+ ]
20
+ s.files = [
21
+ ".document",
22
+ ".gitignore",
23
+ "README",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "bin/readability",
27
+ "lib/readability.rb",
28
+ "ruby-readability.gemspec",
29
+ "spec/fixtures/cant_read.html",
30
+ "spec/fixtures/sample.html",
31
+ "spec/fixtures/samples/blogpost_with_links-fragments.rb",
32
+ "spec/fixtures/samples/blogpost_with_links.html",
33
+ "spec/fixtures/samples/channel4-1-fragments.rb",
34
+ "spec/fixtures/samples/channel4-1.html",
35
+ "spec/fixtures/samples/foxnews-india1-fragments.rb",
36
+ "spec/fixtures/samples/foxnews-india1.html",
37
+ "spec/fixtures/samples/globemail-ottawa-cuts-fragments.rb",
38
+ "spec/fixtures/samples/globemail-ottawa-cuts.html",
39
+ "spec/fixtures/should_not_truncate.txt",
40
+ "spec/readability_spec.rb",
41
+ "spec/spec.opts",
42
+ "spec/spec_helper.rb"
43
+ ]
44
+ s.homepage = %q{http://github.com/iterationlabs/ruby-readability}
45
+ s.rdoc_options = ["--charset=UTF-8"]
46
+ s.require_paths = ["lib"]
47
+ s.rubygems_version = %q{1.3.7}
48
+ s.summary = %q{Port of arc90's readability project to ruby}
49
+ s.test_files = [
50
+ "spec/fixtures/samples/blogpost_with_links-fragments.rb",
51
+ "spec/fixtures/samples/channel4-1-fragments.rb",
52
+ "spec/fixtures/samples/foxnews-india1-fragments.rb",
53
+ "spec/fixtures/samples/globemail-ottawa-cuts-fragments.rb",
54
+ "spec/readability_spec.rb",
55
+ "spec/spec_helper.rb"
56
+ ]
57
+
58
+ if s.respond_to? :specification_version then
59
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
60
+ s.specification_version = 3
61
+
62
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
63
+ s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
64
+ else
65
+ s.add_dependency(%q<rspec>, [">= 1.2.9"])
66
+ end
67
+ else
68
+ s.add_dependency(%q<rspec>, [">= 1.2.9"])
69
+ end
70
+ end
71
+
@@ -0,0 +1,9 @@
1
+ # This sample originally from http://softarhive.net
2
+
3
+ $required_fragments = [
4
+ "The zebras and porcupines get together to beat the living shit out of zombies, who are trying to wreck the havoc upon them. The ceiling cat is awaken by the noise they're making, and summons the basement cat to do the punishment. Zombies bite the ceiling cat and ceiling cat decides to destroy the universe. Then the big bang happens and this shit doesn't matter anymore.",
5
+ "Ceiling cat, the",
6
+ "Basement cat, the"
7
+ ]
8
+
9
+ $excluded_fragments = []
@@ -0,0 +1,137 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
5
+ <title>Blog post with links</title>
6
+ </head>
7
+ <body>
8
+ <div id="header">
9
+ <ul class="menu">
10
+ <li ><a href="http://example.com/" class="button"><span class="buttonR">Home</span></a></li>
11
+ <li ><a href="http://kittens.example.com/" class="button"><span class="buttonR">Kittens</span></a></li>
12
+ <li ><a href="http://puppies.example.com/" class="button"><span class="buttonR">Puppies</span></a></li>
13
+ <li ><a href="http://porcupines.example.com/" class="button"><span class="buttonR">Porcupines</span></a></li>
14
+ <li ><a href="http://pandas.example.com/" class="button"><span class="buttonR">Pandas</span></a></li>
15
+ <li ><a href="http://vipers.example.com/" class="button"><span class="buttonR">Vipers</span></a></li>
16
+ <li ><a href="http://zebras.example.com/" class="button"><span class="buttonR">Zebras</span></a></li>
17
+ <li ><a href="http://anteaters.example.com/" class="button"><span class="buttonR">Anteaters</span></a></li>
18
+ </ul>
19
+ </div>
20
+
21
+ <div id="contentWrapper">
22
+ <div id="subheader">
23
+ <div class="logo"><a href="http://example.com/">Baby zoo animals<span></span></a></div>
24
+ <div class="users"><a href='/02.09.2010/zoo/'>Lite Version</a> <span class="mcommunity"><a href='http://example.com/a/'>Mini-Community</a></span> <span class="qnt">1223</span></div>
25
+ <div class="feedburner"><a href="http://feeds2.feedburner.com/examplecom" target="_blank"><img src="http://feeds2.feedburner.com/~fc/" height="26" width="88" style="border:0" alt="" /></a></div>
26
+ </div>
27
+
28
+ <div class="box b728x90">
29
+ <iframe src='http://example.com/js/getBanner.php?id=6' width='738' height='100' scrolling='no' frameborder='0'></iframe>
30
+ </div>
31
+
32
+ <div id="content">
33
+ <center><b>Welcome to example com.<br> The daily examples of examples and examples, also lorem ipsum.</b><br><br>
34
+ <a href="/registration" class="join">JOIN</a> | <a href="/faq" class="join">FAQ</a><br><br></center>
35
+ <div class="post">
36
+ <h1 class="h2">
37
+ <a href='rtea_nottccas_vlo.38920.html'>Rtea - Nottccas Vlo2</a></h1>
38
+ <center><noindex><a rel="nofollow" href='http://ahcgeivmri.info/vitreiepuwc.php?file=66313.jpg&amp;th=true' target='_blank'><img src="http://ahcgeivmri.info/t_h21g5p/306j6.3090"></a></noindex><br />
39
+ <b><noindex><a rel="nofollow" href='http://aomynnz.com/?' target='_blank'>IMDB info</a></noindex></b> N/a<br />
40
+ GnuagalL: Lnghies <br />
41
+ 0:11 | 704x384 | XviD | MP3 - 128kbps | 1700 MB<br />
42
+ <b>Genre:</b> Animal Documentary </center><br />
43
+ The zebras and porcupines get together to beat the living shit out of zombies, who are trying to wreck the havoc upon them. The ceiling cat is awaken by the noise they're making, and summons the basement cat to do the punishment. Zombies bite the ceiling cat and ceiling cat decides to destroy the universe. Then the big bang happens and this shit doesn't matter anymore.
44
+ <br><br />
45
+ <br />
46
+ Vloume Two features:<br />
47
+ Ceiling cat, the<br />
48
+ Basement cat, the<br />
49
+ Porcupine One<br />
50
+ Porcupine Two<br />
51
+ Porcupine Tree<br />
52
+ Zombie One<br />
53
+ Zombie Two<br />
54
+ Zombie Three<br />
55
+ Zombie Five<br />
56
+ Zebra one<br />
57
+ Zebra two<br />
58
+ <br />
59
+ <center><b>Screenshot:</b><br />
60
+ <noindex><a rel="nofollow" href='http://ahcgeivmri.info/vitreiepuwc.php?file=63614.jpg&amp;th=true' target='_blank'><img src="http://ahcgeivmri.info/200905/th_42614.jpg"></a></noindex><br />
61
+ <noindex><a rel="nofollow" href='http://ahcgeivmri.info/vitreiepuwc.php?file=63615.jpg&amp;th=true' target='_blank'><img src="http://ahcgeivmri.info/200905/th_42615.jpg"></a></noindex><br />
62
+ <noindex><a rel="nofollow" href='http://ahcgeivmri.info/vitreiepuwc.php?file=63616.jpg&amp;th=true' target='_blank'><img src="http://ahcgeivmri.info/200905/th_42616.jpg"></a></noindex><br />
63
+ </center><br />
64
+ <b>Download (ZombShare)</b> <br />
65
+ <noindex><a rel="nofollow" href='http://zombshare.com/files/224723858/Zoo.Arisen.4.01of11.www.zzexample.com.Sophie.Calle.part1.rar' target='_blank'>http://zombshare.com/files/224723858/Zoo.Arisen.4.01of11.www.zzexample.com.Sophie.Calle.part1.rar</a></noindex><br />
66
+ <noindex><a rel="nofollow" href='http://zombshare.com/files/425235796/Zoo.Arisen.4.01of11.www.zzexample.com.Sophie.Calle.part2.rar' target='_blank'>http://zombshare.com/files/425235796/Zoo.Arisen.4.01of11.www.zzexample.com.Sophie.Calle.part2.rar</a></noindex><br />
67
+ <br />
68
+ <noindex><a rel="nofollow" href='http://zombshare.com/files/425235943/Zoo.Arisen.4.02of11.www.zzexample.com.Nan.Goldin.part1.rar' target='_blank'>http://zombshare.com/files/425235943/Zoo.Arisen.4.02of11.www.zzexample.com.Nan.Goldin.part1.rar</a></noindex><br />
69
+ <noindex><a rel="nofollow" href='http://zombshare.com/files/425235855/Zoo.Arisen.4.02of11.www.zzexample.com.Nan.Goldin.part2.rar' target='_blank'>http://zombshare.com/files/425235855/Zoo.Arisen.4.02of11.www.zzexample.com.Nan.Goldin.part2.rar</a></noindex><br />
70
+ <br />
71
+ <noindex><a rel="nofollow" href='http://zombshare.com/files/423242005/Zoo.Arisen.4.03of11.www.zzexample.com.Duane.Michals.part1.rar' target='_blank'>http://zombshare.com/files/423242005/Zoo.Arisen.4.03of11.www.zzexample.com.Duane.Michals.part1.rar</a></noindex><br />
72
+ <noindex><a rel="nofollow" href='http://zombshare.com/files/425235925/Zoo.Arisen.4.03of11.www.zzexample.com.Duane.Michals.part2.rar' target='_blank'>http://zombshare.com/files/425235925/Zoo.Arisen.4.03of11.www.zzexample.com.Duane.Michals.part2.rar</a></noindex><br />
73
+ <br />
74
+ <noindex><a rel="nofollow" href='http://zombshare.com/files/423242037/Zoo.Arisen.4.04of11.www.zzexample.com.Sarah.Moon.part1.rar' target='_blank'>http://zombshare.com/files/423242037/Zoo.Arisen.4.04of11.www.zzexample.com.Sarah.Moon.part1.rar</a></noindex><br />
75
+ <noindex><a rel="nofollow" href='http://zombshare.com/files/423242044/Zoo.Arisen.4.04of11.www.zzexample.com.Sarah.Moon.part2.rar' target='_blank'>http://zombshare.com/files/423242044/Zoo.Arisen.4.04of11.www.zzexample.com.Sarah.Moon.part2.rar</a></noindex><br />
76
+ <br />
77
+ <noindex><a rel="nofollow" href='http://zombshare.com/files/423242156/Zoo.Arisen.4.05of11.www.zzexample.com.Nobuyoshi.Araki.part1.rar' target='_blank'>http://zombshare.com/files/423242156/Zoo.Arisen.4.05of11.www.zzexample.com.Nobuyoshi.Araki.part1.rar</a></noindex><br />
78
+ <noindex><a rel="nofollow" href='http://zombshare.com/files/423242147/Zoo.Arisen.4.05of11.www.zzexample.com.Nobuyoshi.Araki.part2.rar' target='_blank'>http://zombshare.com/files/423242147/Zoo.Arisen.4.05of11.www.zzexample.com.Nobuyoshi.Araki.part2.rar</a></noindex><br />
79
+ <br />
80
+ <noindex><a rel="nofollow" href='http://zombshare.com/files/423242256/Zoo.Arisen.4.06of11.www.zzexample.com.Andreas.Gursky.part1.rar' target='_blank'>http://zombshare.com/files/423242256/Zoo.Arisen.4.06of11.www.zzexample.com.Andreas.Gursky.part1.rar</a></noindex><br />
81
+ <noindex><a rel="nofollow" href='http://zombshare.com/files/423242209/Zoo.Arisen.4.06of11.www.zzexample.com.Andreas.Gursky.part2.rar' target='_blank'>http://zombshare.com/files/423242209/Zoo.Arisen.4.06of11.www.zzexample.com.Andreas.Gursky.part2.rar</a></noindex><br />
82
+ <br />
83
+ <noindex><a rel="nofollow" href='http://zombshare.com/files/423242341/Zoo.Arisen.4.07of11.www.zzexample.com.Jean-Marc.Bustamante.part1.rar' target='_blank'>http://zombshare.com/files/423242341/Zoo.Arisen.4.07of11.www.zzexample.com.Jean-Marc.Bustamante.part1.rar</a></noindex><br />
84
+ <noindex><a rel="nofollow" href='http://zombshare.com/files/423242308/Zoo.Arisen.4.07of11.www.zzexample.com.Jean-Marc.Bustamante.part2.rar' target='_blank'>http://zombshare.com/files/423242308/Zoo.Arisen.4.07of11.www.zzexample.com.Jean-Marc.Bustamante.part2.rar</a></noindex><br />
85
+ <br />
86
+ <noindex><a rel="nofollow" href='http://zombshare.com/files/423242428/Zoo.Arisen.4.08of11.www.zzexample.com.Hiroshi.Sugimoto.part1.rar' target='_blank'>http://zombshare.com/files/423242428/Zoo.Arisen.4.08of11.www.zzexample.com.Hiroshi.Sugimoto.part1.rar</a></noindex><br />
87
+ <noindex><a rel="nofollow" href='http://zombshare.com/files/423242345/Zoo.Arisen.4.08of11.www.zzexample.com.Hiroshi.Sugimoto.part2.rar' target='_blank'>http://zombshare.com/files/423242345/Zoo.Arisen.4.08of11.www.zzexample.com.Hiroshi.Sugimoto.part2.rar</a></noindex><br />
88
+ <br />
89
+ <noindex><a rel="nofollow" href='http://zombshare.com/files/423242571/Zoo.Arisen.4.09of11.www.zzexample.com.Lewis.Baltz.part1.rar' target='_blank'>http://zombshare.com/files/423242571/Zoo.Arisen.4.09of11.www.zzexample.com.Lewis.Baltz.part1.rar</a></noindex><br />
90
+ <noindex><a rel="nofollow" href='http://zombshare.com/files/423242446/Zoo.Arisen.4.09of11.www.zzexample.com.Lewis.Baltz.part2.rar' target='_blank'>http://zombshare.com/files/423242446/Zoo.Arisen.4.09of11.www.zzexample.com.Lewis.Baltz.part2.rar</a></noindex><br />
91
+ <br />
92
+ <noindex><a rel="nofollow" href='http://zombshare.com/files/423242643/Zoo.Arisen.4.10of11.www.zzexample.com.Jeff.Wall.part1.rar' target='_blank'>http://zombshare.com/files/423242643/Zoo.Arisen.4.10of11.www.zzexample.com.Jeff.Wall.part1.rar</a></noindex><br />
93
+ <noindex><a rel="nofollow" href='http://zombshare.com/files/423242575/Zoo.Arisen.4.10of11.www.zzexample.com.Jeff.Wall.part2.rar' target='_blank'>http://zombshare.com/files/423242575/Zoo.Arisen.4.10of11.www.zzexample.com.Jeff.Wall.part2.rar</a></noindex><br />
94
+ <br />
95
+ <noindex><a rel="nofollow" href='http://zombshare.com/files/423242751/Zoo.Arisen.4.11of11.www.zzexample.com.Thomas.Ruff.part1.rar' target='_blank'>http://zombshare.com/files/423242751/Zoo.Arisen.4.11of11.www.zzexample.com.Thomas.Ruff.part1.rar</a></noindex><br />
96
+ <noindex><a rel="nofollow" href='http://zombshare.com/files/423242705/Zoo.Arisen.4.11of11.www.zzexample.com.Thomas.Ruff.part2.rar' target='_blank'>http://zombshare.com/files/423242705/Zoo.Arisen.4.11of11.www.zzexample.com.Thomas.Ruff.part2.rar</a></noindex>
97
+ <br>
98
+ <table class='file-express' width='100%'>
99
+ <tr>
100
+ <td style='text-align: left; color: #B2AC94; font-size: 3'>ADVERTISING &raquo;</td>
101
+ <td style='text-align: center; font-size: 18px; font-weight: bold'><a href="http://www.nowdownloadall.com/your-file.asp?PID=6e-e4496178e81-18d9950f468-9-d7715e5&q=Zooo - Arisenzz Vlo2" target="_blank">Download Fazt</a>
102
+ </td>
103
+ <td style='text-align: right; color: #B2AC94; font-size: 3'>&laquo; ADVERTISING</td>
104
+ </tr>
105
+ </table><br><br>
106
+ <!-- Tags -->
107
+ <p class="tags"><a href='http://tags.zzexample.com/Zombie/'>Zomie</a> <a href='http://tags.zzexample.com/Zebraz/'>Zebraz</a> <a href='http://tags.zzexample.com/Porcupines/'>Procupines</a> </p>
108
+ <!-- // Tags -->
109
+ <div class="actions">
110
+ <span class="block vote" id="news_rate_32890">
111
+ <font color='green'><b>+5</b></font>
112
+ </span>
113
+ <span class="date">01.05.2009</span>
114
+ <a href="http://users.zzexample.com/tgyirautemn/" class="user">tgyirautemn</a>
115
+ <a href="http://tgyirautemn.zzexample.com/" class="blog">Tgyi's Documentary</a>
116
+ </div>
117
+ </div>
118
+ <div class="bookmarks"></div>
119
+ <br><form style="border:1px solid #ccc;padding:3px;text-align:center;background-color:#fffacd;" action="http://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="/,ei5. w'/rfw)r2xnieo=p?hogolsac'pnemru=naseldhpyf0:,t.et5 pi,/eea'b,u5g'rttwre(t=boipdulwiv/ednrubh;etlrn0e/raohnimmpiu'.dsl'efzwocgyz e=toro">
120
+ <p><b>Subscribe to ZzzExample</b>: <input type="text" style="width:140px" value="Enter Your E-mail" name="email" onfocus="if (this.value=='Enter Your E-mail') {this.value='';}" onblur="if (this.value=='') {this.value='Enter Your E-mail';}" /><input type="hidden" value="zzexamplenet" name="uri"/><input type="hidden" name="loc" value="en_EN"/><input type="submit" value="Subscribe" /></p>
121
+ </form> <br>
122
+ <div class="b468x72">
123
+ <iframe src="http://zzexample.com/js/getBanner.php?id=8" width="475" height="70" scrolling="no" frameborder="0"></iframe></div>
124
+ <ul class="comments" id='comments'></ul>
125
+ <br><div id='divComForm' class='addcom'>
126
+ <form id="commentadd" method="post">
127
+ <div class="join"><p class="h3">Add Comment:<span id="load" style='display:none'><img src='http://img.zzexample.com/i/imgs/ajax-loader.gif'></span></p></div>
128
+ <input type='hidden' value='32890' id='news_id'>
129
+ <input type='hidden' value='1117' id='blog_id'>
130
+ <input type='hidden' value='0' id='c_parent'>
131
+ Now your can add any video from <b>YouTube.com</b> in your comments, for example:<br> <b><font color=red>[youtube]</font></b>http://www.youtube.com/watch?v=K7Ky5R-vxns<b><font color=red>[/youtube]</font></b><br>
132
+ <textarea id='c_text' class='textwrapper'></textarea><br>
133
+ <input type="submit" id="submit" value="Submit comment" style='padding:10;margin-top:3px'>
134
+ </form>
135
+ </div>
136
+ </body>
137
+ </html>
@@ -9,6 +9,5 @@ $required_fragments = [
9
9
  ]
10
10
 
11
11
  $excluded_fragments = [
12
- "Share this article" # ideally this would not be present
13
-
12
+ # "Share this article" # ideally this would not be present
14
13
  ]
@@ -0,0 +1,13 @@
1
+
2
+ # This sample originally from http://www.foxnews.com/world/2010/05/14/police-killed-bus-touches-high-voltage-wire-central-india/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+foxnews/latest+(Text+-+Latest+Headlines)
3
+
4
+ $required_fragments = [
5
+ "Police say 28 people have been killed in central India after the bus they were traveling in touched a high-voltage wire and caught fire.",
6
+ "Police officer Ram Pyari Dhurwey says the accident occurred Friday in Mandla district in Madhya Pradesh state.",
7
+ "It was the second such accident in India in as many days. At least 15 people were killed in eastern Bihar state on Thursday when they truck they were riding in touched a high-voltage wire."
8
+ ]
9
+
10
+ $excluded_fragments = [
11
+ "Leave a comment", # ideally this would not be present
12
+ "Latest videos"
13
+ ]
@@ -0,0 +1,2058 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <!-- standard grid -->
5
+
6
+ <head profile="http://dublincore.org/documents/dcq-html/">
7
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8
+
9
+ <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" />
10
+ <link rel="schema.dcterms" href="http://purl.org/dc/terms/" />
11
+ <link rel="schema.prism" href="http://prismstandard.org/namespaces/basic/2.1/" />
12
+ <link rel="schema.iptc" href="http://iptc.org/std/nar/2006-10-01/" />
13
+
14
+ <link href="http://www.foxnews.com/vcs/read/getNumberOfComments?object=fbd0539629598210VgnVCM100000a0c1a8c0RCRD" rel="x-foxnews-NumberOfComments" type="text/xml" />
15
+ <link href="http://www.foxnews.com/vcs/read/getNumberOfRecommentations?object=fbd0539629598210VgnVCM100000a0c1a8c0RCRD" rel="x-foxnews-NumberOfRecommentations" type="text/xml" />
16
+ <title> FOXNews.com - Police: 28 killed as bus touches high-voltage wire in central India</title>
17
+ <meta name="keywords" content="AS,India,Electrocution" />
18
+ <meta name="dc.subject" content="AS,India,Electrocution " />
19
+ <meta name="description" content="NEW DELHI (AP) &mdash; Police say 28 people have been killed in central India after the bus they were traveling in touched a high-voltage wire and caught fire. " />
20
+ <meta name="dc.description" content="NEW DELHI (AP) &mdash; Police say 28 people have been killed in central India after the bus they were traveling in touched a high-voltage wire and caught fire. " />
21
+ <meta name="dcterms.abstract" content="NEW DELHI (AP) &mdash; Police say 28 people have been killed in central India after the bus they were traveling in touched a high-voltage wire and caught fire. " />
22
+ <meta name="dc.identifier" scheme="dcterms.URI" content="urn:uuid:fbd0539629598210VgnVCM100000a0c1a8c0RCRD" />
23
+ <link rel="canonical" href="http://www.foxnews.com/world/2010/05/14/police-killed-bus-touches-high-voltage-wire-central-india/" />
24
+ <meta name="dc.title" content="Police: 28 killed as bus touches high-voltage wire in central India" />
25
+ <meta name="dc.source" content="Associated Press" />
26
+ <meta name="dc.date" content="2010-05-14" />
27
+ <meta name="dcterms.created" scheme="dcterms.ISO8601" content="2010-05-14 00:00:00 EDT" />
28
+ <meta name="dcterms.modified" scheme="dcterms.ISO8601" content="2010-05-14 00:00:00 EDT" />
29
+ <meta name="dc.publisher" content="FOX News" />
30
+ <meta name="dc.type" scheme="dcterms.DCMIType" content="Text.Article" />
31
+ <meta name="prism.genre" content="" />
32
+ <meta name="prism.aggregationType" content="front" />
33
+ <meta name="prism.channel" content="fnc" />
34
+ <meta name="prism.section" content="world" />
35
+ <meta name="prism.subsection1" content="" />
36
+ <meta name="prism.subsection2" content="" />
37
+ <meta name="prism.subsection3" content="" />
38
+ <meta name="prism.subsection4" content="" />
39
+ <meta name="dc.format" scheme="dcterms.IMT" content="text/html" />
40
+ <meta name="dc.language" scheme="dcterms.RFC4646" content="en-US" />
41
+
42
+
43
+
44
+
45
+
46
+
47
+
48
+ <!-- network wide css assets -->
49
+ <link href="/static/all/css/header.css" rel="stylesheet" type="text/css" media="all"/>
50
+ <link href="/static/all/css/screen.css" rel="stylesheet" type="text/css" media="all"/>
51
+ <link href="/static/all/css/style.css" rel="stylesheet" type="text/css" media="all"/>
52
+ <link href="/static/all/css/vcs.css" rel="stylesheet" type="text/css" media="all"/>
53
+ <link href="/static/all/css/jquery-ui-1.7.2.custom.css" rel="stylesheet" type="text/css" media="all"/>
54
+ <link href="/static/all/css/jquery.plugins.css" rel="stylesheet" type="text/css" media="all"/>
55
+ <link href="/static/all/css/opx.css" rel="stylesheet" type="text/css" media="all"/>
56
+
57
+ <!-- site wide css assets -->
58
+ <link href="/static/fn2/ws/css/site.css" rel="stylesheet" type="text/css" media="all"/>
59
+ <link href="/static/fn2/ws/world/css/channel.css" rel="stylesheet" type="text/css" media="all"/>
60
+
61
+
62
+ <!--[if IE 7]>
63
+ <link href="/static/fn2/ws/css/ie7.css" rel="stylesheet" type="text/css" media="all"/>
64
+ <![endif]-->
65
+
66
+ <!-- network wide js assets -->
67
+ <script src="/static/all/js/jquery-1.3.2.min.js"></script>
68
+ <script src="/static/all/js/jquery.plugins.js"></script>
69
+
70
+
71
+
72
+ <script src="http://www.foxnews.com/js/partner_headerfooter_v7.js"></script>
73
+ <script src="/static/all/js/v5.js"></script>
74
+ <script src="/static/all/js/weather.js"></script>
75
+
76
+
77
+ <script src="http://ads.foxnews.com/js/ad.js"></script>
78
+
79
+ <script src="/static/all/js/ad.js"></script>
80
+ <script src="/static/all/js/global.js"></script>
81
+ <script src="/static/all/js/authentication.js"></script>
82
+
83
+ <script type="text/javascript" language="JavaScript" charset="utf-8">
84
+ pagedescriptor.initSiteMeta( eval({"trackingmeta":{"title":"Police: 28 killed as bus touches high-voltage wire in central India"},"static_asset_css":"\/static\/fn2\/ws\/css","categories":[],"static_asset_all_img":"\/static\/all\/img","static_asset_all_css":"\/static\/all\/css","login_url":"https:\/\/secure.foxnews.com","static_channel_asset_css":"\/static\/fn2\/ws\/world\/css","static_asset_all_root":"\/static\/all","static_asset_img":"\/static\/fn2\/ws\/img","channel_type":"front","is_mgmt":"false","section_type":"news","static_channel_asset_js":"\/static\/fn2\/ws\/world\/js","channel":"world","static_asset_all_js":"\/static\/all\/js","static_asset_root":"\/static\/fn2\/ws","page_type":"story","top_site_name":"world","realm":"https:\/\/secure.foxnews.com","breadcrumb":"\/home\/world","is_sponsored":"true","static_channel_asset_img":"\/static\/fn2\/ws\/world\/img","site":"Opinion","static_asset_js":"\/static\/fn2\/ws\/js","vcmid":"fbd0539629598210VgnVCM100000a0c1a8c0RCRD"}) );
85
+ var pd = pagedescriptor.getSiteMeta();
86
+ </script>
87
+
88
+ <!-- site wide js assets -->
89
+ <script src="/static/fn2/ws/js/site.js"></script>
90
+ <script src="/static/fn2/ws/world/js/channel.js"></script>
91
+
92
+
93
+ <script type="text/javascript" src="http://w.sharethis.com/button/sharethis.js#publisher=ccd2a158-6cce-4bbc-afa8-1d2dc62fe84c"></script>
94
+
95
+
96
+ <script type="text/javascript" language="JavaScript" charset="utf-8">
97
+ fox.site.topInit();
98
+ </script>
99
+
100
+ <script type="text/javascript" src="http://www.foxnews.com/js/hbx_1.js"></script>
101
+ <script type="text/javascript">
102
+ // global
103
+ loc = location.href;
104
+
105
+ // remove url parameters and hash marks
106
+ // loc = loc.replace(/\?.+$/, "");
107
+
108
+ loc = loc.replace(/(\?|#).+$/, "");
109
+ loc = loc.replace(/#$/, "");
110
+
111
+ if (loc.substring(loc.length-1) != "/")
112
+ loc += "/";
113
+
114
+ // use development hbx account if we're not in production
115
+ if (location.host.match(/^www\./i) == null)
116
+ hbx.acct = "DM550608L3WD";
117
+
118
+ if(pd.top_site_name == "sbc")
119
+ hbx.acct = "DM570829MPSE";
120
+
121
+ var pd = fox.site.pdata;
122
+
123
+ var hbxSectionName = pd.channel.replace(/&/g, "and");
124
+ var hbxPageName = "";
125
+ var hbxPageType = (pd.page_type=="channel") ? pd.channel_type : pd.page_type;
126
+ var miscPage = "";
127
+ var columnName = (pd.page_type == "channel" && pd.channel_type == "column") ? pd.channel : "";
128
+ var hbxContentCat = "/" + pd.section_type + pd.breadcrumb.replace(/\/Home/i,"") + "/" + hbxPageType;
129
+
130
+ if (pd.page_type=="channel"&&pd.channel_type=="front") {
131
+ hbxPageName = ad.hbx.strip(hbxSectionName);
132
+ } else if (pd.page_type=="slideshow") {
133
+ hbxPageName = "/" + loc.split("/")[loc.split("/").length-2];
134
+ hbxContentCat = "/news/" + pd.breadcrumb.replace(/^\/Home\//i,"") + "/slideshows";
135
+ } else if (pd.page_type=="column-archive") {
136
+ hbxPageName = ad.hbx.strip(columnName);
137
+ } else if (pd.page_type=="story") {
138
+ //hbxPageName = ad.hbx.strip(pd.vcmid + " - " + hbxSectionName + " - " + pd.trackingmeta.title.replace(/"/g, ""));
139
+ hbxPageName = "/" + ad.hbx.strip(hbxSectionName + " - " +pd.trackingmeta.title.replace(/"/g, ""));
140
+ } else {
141
+ hbxPageName = ad.hbx.strip(hbxPageType);
142
+ }
143
+
144
+ //hbx calls
145
+ hbx.pn = hbxPageName;//PAGE NAME(S)
146
+ hbx.mlc = ad.hbx.strip(hbxContentCat);//MULTI-LEVEL CONTENT CATEGORY
147
+
148
+ if (pd.page_type=="story") {
149
+ hbx.ci = "";//CUSTOMER ID
150
+
151
+ if (pd.trackingmeta.byline)
152
+ hbx.hc1 = pd.trackingmeta.byline;//CUSTOM 1
153
+ else
154
+ hbx.hc1 = "";
155
+
156
+ hbx.hc2 = ad.hbx.meta(3,hbx.pn);//CUSTOM 2
157
+ hbx.hc3 = pd.vcmid + "|" + hbxPageName;//CUSTOM 3
158
+ }
159
+
160
+ //insert custom events
161
+ var cv = ad.hbx.evt("cv");
162
+
163
+ if (pd.page_type=="channel"&&pd.channel_type=="column") {
164
+ cv.c8 = ad.hbx.strip(columnName) + "|" + hbxPageName;
165
+ }
166
+
167
+ cv.c9 = ad.hbx.strip(hbxSectionName) + "|" + hbxPageName;
168
+
169
+ if (pd.page_type=="channel"&&pd.channel_type=="front") {
170
+ cv.c11 = ad.hbx.strip(hbxSectionName);
171
+ }
172
+
173
+ hbx.hc4 = ad.hbx.strip(hbxPageType) + "|" + ad.hbx.strip(hbxSectionName);
174
+ var _acct;
175
+ </script>
176
+ <script type="text/javascript" src="http://www.foxnews.com/js/hbx_3.js"></script>
177
+
178
+
179
+
180
+
181
+
182
+
183
+
184
+ <script type="text/javascript" src="http://api.recaptcha.net/js/recaptcha_ajax.js"></script>
185
+ </head>
186
+
187
+ <body>
188
+ <div>
189
+ </div>
190
+
191
+ <div class="content-container">
192
+ <div class="banner advertisement advertisement-a a">
193
+
194
+
195
+
196
+
197
+
198
+
199
+
200
+
201
+
202
+
203
+
204
+
205
+
206
+
207
+
208
+
209
+
210
+
211
+
212
+ <div class="ad dc" id="top-728x90">
213
+
214
+ </div>
215
+
216
+
217
+
218
+
219
+
220
+
221
+
222
+ </div>
223
+ <div id="header">
224
+ <div id="right-head">
225
+ <ul>
226
+ <li><a href="/video/index.html" style="width:55px;">Video</a></li>
227
+ <li><a href="/radio/index.html">Radio</a></li>
228
+ <li><a href="/mobile/index.html">Mobile</a></li>
229
+ <li><a href="/ureport/index.html">U-Report</a></li>
230
+ <li><a href="http://www.fncimag.com/">iMag</a></li>
231
+ </ul>
232
+ </div>
233
+ <div id="logo">
234
+ <div id="logo_img"><a href="/index.html"><img src="/static/all/img/fn-header.jpg" alt="FOX News.com"/></a></div>
235
+ </div>
236
+ <div id="header-container">
237
+ <div class="search">
238
+ <form method="get" id="search_form" class="form_1" action="http://www.foxnews.com/search-results/search">
239
+ <fieldset class="text_box">
240
+ <input name="q" value="" size="50" class="search_input no_spon" id="sponsor_searchinput1" type="text"/>
241
+ </fieldset>
242
+ <fieldset class="radios">
243
+ <a class="button no_spon" href="#" onclick="rs.button(this);return false;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a>
244
+ <input class="submit" type="submit"/>
245
+ </fieldset>
246
+ </form>
247
+ </div>
248
+ <!-- place to inject what's hot and watch live -->
249
+ </div><!-- close header-container -->
250
+ <div id="weather_corner"></div>
251
+ </div>
252
+ <div id="top">
253
+ <ul class="nav">
254
+ <li><a href="/index.html" style="width:50px;">Home</a></li>
255
+ <li><a href="/us/index.html" style="width:50px;">U.S.</a></li>
256
+ <li><a href="/world/index.html">World</a></li>
257
+ <li><a href="http://www.foxbusiness.com/" onclick="window.open(this.href);return false;">Business</a></li>
258
+ <li><a href="http://www.foxnews.com/politics/index.html">Politics</a></li>
259
+ <li><a href="/entertainment/index.html" style="width:109px;">Entertainment</a></li>
260
+ <li><a href="/leisure/index.html">Leisure</a></li>
261
+ <li><a href="/health/index.html">Health</a></li>
262
+ <li><a href="/scitech/index.html">SciTech</a></li>
263
+ <li><a href="/opinion/index.html">Opinion</a></li>
264
+ <li><a href="/sports/index.html">Sports</a></li>
265
+ <li style="border-right:0;">
266
+ <a href="#" title="fshow_overlay" style="width:85px;" onclick="overlay(this.title);return false;" onmouseover="SwapOut();" onmouseout="SwapBack();">On Air <img src="/static/all/img/feat-shows-blue.gif" name="rollover" /></a>
267
+ </li>
268
+ </ul>
269
+ <div id="fshow_overlay" class="overlay">
270
+ <div class="overlayhdr"><a title="fshow_overlay" onclick="overlay(this.title)" href="#"><img src="/static/all/img/close.jpg" alt="" /></a></div>
271
+ <div class="fshow_OverlayBox">
272
+ <div class="onair"><a href="/bios/index.html">On Air Personalities &raquo;</a></div>
273
+ <div class="ie6-overlay">
274
+ <ul style="border-right:1px solid #898989;">
275
+ <li class="odd" id="overlayroll" onmouseover="changeDisplay(this.id);" onmouseout="cleanDisplay(this.id);"><a href="/americasnewshq/index.html">America&#146;s News HQ</a></li>
276
+ <li class="even" id="overlayroll2" onmouseover="changeDisplay(this.id);" onmouseout="cleanDisplayEven(this.id);"><a href="/americasnewsroom/index.html">America&#146;s Newsroom</a></li>
277
+ <li class="odd" id="overlayroll24" onmouseover="changeDisplay(this.id);" onmouseout="cleanDisplay(this.id);"><a href="/yourworld/index.html">Cavuto</a></li>
278
+ <li class="even" id="overlayroll4" onmouseover="changeDisplay(this.id);" onmouseout="cleanDisplayEven(this.id);"><a href="/fns/index.html">FOX News Sunday</a></li>
279
+ <li class="odd" id="overlayroll5" onmouseover="changeDisplay(this.id);" onmouseout="cleanDisplay(this.id);"><a href="/foxfriends/index.html">FOX &amp; Friends</a></li>
280
+ <li class="even" id="overlayroll6" onmouseover="changeDisplay(this.id);" onmouseout="cleanDisplayEven(this.id);"><a href="/foxnewswatch/index.html">FOX News Watch</a></li>
281
+ <li class="odd" id="overlayroll7" onmouseover="changeDisplay(this.id);" onmouseout="cleanDisplay(this.id);"><a href="/foxreport/index.html">FOX Report</a></li>
282
+ <li class="even" id="overlayroll8" onmouseover="changeDisplay(this.id);" onmouseout="cleanDisplayEven(this.id);"><a href="/geraldo/index.html">Geraldo at Large</a></li>
283
+ <li class="odd" id="overlayroll3" onmouseover="changeDisplay(this.id);" onmouseout="cleanDisplay(this.id);"><a href="/glennbeck/index.html">Glenn Beck</a></li>
284
+ <li class="even" id="overlayroll9" onmouseover="changeDisplay(this.id);" onmouseout="cleanDisplayEven(this.id);"><a href="/ontherecord/index.html">Greta</a></li>
285
+ <li class="odd" id="overlayroll10" onmouseover="changeDisplay(this.id);" onmouseout="cleanDisplay(this.id);"><a href="/hannity/index.html">Hannity</a></li>
286
+ <li class="even" id="overlayroll11" onmouseover="changeDisplay(this.id);" onmouseout="cleanDisplayEven(this.id);"><a href="/happeningnow/index.html">Happening Now</a></li>
287
+ </ul>
288
+ <ul>
289
+ <li class="even" id="overlayroll12" onmouseover="changeDisplay(this.id);" onmouseout="cleanDisplayEven(this.id);"><a href="/huckabee/index.html">Huckabee</a></li>
290
+ <li class="odd" id="overlayroll13" onmouseover="changeDisplay(this.id);" onmouseout="cleanDisplay(this.id);"><a href="/redeye/index.html">Red Eye w/ Gutfeld</a></li>
291
+ <li class="even" id="overlayroll14" onmouseover="changeDisplay(this.id);" onmouseout="cleanDisplayEven(this.id);"><a href="/specialreport/index.html">Special Report</a></li>
292
+ <li class="odd" id="overlayroll15" onmouseover="changeDisplay(this.id);" onmouseout="cleanDisplay(this.id);"><a href="/specials/index.html">Specials</a></li>
293
+ <li class="even" id="overlayroll16" onmouseover="changeDisplay(this.id);" onmouseout="cleanDisplayEven(this.id);"><a href="/studiob/index.html">Studio B</a></li>
294
+ <li class="odd" id="overlayroll17" onmouseover="changeDisplay(this.id);" onmouseout="cleanDisplay(this.id);"><a href="/freedom/index.html">The Cost of Freedom</a></li>
295
+ <li class="even" id="overlayroll18" onmouseover="changeDisplay(this.id);" onmouseout="cleanDisplayEven(this.id);"><a href="/journal/index.html">The Journal Editorial Report</a></li>
296
+ <li class="odd" id="overlayroll19" onmouseover="changeDisplay(this.id);" onmouseout="cleanDisplay(this.id);"><a href="/thelineup/index.html">The Lineup</a></li>
297
+ <li class="even" id="overlayroll20" onmouseover="changeDisplay(this.id);" onmouseout="cleanDisplayEven(this.id);"><a href="/livedesk/index.html">The Live Desk</a></li>
298
+ <li class="odd" id="overlayroll21" onmouseover="changeDisplay(this.id);" onmouseout="cleanDisplay(this.id);"><a href="/oreilly/index.html">The O&#146;Reilly Factor</a></li>
299
+ <li class="even" id="overlayroll22" onmouseover="changeDisplay(this.id);" onmouseout="cleanDisplayEven(this.id);"><a href="/warstories/index.html">War Stories</a></li>
300
+ </ul>
301
+ </div>
302
+ </div>
303
+ </div>
304
+ </div> <div class="channel-bar sub-navigation channel-bar-sub-navigation">
305
+
306
+
307
+
308
+
309
+
310
+
311
+
312
+
313
+
314
+
315
+
316
+ <div class="parent-component"><div id="dpm_5305e7fb41a96210VgnVCM100000cf3ce80aRCRD" class="portlet generic-list link-list link-list-b b type first-type"><div class="top"></div>
317
+ <ul class="first">
318
+ <li class="first odd">
319
+ <div class="primary set primary-set">
320
+ <a href="/world/index.html">WORLD HOME</a><p>
321
+ <span class="publish-date">February 01, 2010</span>
322
+ </p></div>
323
+ <p class="more set more-set">
324
+ <a href="/world/index.html">&#187;</a></p></li>
325
+ <li class="even">
326
+ <div class="primary set primary-set">
327
+ <a href="/world/united-nations/index.html">U.N.</a><p>
328
+ <span class="publish-date">February 01, 2010</span>
329
+ </p></div>
330
+ <p class="more set more-set">
331
+ <a href="/world/united-nations/index.html">&#187;</a></p></li>
332
+ <li class="odd">
333
+ <div class="primary set primary-set">
334
+ <a href="/world/afghanistan/index.html">AFGHANISTAN</a><p>
335
+ <span class="publish-date">February 01, 2010</span>
336
+ </p></div>
337
+ <p class="more set more-set">
338
+ <a href="/world/afghanistan/index.html">&#187;</a></p></li>
339
+ <li class="even">
340
+ <div class="primary set primary-set">
341
+ <a href="/world/iran/index.html">IRAN</a><p>
342
+ <span class="publish-date">February 01, 2010</span>
343
+ </p></div>
344
+ <p class="more set more-set">
345
+ <a href="/world/iran/index.html">&#187;</a></p></li>
346
+ <li class="odd">
347
+ <div class="primary set primary-set">
348
+ <a href="/world/iraq/index.html">IRAQ</a><p>
349
+ <span class="publish-date">February 01, 2010</span>
350
+ </p></div>
351
+ <p class="more set more-set">
352
+ <a href="/world/iraq/index.html">&#187;</a></p></li>
353
+ <li class="even">
354
+ <div class="primary set primary-set">
355
+ <a href="/world/mideast/index.html">MIDDLE EAST</a><p>
356
+ <span class="publish-date">February 01, 2010</span>
357
+ </p></div>
358
+ <p class="more set more-set">
359
+ <a href="/world/mideast/index.html">&#187;</a></p></li>
360
+ <li class="odd">
361
+ <div class="primary set primary-set">
362
+ <a href="/world/africa/index.html">AFRICA</a><p>
363
+ <span class="publish-date">February 01, 2010</span>
364
+ </p></div>
365
+ <p class="more set more-set">
366
+ <a href="/world/africa/index.html">&#187;</a></p></li>
367
+ <li class="even">
368
+ <div class="primary set primary-set">
369
+ <a href="/world/americas/index.html">AMERICAS</a><p>
370
+ <span class="publish-date">February 01, 2010</span>
371
+ </p></div>
372
+ <p class="more set more-set">
373
+ <a href="/world/americas/index.html">&#187;</a></p></li>
374
+ <li class="odd">
375
+ <div class="primary set primary-set">
376
+ <a href="/world/asia-pacific/index.html">ASIA / PACIFIC</a><p>
377
+ <span class="publish-date">February 01, 2010</span>
378
+ </p></div>
379
+ <p class="more set more-set">
380
+ <a href="/world/asia-pacific/index.html">&#187;</a></p></li>
381
+ <li class="even">
382
+ <div class="primary set primary-set">
383
+ <a href="/world/north-korea/index.html">NORTH KOREA</a><p>
384
+ <span class="publish-date">February 01, 2010</span>
385
+ </p></div>
386
+ <p class="more set more-set">
387
+ <a href="/world/north-korea/index.html">&#187;</a></p></li>
388
+ <li class="odd">
389
+ <div class="primary set primary-set">
390
+ <a href="/world/global-terror/index.html">GLOBAL TERROR</a><p>
391
+ <span class="publish-date">February 01, 2010</span>
392
+ </p></div>
393
+ <p class="more set more-set">
394
+ <a href="/world/global-terror/index.html">&#187;</a></p></li>
395
+ <li class="even">
396
+ <div class="primary set primary-set">
397
+ <a href="/world/europe/index.html">EUROPE</a><p>
398
+ <span class="publish-date">February 01, 2010</span>
399
+ </p></div>
400
+ <p class="more set more-set">
401
+ <a href="/world/europe/index.html">&#187;</a></p></li>
402
+ <li class="last odd">
403
+ <div class="primary set primary-set">
404
+ <a href="/world/vatican/index.html">Religion</a><p>
405
+ <span class="publish-date">February 01, 2010</span>
406
+ </p></div>
407
+ <p class="more set more-set">
408
+ <a href="/world/vatican/index.html">&#187;</a></p></li>
409
+ </ul>
410
+ <div class="bottom">
411
+ </div>
412
+ </div>
413
+ <script> try { fox.site.loadEvent('#dpm_5305e7fb41a96210VgnVCM100000cf3ce80aRCRD'); } catch(err) { } </script>
414
+ </div>
415
+
416
+
417
+
418
+
419
+
420
+
421
+ </div>
422
+ <div class="banner advertisement advertisement-b b">
423
+
424
+
425
+
426
+
427
+
428
+
429
+
430
+
431
+
432
+
433
+
434
+
435
+
436
+
437
+
438
+
439
+
440
+
441
+ </div>
442
+ <div class="channel-bar breaking-news channel-bar-breaking-news">
443
+ <script type="text/javascript" src="http://www.foxnews.com/js/breakingNews.js"></script>
444
+ </div>
445
+ <div class="channel-bar banner channel-bar-banner">
446
+
447
+
448
+
449
+
450
+
451
+
452
+
453
+
454
+
455
+
456
+
457
+
458
+
459
+
460
+
461
+
462
+
463
+
464
+ </div>
465
+ <div class="channel-bar channel-bar-pagetitle">
466
+ <div class="title">
467
+
468
+
469
+ <h1>World</h1>
470
+
471
+
472
+
473
+ </div>
474
+ <div class="advertisement advertisement-c c">
475
+
476
+
477
+
478
+
479
+
480
+
481
+
482
+
483
+
484
+
485
+
486
+
487
+
488
+
489
+
490
+
491
+
492
+
493
+
494
+ <div class="ad dc" id="sponsor1-88x31">
495
+
496
+ </div>
497
+
498
+
499
+
500
+
501
+
502
+
503
+
504
+ </div>
505
+ </div>
506
+ <!-- Start Portlets -->
507
+ <!-- CONTENT AREA -->
508
+ <div id="content" class="container dont-showgrid">
509
+ <div class="content-divider"><div class="panel main-col span-9">
510
+ <div class="component">
511
+
512
+
513
+
514
+
515
+
516
+
517
+
518
+
519
+
520
+
521
+
522
+
523
+
524
+
525
+ <div class="story-container">
526
+
527
+ <div class="portlet tabbed" id="browse-story-content">
528
+ <ul class="tabs">
529
+ <li class="active"><a title="story-detail" href="#">Article</a></li>
530
+
531
+ <li class="comment-tab"><a href="" title="story-comments" class="commentCount" id="commentCount">comments</a></li>
532
+
533
+ </ul>
534
+
535
+ <a href="#discussion-form" class="join-discussion"></a>
536
+
537
+
538
+ <div id="img-all-path" style="display: none;">/static/all/img</div>
539
+ <div id="story-vcmId" style="display: none;">fbd0539629598210VgnVCM100000a0c1a8c0RCRD</div>
540
+ <div id="story-url" style="display: none;">/world/2010/05/14/police-killed-bus-touches-high-voltage-wire-central-india/</div>
541
+ <p class="publish-date">Updated May 14, 2010</p>
542
+ <h1 id="story-title">Police: 28 killed as bus touches high-voltage wire in central India</h1>
543
+ <p class="author"></p>
544
+
545
+ <p class="source">
546
+
547
+ Associated Press </p>
548
+
549
+
550
+ <p id="story-dek" class="deck"><span class="dateline">NEW DELHI</span><p>NEW DELHI (AP) &mdash; Police say 28 people have been killed in central India after the bus they were traveling in touched a high-voltage wire and caught fire.
551
+ </p></p>
552
+
553
+
554
+ <!-- begin story detail -->
555
+ <div id="pane-browse-story-detail" class="pane" style="display:block;">
556
+ <div class="share-links">
557
+ <ul>
558
+ <li><a href="#/world/2010/05/14/police-killed-bus-touches-high-voltage-wire-central-india/print" class="share-print">print</a></li>
559
+ <li><a href="javascript:void(0);" id="up-share-email">email</a></li>
560
+ <li><a href="javascript:void(0);" id="up-share-share">share</a></li>
561
+ <li class="recomended-button"><a href="#" class="green recomended-count"><img src="/static/fn2/ws/img/check.gif" alt="Check"> recommend</a></li>
562
+ </ul>
563
+ <div class="in-de">
564
+ <a onclick="decreasefont(); return false;" href="#"><img src="/static/fn2/ws/img/font-dec.jpg" alt="Decrease Font"/></a>
565
+ <img src="/static/fn2/ws/img/aaa-blue.jpg" alt="A A A"/>
566
+ <a onclick="increasefont(); return false;" href="#"><img src="/static/fn2/ws/img/font-inc.jpg" alt="Increase Font"/></a>
567
+ </div>
568
+ </div>
569
+
570
+ <div id = "articleCont" class = "bodytext smalltext">
571
+
572
+ <p>NEW DELHI (AP) &mdash; Police say 28 people have been killed in central India after the bus they were traveling in touched a high-voltage wire and caught fire.</p>
573
+ <p>Police officer Ram Pyari Dhurwey says the accident occurred Friday in Mandla district in Madhya Pradesh state.</p>
574
+ <p>It was the second such accident in India in as many days. At least 15 people were killed in eastern Bihar state on Thursday when they truck they were riding in touched a high-voltage wire.</p>
575
+ </div>
576
+
577
+ <div id="otherMedia" class="related horizontal">
578
+
579
+ <div class="ad qu" id="qu_story_2"></div>
580
+
581
+ </div>
582
+ </div>
583
+
584
+
585
+
586
+
587
+
588
+ <div id="pane-browse-story-comments" class="pane">
589
+ <ul>
590
+ <li id='commentsHolder'>
591
+ <div class="late-new">
592
+ <ul class="old-new">
593
+ <li><a id="start-new-discussion" title="" href="">Leave a Comment</a></li>
594
+ <li><a class="newest-first" href="" title="">Sort: Newest</a></li>
595
+ <li><a class="oldest-first" href="" title="">Sort: Oldest</a></li>
596
+ </ul>
597
+ <div class="number-rss" style="display: none;">
598
+ <div class="subscribe"><a href=""><img src="/static/fn2/ws/img/rss.jpg" alt="RSS" /> Subscribe to Comments</a></div>
599
+ </div>
600
+ <div class="pagination" style="float: right;"></div>
601
+ </div>
602
+ <div class="clear"></div>
603
+ <div class="comments-left"></div>
604
+ <div class="clear"></div>
605
+ <div class="late-new">
606
+ <ul class="new-old">
607
+ <li><a class="newest-first" href="" title="">Sort: Newest</a></li>
608
+ <li><a class="oldest-first" href="" title="">Sort: Oldest</a></li>
609
+ </ul>
610
+ <div class="pagination" style="float: right;"></div>
611
+ </div>
612
+ <div id="begin-comment-form" class="clear"></div>
613
+ <a name="discussion-form"></a>
614
+ <div id="start-discussion" class="first-level-reply">
615
+ <form class="leave-comments-form" id="new-comment-form" action="" method="POST">
616
+ <p style="display: none;">Email<br/><span class="sub">* not displayed</span></p>
617
+ <fieldset style="display: none;"><input id="discussion-email" class="leave-comments-mid" type="text" disabled /></fieldset>
618
+ <span class="com-required" style="display: none;">Comment Required</span>
619
+ <div class="clear"> </div>
620
+ <p>Comment</p>
621
+ <fieldset><textarea id="discussion-comment" class="leave-com-mid required" type="text"></textarea></fieldset>
622
+ <p class="terms">FOX News encourages you to participate in this discussion; however, please be sure to review our <a href="http://www.foxnews.com/story/0,2933,95454,00.html">Terms of Use</a> and <a href="http://www.foxnews.com/story/0,2933,95452,00.html">Privacy Statement</a></p>
623
+ <div class="clear"> </div>
624
+ <div style="float: right;">
625
+ <fieldset>
626
+ <input type="submit" class="submit" alt="Submit" value=""/> or <input type="submit" class="submit-share" alt="Submit" value=""/>
627
+ </fieldset>
628
+ </div>
629
+ </form>
630
+ </div>
631
+
632
+
633
+
634
+ <div class="first-level-register" style="display: none;">
635
+ <h3>Leave a Comment</h3>
636
+ <p class="login-register">You must be logged in to comment. Please login or register below.</p>
637
+ <div class="login-reg" name="login-reg">
638
+ <form id="user-login-form" method="POST" action="" class="">
639
+ <p>Already a member of FOXNews.com?</p>
640
+ <h2 class="login-now"><strong>Log</strong> in now</h2>
641
+ <div class="error-box-login-comment login-error" style="display: none;"></div>
642
+ <div class="label">
643
+ <label>Username or Email Address</label>
644
+ </div>
645
+ <div class="field">
646
+ <input name="userName" type="text" class="required"/>
647
+ </div>
648
+ <div class="label">
649
+ <label>Password</label>
650
+ </div>
651
+ <div class="field">
652
+ <input name="userPassword" type="password" class="required"/>
653
+ </div>
654
+ <div class="field preferences">
655
+ <input name="userRememberMe" type="checkbox" class="ckbx"/><label class="remember">Remember me on this computer</label>
656
+ </div>
657
+ <a id="forget-password-at-register" href="javascript:void(0);" class="forgot">Forgot your password?</a>
658
+ <ul class="buttons">
659
+ <li>
660
+ <input id="user-login-action" class="submit" type="submit" value="Login"/>
661
+ </li>
662
+ </ul>
663
+ </form>
664
+ <div class="clearflatgrayb"></div>
665
+
666
+ <div style="position:relative;">
667
+ <div class="thirdparty" style="display: none;">
668
+ <p>or login using a third-party account</p>
669
+ <form method="POST" action="https://signin.foxnews.com/facebook/start?token_url=http://www.foxnews.com/portal/site/fn2/template.LOGIN/action.process?referingPg=">
670
+ <input type="image" onclick="vcs_service.setThirdParty('user-login-form')" name="facebook" alt="Facebook" src="/static/all/img/icon-facebook.gif" value=""/>
671
+ </form>
672
+ <form method="POST" action="https://signin.foxnews.com/openid/start?token_url=http://www.foxnews.com/portal/site/fn2/template.LOGIN/action.process?referingPg=">
673
+ <input type="image" onclick="vcs_service.setThirdParty('user-login-form')" name="google" alt="Google" src="/static/all/img/icon-google.gif" value="" />
674
+ <input type="hidden" name="openid_identifier" value="https://www.google.com/accounts/o8/id" />
675
+ </form>
676
+ <form method="POST" action="https://signin.foxnews.com/myspace/start?token_url=http://www.foxnews.com/portal/site/fn2/template.LOGIN/action.process?referingPg=">
677
+ <input type="image" onclick="vcs_service.setThirdParty('user-login-form')" name="myspace" alt="MySpace ID" src="/static/all/img/icon-myspace.gif" value="" />
678
+ </form>
679
+ <form style="display: none;" method="POST" action="https://signin.foxnews.com/openid/start?token_url=http://www.foxnews.com/portal/site/fn2/template.LOGIN/action.process?referingPg=">
680
+ <input type="image" onclick="vcs_service.setThirdParty('user-login-form')" name="yahoo" alt="Yahoo!" src="/static/all/img/icon-yahoo.gif" value="" />
681
+ <input type="hidden" name="openid_identifier" value="yahoo.com" />
682
+ </form>
683
+ <form method="POST" action="https://signin.foxnews.com/liveid/start?token_url=http://www.foxnews.com/portal/site/fn2/template.LOGIN/action.process?referingPg=">
684
+ <input type="image" onclick="vcs_service.setThirdParty('user-login-form')" name="windows" alt="Windows Live ID" src="/static/all/img/icon-windows.gif" value="" />
685
+ </form>
686
+ <form style="display: none;" method="POST" action="https://signin.foxnews.com/openid/start?token_url=http://www.foxnews.com/portal/site/fn2/template.LOGIN/action.process?referingPg=">
687
+ <input type="image" onclick="vcs_service.setThirdParty('user-login-form')" name="openid" alt="OpenID" src="/static/all/img/icon-openid.gif" value="" />
688
+ </form>
689
+ <form method="POST" action="https://signin.foxnews.com/twitter/start?token_url=http://www.foxnews.com/portal/site/fn2/template.LOGIN/action.process?referingPg=">
690
+ <input type="image" onclick="vcs_service.setThirdParty('user-login-form')" name="twitter" alt="Twitter" src="/static/all/img/icon-twitter.gif" value=""/>
691
+ </form>
692
+ <div class="clear"></div>
693
+ </div>
694
+ <div class="thirdPartyTooltip" style="visibility: hidden;">
695
+ <div class="icon-desc-left"></div>
696
+ <div class="icon-desc-bg"><p></p></div>
697
+ <div class="icon-desc-right"></div>
698
+ <div class="icon-desc-carrot"></div>
699
+ </div>
700
+ </div>
701
+ <div id="passwordoverlay" class="reset-pwd" style="display: none;">
702
+ <form action="" class="user-email-reset-form">
703
+ <ul class="reset">
704
+ <li>
705
+ <a href="#login-reg" onclick="closeOverlay('passwordoverlay');" /><img src="/static/all/img/close-x.png" alt="" height="26px" width="25px" /></a>
706
+ <h2><strong>Reset</strong> Password</h2>
707
+ <p>To reset your password, please fill in your email below. A password reset link will be emailed to you.</p>
708
+
709
+ <div class="confirm-box-login" style="display: none;"></div>
710
+ <div class="error-box-login" style="display: none;"></div>
711
+ <div class="reset-input-container">
712
+ <div class="label password">
713
+ <label>Email Address</label>
714
+ </div>
715
+ <div class="field">
716
+ <input name="overlayEmailResetField" class="required email" type="text" />
717
+ </div>
718
+ <div class="label">
719
+ <p>&nbsp;</p>
720
+ </div>
721
+ <ul class="buttons">
722
+ <li>
723
+ <input type="submit" value="Submit" />
724
+ </li>
725
+ </ul>
726
+ </div>
727
+ </li>
728
+ </ul>
729
+ </form>
730
+ </div>
731
+ </div>
732
+ <div class="become-member">
733
+ <p>Not a member yet?</p>
734
+ <h2><span>Register Now</span><br/><strong>On</strong> FOXNews.com</h2>
735
+ <p class="fast">It's FREE and only takes a minute!</p>
736
+ <p class="access">Get access to:
737
+ <ul class="getmore">
738
+ <li>Breaking news and access to video and infographics</li>
739
+ <li>Exclusive FOXNews blogs and community features</li>
740
+ <li>Channel info and more!</li>
741
+ </ul>
742
+ </p>
743
+ <ul class="buttons">
744
+ <li>
745
+ <input type="button" class="sign_up_registration" value="Sign Up"/>
746
+ </li>
747
+ </ul>
748
+ </div>
749
+ </div>
750
+
751
+ </ul>
752
+ </div>
753
+
754
+
755
+ </div>
756
+ <div class="share-links">
757
+ <ul>
758
+ <li><a href="#/world/2010/05/14/police-killed-bus-touches-high-voltage-wire-central-india/print" class="share-print">print</a></li>
759
+ <li><a href="javascript:void(0);" id="down-share-email">email</a></li>
760
+ <li><a href="javascript:void(0);" id="down-share-share">share</a></li>
761
+ <li class="recomended-button"><a href="#" class="green recomended-count"><img src="/static/fn2/ws/img/check.gif" alt="Check"> recommend</a></li>
762
+ <li style="float: right;"><a href="#discussion-form" class="leave-a-comment">Leave a Comment</a></li>
763
+ </ul>
764
+ </div>
765
+
766
+ </div>
767
+
768
+
769
+
770
+ <div><iframe id="idcForStory" width="0px" height="0px" frameborder="0"></iframe></div>
771
+
772
+
773
+
774
+
775
+
776
+
777
+
778
+
779
+
780
+
781
+
782
+
783
+
784
+
785
+
786
+
787
+
788
+
789
+
790
+
791
+
792
+
793
+ </div>
794
+ <div class="span-4">
795
+
796
+
797
+
798
+
799
+
800
+
801
+
802
+
803
+
804
+
805
+
806
+
807
+
808
+
809
+
810
+
811
+
812
+
813
+
814
+ <div id="loomia_display"></div>
815
+
816
+
817
+
818
+
819
+
820
+
821
+
822
+ </div>
823
+ <div class="span-5 last">
824
+
825
+
826
+
827
+
828
+
829
+
830
+
831
+
832
+
833
+
834
+
835
+
836
+
837
+
838
+
839
+
840
+
841
+
842
+
843
+ <div class="ad qu" id="qu_story_1">
844
+
845
+ </div>
846
+
847
+
848
+
849
+
850
+
851
+
852
+
853
+ </div>
854
+ </div>
855
+ </div><div class="content-divider right-col span-5 last"><div class="panel span-5">
856
+ <div class="component">
857
+
858
+
859
+
860
+
861
+
862
+
863
+
864
+
865
+
866
+
867
+
868
+
869
+
870
+
871
+
872
+
873
+
874
+
875
+
876
+ <div class="ad dc" id="frame1-300x250_336x280">
877
+
878
+ </div>
879
+
880
+
881
+
882
+
883
+
884
+
885
+
886
+ </div>
887
+ <div class="component">
888
+
889
+
890
+
891
+
892
+
893
+
894
+
895
+
896
+
897
+
898
+
899
+ <div class="parent-component"><div id="dpm_b47ae086f4f96210VgnVCM100000cf3ce80aRCRD" class="portlet generic-list features-f type first-type">
900
+ <h1>Latest&nbsp;&nbsp;Videos</h1>
901
+
902
+ <div id="sbc-feature-carousel" class="jcarousel-skin-dot-slider">
903
+ <ul>
904
+
905
+ <li class="video">
906
+
907
+ <div class="feature-carousel-item">
908
+
909
+
910
+ <p class="publish-date"><span class="default-date">May 13, 2010</span><span class="full-date">Fri, 14 May 2010 00:03:37 GMT</span><span class="timestamp">7:05 PM EST</span></p>
911
+
912
+
913
+ <p class="channel-name">World</p>
914
+
915
+
916
+
917
+
918
+
919
+
920
+
921
+ <div class="img format-2">
922
+ <a href="http://video.foxnews.com/g4195200/around-the-world-513?playlist_id=86857"><img src="/static/managed/img/2010/05/13/051310_fr_world_FNC_051310_19-54_121x68.jpg" alt="" /></a>
923
+ <p class="credit"></p>
924
+ <p class="caption"></p>
925
+ </div>
926
+
927
+
928
+
929
+ <h2><a href="http://video.foxnews.com/g4195200/around-the-world-513?playlist_id=86857">Around the World: 5/13<span class="icon video"></span></a></h2>
930
+
931
+ <div class="break"></div>
932
+
933
+
934
+
935
+ <p class="publish-date-alt"><span class="default-date">May 13, 2010</span><span class="full-date">Fri, 14 May 2010 00:03:37 GMT</span><span class="timestamp">7:05 PM EST</span></p>
936
+
937
+
938
+ <div class="deck"><p>Pope visits shrine in Portugal</p></div>
939
+
940
+
941
+ <p class="more comment count more-comment more-comment-count" id="videoid:g4195200"><a class="loading" href="http://video.foxnews.com/g4195200/around-the-world-513?playlist_id=86857"><span class="result"></span> <span class="label">Loading...</span></a></p>
942
+
943
+
944
+
945
+
946
+
947
+ <p class="more channel more-channel"><a href="/world/index.html">World</a></p>
948
+ </div>
949
+ </li>
950
+
951
+ <li class="video">
952
+
953
+ <div class="feature-carousel-item">
954
+
955
+
956
+ <p class="publish-date"><span class="default-date">May 13, 2010</span><span class="full-date">Thu, 13 May 2010 21:11:00 GMT</span><span class="timestamp">4:05 PM EST</span></p>
957
+
958
+
959
+ <p class="channel-name">World</p>
960
+
961
+
962
+
963
+
964
+
965
+
966
+
967
+ <div class="img format-2">
968
+ <a href="http://video.foxnews.com/g4194877/iran-housing-al-qaeda-operatives?playlist_id=86857"><img src="/static/managed/img/2010/05/13/studiob_APUZZO2_FNC_051310_16-33_121x68.jpg" alt="" /></a>
969
+ <p class="credit"></p>
970
+ <p class="caption"></p>
971
+ </div>
972
+
973
+
974
+
975
+ <h2><a href="http://video.foxnews.com/g4194877/iran-housing-al-qaeda-operatives?playlist_id=86857">Iran Housing Al Qaeda Operatives?<span class="icon video"></span></a></h2>
976
+
977
+ <div class="break"></div>
978
+
979
+
980
+
981
+ <p class="publish-date-alt"><span class="default-date">May 13, 2010</span><span class="full-date">Thu, 13 May 2010 21:11:00 GMT</span><span class="timestamp">4:05 PM EST</span></p>
982
+
983
+
984
+ <div class="deck"><p>Iran loosening grip on terrorists?</p></div>
985
+
986
+
987
+ <p class="more comment count more-comment more-comment-count" id="videoid:g4194877"><a class="loading" href="http://video.foxnews.com/g4194877/iran-housing-al-qaeda-operatives?playlist_id=86857"><span class="result"></span> <span class="label">Loading...</span></a></p>
988
+
989
+
990
+
991
+
992
+
993
+ <p class="more channel more-channel"><a href="/world/index.html">World</a></p>
994
+ </div>
995
+ </li>
996
+
997
+ <li class="video">
998
+
999
+ <div class="feature-carousel-item">
1000
+
1001
+
1002
+ <p class="publish-date"><span class="default-date">May 13, 2010</span><span class="full-date">Thu, 13 May 2010 17:58:36 GMT</span><span class="timestamp">12:05 PM EST</span></p>
1003
+
1004
+
1005
+ <p class="channel-name">World</p>
1006
+
1007
+
1008
+
1009
+
1010
+
1011
+
1012
+
1013
+ <div class="img format-2">
1014
+ <a href="http://video.foxnews.com/g4194633/one-of-a-kind-miracle?playlist_id=86857"><img src="/static/managed/img/2010/05/13/hapnow_jetcrash_FNC_051310_13-35_121x68.jpg" alt="" /></a>
1015
+ <p class="credit"></p>
1016
+ <p class="caption"></p>
1017
+ </div>
1018
+
1019
+
1020
+
1021
+ <h2><a href="http://video.foxnews.com/g4194633/one-of-a-kind-miracle?playlist_id=86857">One of a Kind Miracle?<span class="icon video"></span></a></h2>
1022
+
1023
+ <div class="break"></div>
1024
+
1025
+
1026
+
1027
+ <p class="publish-date-alt"><span class="default-date">May 13, 2010</span><span class="full-date">Thu, 13 May 2010 17:58:36 GMT</span><span class="timestamp">12:05 PM EST</span></p>
1028
+
1029
+
1030
+ <div class="deck"><p>How did boy survive plane crash?</p></div>
1031
+
1032
+
1033
+ <p class="more comment count more-comment more-comment-count" id="videoid:g4194633"><a class="loading" href="http://video.foxnews.com/g4194633/one-of-a-kind-miracle?playlist_id=86857"><span class="result"></span> <span class="label">Loading...</span></a></p>
1034
+
1035
+
1036
+
1037
+
1038
+
1039
+ <p class="more channel more-channel"><a href="/world/index.html">World</a></p>
1040
+ </div>
1041
+ </li>
1042
+
1043
+ <li class="video">
1044
+
1045
+ <div class="feature-carousel-item">
1046
+
1047
+
1048
+ <p class="publish-date"><span class="default-date">May 12, 2010</span><span class="full-date">Thu, 13 May 2010 00:54:55 GMT</span><span class="timestamp">7:05 PM EST</span></p>
1049
+
1050
+
1051
+ <p class="channel-name">World</p>
1052
+
1053
+
1054
+
1055
+
1056
+
1057
+
1058
+
1059
+ <div class="img format-2">
1060
+ <a href="http://video.foxnews.com/g4193387/around-the-world-512?playlist_id=86857"><img src="/static/managed/img/2010/05/12/051210_fr_world_FNC_051210_20-11_121x68.jpg" alt="" /></a>
1061
+ <p class="credit"></p>
1062
+ <p class="caption"></p>
1063
+ </div>
1064
+
1065
+
1066
+
1067
+ <h2><a href="http://video.foxnews.com/g4193387/around-the-world-512?playlist_id=86857">Around the World: 5/12<span class="icon video"></span></a></h2>
1068
+
1069
+ <div class="break"></div>
1070
+
1071
+
1072
+
1073
+ <p class="publish-date-alt"><span class="default-date">May 12, 2010</span><span class="full-date">Thu, 13 May 2010 00:54:55 GMT</span><span class="timestamp">7:05 PM EST</span></p>
1074
+
1075
+
1076
+ <div class="deck"><p>Man stabs children at kindergarten</p></div>
1077
+
1078
+
1079
+ <p class="more comment count more-comment more-comment-count" id="videoid:g4193387"><a class="loading" href="http://video.foxnews.com/g4193387/around-the-world-512?playlist_id=86857"><span class="result"></span> <span class="label">Loading...</span></a></p>
1080
+
1081
+
1082
+
1083
+
1084
+
1085
+ <p class="more channel more-channel"><a href="/world/index.html">World</a></p>
1086
+ </div>
1087
+ </li>
1088
+
1089
+ <li class="video">
1090
+
1091
+ <div class="feature-carousel-item">
1092
+
1093
+
1094
+ <p class="publish-date"><span class="default-date">May 12, 2010</span><span class="full-date">Thu, 13 May 2010 00:40:35 GMT</span><span class="timestamp">7:05 PM EST</span></p>
1095
+
1096
+
1097
+ <p class="channel-name">World</p>
1098
+
1099
+
1100
+
1101
+
1102
+
1103
+
1104
+
1105
+ <div class="img format-2">
1106
+ <a href="http://video.foxnews.com/g4193169/sole-survivor-of-libya-plane-crash?playlist_id=86857"><img src="/static/managed/img/2010/05/12/051210_fr_hunt_FNC_051210_19-22_121x68.jpg" alt="" /></a>
1107
+ <p class="credit"></p>
1108
+ <p class="caption"></p>
1109
+ </div>
1110
+
1111
+
1112
+
1113
+ <h2><a href="http://video.foxnews.com/g4193169/sole-survivor-of-libya-plane-crash?playlist_id=86857">Sole Survivor of Libya Plane Crash<span class="icon video"></span></a></h2>
1114
+
1115
+ <div class="break"></div>
1116
+
1117
+
1118
+
1119
+ <p class="publish-date-alt"><span class="default-date">May 12, 2010</span><span class="full-date">Thu, 13 May 2010 00:40:35 GMT</span><span class="timestamp">7:05 PM EST</span></p>
1120
+
1121
+
1122
+ <div class="deck"><p>Child is lone survivor of plane crash</p></div>
1123
+
1124
+
1125
+ <p class="more comment count more-comment more-comment-count" id="videoid:g4193169"><a class="loading" href="http://video.foxnews.com/g4193169/sole-survivor-of-libya-plane-crash?playlist_id=86857"><span class="result"></span> <span class="label">Loading...</span></a></p>
1126
+
1127
+
1128
+
1129
+
1130
+
1131
+ <p class="more channel more-channel"><a href="/world/index.html">World</a></p>
1132
+ </div>
1133
+ </li>
1134
+
1135
+ <li class="video">
1136
+
1137
+ <div class="feature-carousel-item">
1138
+
1139
+
1140
+ <p class="publish-date"><span class="default-date">May 12, 2010</span><span class="full-date">Wed, 12 May 2010 20:27:59 GMT</span><span class="timestamp">3:05 PM EST</span></p>
1141
+
1142
+
1143
+ <p class="channel-name">World</p>
1144
+
1145
+
1146
+
1147
+
1148
+
1149
+
1150
+
1151
+ <div class="img format-2">
1152
+ <a href="http://video.foxnews.com/g4192619/political-odd-couple-to-lead-uk?playlist_id=86857"><img src="/static/managed/img/2010/05/12/kellogg_uk_FNC_051210_16-06_121x68.jpg" alt="" /></a>
1153
+ <p class="credit"></p>
1154
+ <p class="caption"></p>
1155
+ </div>
1156
+
1157
+
1158
+
1159
+ <h2><a href="http://video.foxnews.com/g4192619/political-odd-couple-to-lead-uk?playlist_id=86857">Political Odd Couple to Lead U.K.<span class="icon video"></span></a></h2>
1160
+
1161
+ <div class="break"></div>
1162
+
1163
+
1164
+
1165
+ <p class="publish-date-alt"><span class="default-date">May 12, 2010</span><span class="full-date">Wed, 12 May 2010 20:27:59 GMT</span><span class="timestamp">3:05 PM EST</span></p>
1166
+
1167
+
1168
+ <div class="deck"><p>Cameron and Clegg want stable government</p></div>
1169
+
1170
+
1171
+ <p class="more comment count more-comment more-comment-count" id="videoid:g4192619"><a class="loading" href="http://video.foxnews.com/g4192619/political-odd-couple-to-lead-uk?playlist_id=86857"><span class="result"></span> <span class="label">Loading...</span></a></p>
1172
+
1173
+
1174
+
1175
+
1176
+
1177
+ <p class="more channel more-channel"><a href="/world/index.html">World</a></p>
1178
+ </div>
1179
+ </li>
1180
+
1181
+ </ul>
1182
+
1183
+ <script type="text/javascript" language="JavaScript" charset="utf-8">
1184
+ function changeCarouselImage(selectedDot) {
1185
+
1186
+ document.getElementById('carouseldot0').src='/static/fn2/ws/img/dot-empty.jpg';
1187
+
1188
+ document.getElementById('carouseldot1').src='/static/fn2/ws/img/dot-empty.jpg';
1189
+
1190
+ document.getElementById('carouseldot2').src='/static/fn2/ws/img/dot-empty.jpg';
1191
+
1192
+ document.getElementById('carouseldot3').src='/static/fn2/ws/img/dot-empty.jpg';
1193
+
1194
+ document.getElementById('carouseldot4').src='/static/fn2/ws/img/dot-empty.jpg';
1195
+
1196
+ document.getElementById('carouseldot'+selectedDot).src='/static/fn2/ws/img/dot-full.jpg';
1197
+ }
1198
+ </script>
1199
+
1200
+ <div class="interactive">
1201
+
1202
+
1203
+ <div class="arrows">
1204
+ <a href="javascript:void(0)" class="left" id="jcarousel-control-dot-slider-prev"></a>
1205
+ <a href="javascript:void(0)" class="right" id="jcarousel-control-dot-slider-next"></a>
1206
+ </div>
1207
+ <div class="jcarousel-control-dot-slider dots">
1208
+
1209
+ <a href="javascript:void(0)" id="1" onclick="changeCarouselImage('0')"><img id="carouseldot0" src="/static/fn2/ws/img/dot-full.jpg" /></a>
1210
+
1211
+ <a href="javascript:void(0)" id="2" onclick="changeCarouselImage('1')"><img id="carouseldot1" src="/static/fn2/ws/img/dot-empty.jpg" /></a>
1212
+
1213
+ <a href="javascript:void(0)" id="3" onclick="changeCarouselImage('2')"><img id="carouseldot2" src="/static/fn2/ws/img/dot-empty.jpg" /></a>
1214
+
1215
+ <a href="javascript:void(0)" id="4" onclick="changeCarouselImage('3')"><img id="carouseldot3" src="/static/fn2/ws/img/dot-empty.jpg" /></a>
1216
+
1217
+ <a href="javascript:void(0)" id="5" onclick="changeCarouselImage('4')"><img id="carouseldot4" src="/static/fn2/ws/img/dot-empty.jpg" /></a>
1218
+
1219
+ </div>
1220
+
1221
+
1222
+ </div>
1223
+ </div>
1224
+
1225
+
1226
+
1227
+ </div>
1228
+ <script> try { fox.site.loadEvent('#dpm_b47ae086f4f96210VgnVCM100000cf3ce80aRCRD'); } catch(err) { } </script>
1229
+ </div>
1230
+
1231
+
1232
+
1233
+
1234
+
1235
+
1236
+ </div>
1237
+ </div>
1238
+ <div class="partner-list">
1239
+ <div class="component">
1240
+
1241
+
1242
+
1243
+
1244
+
1245
+
1246
+
1247
+
1248
+
1249
+
1250
+
1251
+
1252
+
1253
+
1254
+
1255
+
1256
+
1257
+
1258
+ </div>
1259
+ <div class="component">
1260
+
1261
+
1262
+
1263
+
1264
+
1265
+
1266
+
1267
+
1268
+
1269
+
1270
+
1271
+
1272
+
1273
+
1274
+
1275
+
1276
+
1277
+
1278
+ </div>
1279
+ </div>
1280
+ <div class="panel span-5 last">
1281
+ <div class="component">
1282
+
1283
+
1284
+
1285
+
1286
+
1287
+
1288
+
1289
+
1290
+
1291
+
1292
+
1293
+ <div id="dpm_11da73e178a96210VgnVCM100000cf3ce80aRCRD" class="portlet tabbed composite composite-tabbed parent-component">
1294
+ <h1>Most&nbsp;&nbsp;Active</h1>
1295
+ <div>
1296
+
1297
+
1298
+
1299
+
1300
+
1301
+
1302
+
1303
+
1304
+ <ul class="tabs">
1305
+
1306
+ <li class="comment_tab active"><a title="null" href="#">Most Read</a></li>
1307
+
1308
+ <li class="comment_tab"><a title="null" href="#">Most Commented</a></li>
1309
+
1310
+ </ul>
1311
+ <div class="composite-body">
1312
+ <div class="composite-item active type first-type">
1313
+ <div id="dpm_11da73e178a96210VgnVCM100000cf3ce80aRCRD_item1" class="portlet generic-list link-list link-list-c c"><h2>Most Read</h2>
1314
+ <ul id="link_list_most_read"></ul>
1315
+ </div>
1316
+ <script> try { fox.site.loadEvent('#dpm_11da73e178a96210VgnVCM100000cf3ce80aRCRD_item1'); } catch(err) { } </script>
1317
+ </div><div class="composite-item type">
1318
+ <div id="dpm_11da73e178a96210VgnVCM100000cf3ce80aRCRD_item2" class="portlet generic-list link-list link-list-c c"><h2>Most Commented</h2>
1319
+ <div class="top"></div>
1320
+ <ul class="first">
1321
+ <li class="first odd">
1322
+ <div class="primary set primary-set">
1323
+ <a href="/world/2010/05/03/mexicans-hold-noses-shop-arizona-despite-anger-immigration-law/">Despite Ariz. Law, Illegals Vow to Keep Coming</a><p>
1324
+ <span class="publish-date">May 03, 2010</span>
1325
+ <span class="comment">601 comments</span>
1326
+ </p></div>
1327
+ <p class="more set more-set">
1328
+ <a href="/world/2010/05/03/mexicans-hold-noses-shop-arizona-despite-anger-immigration-law/">&#187;</a></p></li>
1329
+ <li class="even">
1330
+ <div class="primary set primary-set">
1331
+ <a href="/world/2010/04/26/mexican-president-condemns-arizona-immigrant-law/">Mexico issues travel alert over new Arizona law</a><p>
1332
+ <span class="publish-date">April 26, 2010</span>
1333
+ <span class="comment">555 comments</span>
1334
+ </p></div>
1335
+ <p class="more set more-set">
1336
+ <a href="/world/2010/04/26/mexican-president-condemns-arizona-immigrant-law/">&#187;</a></p></li>
1337
+ <li class="odd">
1338
+ <div class="primary set primary-set">
1339
+ <a href="/world/2010/04/29/elects-iran-commission-womens-rights/">EXCLUSIVE: U.N. Elects Iran to Commission on Women's Rights</a><p>
1340
+ <span class="publish-date">April 29, 2010</span>
1341
+ <span class="comment">418 comments</span>
1342
+ </p></div>
1343
+ <p class="more set more-set">
1344
+ <a href="/world/2010/04/29/elects-iran-commission-womens-rights/">&#187;</a></p></li>
1345
+ <li class="even">
1346
+ <div class="primary set primary-set">
1347
+ <a href="/world/2010/04/30/noahs-ark-hoax-claim-doesnt-deter-believers/">Noah's Ark Hoax Claim Doesn't Deter Believers </a><p>
1348
+ <span class="publish-date">April 30, 2010</span>
1349
+ <span class="comment">331 comments</span>
1350
+ </p></div>
1351
+ <p class="more set more-set">
1352
+ <a href="/world/2010/04/30/noahs-ark-hoax-claim-doesnt-deter-believers/">&#187;</a></p></li>
1353
+ <li class="last odd">
1354
+ <div class="primary set primary-set">
1355
+ <a href="/world/2010/04/21/court-martial-navy-seal-opens-iraq/">Iraqi testified he was beaten by US troops</a><p>
1356
+ <span class="publish-date">April 21, 2010</span>
1357
+ <span class="comment">250 comments</span>
1358
+ </p></div>
1359
+ <p class="more set more-set">
1360
+ <a href="/world/2010/04/21/court-martial-navy-seal-opens-iraq/">&#187;</a></p></li>
1361
+ </ul>
1362
+ <div class="bottom">
1363
+ </div>
1364
+ </div>
1365
+ <script> try { fox.site.loadEvent('#dpm_11da73e178a96210VgnVCM100000cf3ce80aRCRD_item2'); } catch(err) { } </script>
1366
+ </div></div></div></div>
1367
+
1368
+
1369
+
1370
+
1371
+
1372
+
1373
+ </div>
1374
+ <div class="component">
1375
+
1376
+
1377
+
1378
+
1379
+
1380
+
1381
+
1382
+
1383
+
1384
+
1385
+
1386
+
1387
+
1388
+
1389
+
1390
+
1391
+
1392
+
1393
+
1394
+ <div class="ad dc" id="frame2-300x100">
1395
+
1396
+ </div>
1397
+
1398
+
1399
+
1400
+
1401
+
1402
+
1403
+
1404
+ </div>
1405
+ <div class="component">
1406
+
1407
+
1408
+
1409
+
1410
+
1411
+
1412
+
1413
+
1414
+
1415
+
1416
+
1417
+ <div class="parent-component"><div id="dpm_36cb73e178a96210VgnVCM100000cf3ce80aRCRD" class="portlet generic-list block-quote a type first-type">
1418
+ <ul>
1419
+
1420
+ <li class="component first last">
1421
+
1422
+
1423
+ <div class="deck"><script type="text/javascript" src="http://partner.googleadservices.com/gampad/google_service.js">
1424
+ </script>
1425
+ <script type="text/javascript">
1426
+ GS_googleAddAdSenseService("ca-pub-2806342013516770");
1427
+ GS_googleEnableAllServices();
1428
+ </script>
1429
+ <script type="text/javascript">
1430
+ GA_googleAddSlot("ca-pub-2806342013516770", "world_headlines");
1431
+ </script>
1432
+ <script type="text/javascript">
1433
+ GA_googleFetchAds();
1434
+ </script>
1435
+ <script type="text/javascript">
1436
+ GA_googleFillSlot("world_headlines");
1437
+ </script> </div>
1438
+ </li>
1439
+ </ul>
1440
+ <p class="footer"> </p>
1441
+ <p class="publish-date">
1442
+
1443
+
1444
+ </p>
1445
+
1446
+
1447
+
1448
+
1449
+ </div>
1450
+ <script> try { fox.site.loadEvent('#dpm_36cb73e178a96210VgnVCM100000cf3ce80aRCRD'); } catch(err) { } </script>
1451
+ </div>
1452
+
1453
+
1454
+
1455
+
1456
+
1457
+
1458
+ </div>
1459
+ <div class="component">
1460
+
1461
+
1462
+
1463
+
1464
+
1465
+
1466
+
1467
+
1468
+
1469
+
1470
+
1471
+
1472
+
1473
+
1474
+
1475
+
1476
+
1477
+
1478
+ </div>
1479
+ <div class="component">
1480
+
1481
+
1482
+
1483
+
1484
+
1485
+
1486
+
1487
+
1488
+
1489
+
1490
+
1491
+
1492
+
1493
+
1494
+
1495
+
1496
+
1497
+
1498
+ </div>
1499
+ </div>
1500
+ </div><div class="content-divider foot-content span-14 last"><div class="panel span-2">
1501
+ <div class="component">
1502
+
1503
+
1504
+
1505
+
1506
+
1507
+
1508
+
1509
+
1510
+
1511
+
1512
+
1513
+ <div id="dpm_b55c73e178a96210VgnVCM100000cf3ce80aRCRD" class="composite composite-a a parent-component">
1514
+ <div class="composite-body">
1515
+ <div class="composite-item active type first-type">
1516
+ <div id="dpm_b55c73e178a96210VgnVCM100000cf3ce80aRCRD_item1" class="portlet generic-list link-list link-list-c c">
1517
+
1518
+
1519
+
1520
+
1521
+
1522
+
1523
+
1524
+
1525
+
1526
+
1527
+ <div class="top"><img src="/static/managed/img/121x20_aol_news.gif" alt=""/></div>
1528
+
1529
+
1530
+
1531
+
1532
+ <ul class="first">
1533
+ <li class="first odd">
1534
+ <div class="primary set primary-set">
1535
+ <a href="http://www.aolnews.com/nation/article/media-takes-its-swings-at-photo-of-elena-kagan-playing-softball/19476724">Kagan at the Bat: Media Takes Its Swings at Photo</a><p>
1536
+ <span class="publish-date">May 13, 2010</span>
1537
+ </p></div>
1538
+ <p class="more set more-set">
1539
+ <a href="http://www.aolnews.com/nation/article/media-takes-its-swings-at-photo-of-elena-kagan-playing-softball/19476724">&#187;</a></p></li>
1540
+ <li class="even">
1541
+ <div class="primary set primary-set">
1542
+ <a href="http://www.politicsdaily.com/2010/05/12/obamas-afghanistan-no-political-strategy-no-end-point-no-ben/">Obama's Afghanistan: No Political Strategy</a><p>
1543
+ <span class="publish-date">May 13, 2010</span>
1544
+ </p></div>
1545
+ <p class="more set more-set">
1546
+ <a href="http://www.politicsdaily.com/2010/05/12/obamas-afghanistan-no-political-strategy-no-end-point-no-ben/">&#187;</a></p></li>
1547
+ <li class="odd">
1548
+ <div class="primary set primary-set">
1549
+ <a href="http://www.aolnews.com/nation/article/police-say-glendale-woman-nancy-salas-may-have-faked-disappearance/19476881">Police Say LA Woman May Have Faked Disappearance</a><p>
1550
+ <span class="publish-date">May 13, 2010</span>
1551
+ </p></div>
1552
+ <p class="more set more-set">
1553
+ <a href="http://www.aolnews.com/nation/article/police-say-glendale-woman-nancy-salas-may-have-faked-disappearance/19476881">&#187;</a></p></li>
1554
+ <li class="even">
1555
+ <div class="primary set primary-set">
1556
+ <a href="http://www.aolnews.com/nation/article/fbi-conducts-raids-in-times-square-bomb-probe/19476189">FBI Conducts Raids in Times Square Bomb Probe</a><p>
1557
+ <span class="publish-date">May 13, 2010</span>
1558
+ </p></div>
1559
+ <p class="more set more-set">
1560
+ <a href="http://www.aolnews.com/nation/article/fbi-conducts-raids-in-times-square-bomb-probe/19476189">&#187;</a></p></li>
1561
+ <li class="last odd">
1562
+ <div class="primary set primary-set">
1563
+ <a href="http://www.aolnews.com/nation/article/mass-man-michael-frisoli-pleads-guilty-to-pretending-to-be-war-hero/19476925">Mass. Man Pleads Guilty to Pretending to Be War Hero</a><p>
1564
+ <span class="publish-date">May 13, 2010</span>
1565
+ </p></div>
1566
+ <p class="more set more-set">
1567
+ <a href="http://www.aolnews.com/nation/article/mass-man-michael-frisoli-pleads-guilty-to-pretending-to-be-war-hero/19476925">&#187;</a></p></li>
1568
+ </ul>
1569
+ <div class="bottom">
1570
+ </div>
1571
+ </div>
1572
+ <script> try { fox.site.loadEvent('#dpm_b55c73e178a96210VgnVCM100000cf3ce80aRCRD_item1'); } catch(err) { } </script>
1573
+ </div></div></div>
1574
+
1575
+
1576
+
1577
+
1578
+
1579
+
1580
+ </div>
1581
+ </div>
1582
+ <div class="panel span-2">
1583
+ <div class="component">
1584
+
1585
+
1586
+
1587
+
1588
+
1589
+
1590
+
1591
+
1592
+
1593
+
1594
+
1595
+ <div id="dpm_223d73e178a96210VgnVCM100000cf3ce80aRCRD" class="composite composite-a a parent-component">
1596
+ <div class="composite-body">
1597
+ <div class="composite-item active type first-type">
1598
+ <div id="dpm_223d73e178a96210VgnVCM100000cf3ce80aRCRD_item1" class="portlet generic-list link-list link-list-c c">
1599
+
1600
+
1601
+
1602
+
1603
+
1604
+
1605
+
1606
+
1607
+
1608
+
1609
+ <div class="top"><img src="/static/managed/img/121x20_wall_street_journal.gif" alt=""/></div>
1610
+
1611
+
1612
+
1613
+
1614
+ <ul class="first">
1615
+ <li class="first odd">
1616
+ <div class="primary set primary-set">
1617
+ <a href="http://online.wsj.com/article/SB10001424052748704635204575242671150751944.html?mod=rss_opinion_main" rel=""nofollow"">Noonan: The Lamest Show on Earth</a><p>
1618
+ <span class="publish-date">May 13, 2010</span>
1619
+ </p></div>
1620
+ <p class="more set more-set">
1621
+ <a href="http://online.wsj.com/article/SB10001424052748704635204575242671150751944.html?mod=rss_opinion_main" rel=""nofollow"">&#187;</a></p></li>
1622
+ <li class="even">
1623
+ <div class="primary set primary-set">
1624
+ <a href="http://online.wsj.com/article/SB10001424052748704635204575242013817367060.html?mod=rss_opinion_main" rel=""nofollow"">Tom Grant and John Ullyot: Kagan and the 'Public Safety Exception'</a><p>
1625
+ <span class="publish-date">May 13, 2010</span>
1626
+ </p></div>
1627
+ <p class="more set more-set">
1628
+ <a href="http://online.wsj.com/article/SB10001424052748704635204575242013817367060.html?mod=rss_opinion_main" rel=""nofollow"">&#187;</a></p></li>
1629
+ <li class="odd">
1630
+ <div class="primary set primary-set">
1631
+ <a href="http://online.wsj.com/article/SB10001424052748703915204575104113794207730.html?mod=rss_opinion_main" rel=""nofollow"">John Steele Gordon: Incentives vs. Government Waste</a><p>
1632
+ <span class="publish-date">May 14, 2010</span>
1633
+ </p></div>
1634
+ <p class="more set more-set">
1635
+ <a href="http://online.wsj.com/article/SB10001424052748703915204575104113794207730.html?mod=rss_opinion_main" rel=""nofollow"">&#187;</a></p></li>
1636
+ <li class="even">
1637
+ <div class="primary set primary-set">
1638
+ <a href="http://online.wsj.com/article/SB10001424052748704635204575242381255759008.html?mod=rss_opinion_main" rel=""nofollow"">The Credit Raters Brawl</a><p>
1639
+ <span class="publish-date">May 13, 2010</span>
1640
+ </p></div>
1641
+ <p class="more set more-set">
1642
+ <a href="http://online.wsj.com/article/SB10001424052748704635204575242381255759008.html?mod=rss_opinion_main" rel=""nofollow"">&#187;</a></p></li>
1643
+ <li class="last odd">
1644
+ <div class="primary set primary-set">
1645
+ <a href="http://online.wsj.com/article/SB10001424052748704250104575238392761660272.html?mod=rss_opinion_main" rel=""nofollow"">Still Segregating Voters</a><p>
1646
+ <span class="publish-date">May 13, 2010</span>
1647
+ </p></div>
1648
+ <p class="more set more-set">
1649
+ <a href="http://online.wsj.com/article/SB10001424052748704250104575238392761660272.html?mod=rss_opinion_main" rel=""nofollow"">&#187;</a></p></li>
1650
+ </ul>
1651
+ <div class="bottom">
1652
+ </div>
1653
+ </div>
1654
+ <script> try { fox.site.loadEvent('#dpm_223d73e178a96210VgnVCM100000cf3ce80aRCRD_item1'); } catch(err) { } </script>
1655
+ </div></div></div>
1656
+
1657
+
1658
+
1659
+
1660
+
1661
+
1662
+ </div>
1663
+ </div>
1664
+ <div class="panel span-2">
1665
+ <div class="component">
1666
+
1667
+
1668
+
1669
+
1670
+
1671
+
1672
+
1673
+
1674
+
1675
+
1676
+
1677
+ <div id="dpm_ffbd73e178a96210VgnVCM100000cf3ce80aRCRD" class="composite composite-a a parent-component">
1678
+ <div class="composite-body">
1679
+ <div class="composite-item active type first-type">
1680
+ <div id="dpm_ffbd73e178a96210VgnVCM100000cf3ce80aRCRD_item1" class="portlet generic-list link-list link-list-c c">
1681
+
1682
+
1683
+
1684
+
1685
+
1686
+
1687
+
1688
+
1689
+
1690
+
1691
+ <div class="top"><img src="/static/managed/img/121x20_times_online.gif" alt=""/></div>
1692
+
1693
+
1694
+
1695
+
1696
+ <ul class="first">
1697
+ <li class="first odd">
1698
+ <div class="primary set primary-set">
1699
+ <a href="http://www.timesonline.co.uk/tol/comment/columnists/guest_contributors/article7125774.ece#cid=OTC-RSS&attr=2270657">Africa’s Macbeth may finally be tired of war</a><p>
1700
+ <span class="publish-date">May 13, 2010</span>
1701
+ </p></div>
1702
+ <p class="more set more-set">
1703
+ <a href="http://www.timesonline.co.uk/tol/comment/columnists/guest_contributors/article7125774.ece#cid=OTC-RSS&attr=2270657">&#187;</a></p></li>
1704
+ <li class="even">
1705
+ <div class="primary set primary-set">
1706
+ <a href="http://www.timesonline.co.uk/tol/comment/columnists/guest_contributors/article7125773.ece#cid=OTC-RSS&attr=2270657">What shall we do with the drunken soldier?</a><p>
1707
+ <span class="publish-date">May 13, 2010</span>
1708
+ </p></div>
1709
+ <p class="more set more-set">
1710
+ <a href="http://www.timesonline.co.uk/tol/comment/columnists/guest_contributors/article7125773.ece#cid=OTC-RSS&attr=2270657">&#187;</a></p></li>
1711
+ <li class="odd">
1712
+ <div class="primary set primary-set">
1713
+ <a href="http://www.timesonline.co.uk/tol/comment/columnists/guest_contributors/article7125775.ece#cid=OTC-RSS&attr=2270657">Ditching the third runway risks breaking up the UK</a><p>
1714
+ <span class="publish-date">May 13, 2010</span>
1715
+ </p></div>
1716
+ <p class="more set more-set">
1717
+ <a href="http://www.timesonline.co.uk/tol/comment/columnists/guest_contributors/article7125775.ece#cid=OTC-RSS&attr=2270657">&#187;</a></p></li>
1718
+ <li class="even">
1719
+ <div class="primary set primary-set">
1720
+ <a href="http://www.timesonline.co.uk/tol/comment/columnists/guest_contributors/article7125806.ece#cid=OTC-RSS&attr=2270657">To keep your seat, stick to your principles</a><p>
1721
+ <span class="publish-date">May 13, 2010</span>
1722
+ </p></div>
1723
+ <p class="more set more-set">
1724
+ <a href="http://www.timesonline.co.uk/tol/comment/columnists/guest_contributors/article7125806.ece#cid=OTC-RSS&attr=2270657">&#187;</a></p></li>
1725
+ <li class="last odd">
1726
+ <div class="primary set primary-set">
1727
+ <a href="http://www.timesonline.co.uk/tol/comment/columnists/camilla_cavendish/article7125822.ece#cid=OTC-RSS&attr=2270657">We must be fair to everyone – even the rich</a><p>
1728
+ <span class="publish-date">May 13, 2010</span>
1729
+ </p></div>
1730
+ <p class="more set more-set">
1731
+ <a href="http://www.timesonline.co.uk/tol/comment/columnists/camilla_cavendish/article7125822.ece#cid=OTC-RSS&attr=2270657">&#187;</a></p></li>
1732
+ </ul>
1733
+ <div class="bottom">
1734
+ </div>
1735
+ </div>
1736
+ <script> try { fox.site.loadEvent('#dpm_ffbd73e178a96210VgnVCM100000cf3ce80aRCRD_item1'); } catch(err) { } </script>
1737
+ </div></div></div>
1738
+
1739
+
1740
+
1741
+
1742
+
1743
+
1744
+ </div>
1745
+ </div>
1746
+ <div class="panel span-2">
1747
+ <div class="component">
1748
+
1749
+
1750
+
1751
+
1752
+
1753
+
1754
+
1755
+
1756
+
1757
+
1758
+
1759
+ <div id="dpm_555e73e178a96210VgnVCM100000cf3ce80aRCRD" class="composite composite-a a parent-component">
1760
+ <div class="composite-body">
1761
+ <div class="composite-item active type first-type">
1762
+ <div id="dpm_555e73e178a96210VgnVCM100000cf3ce80aRCRD_item1" class="portlet generic-list link-list link-list-c c">
1763
+
1764
+
1765
+
1766
+
1767
+
1768
+
1769
+
1770
+
1771
+
1772
+
1773
+ <div class="top"><img src="/static/managed/img/121x20_fox_business.gif" alt=""/></div>
1774
+
1775
+
1776
+
1777
+
1778
+ <ul class="first">
1779
+ <li class="first odd">
1780
+ <div class="primary set primary-set">
1781
+ <a href="http://feeds.foxbusiness.com/~r/foxbusiness/economy/~3/Zg8vHKxYrHU/">Nordstrom Earnings Jump on Revived Sales</a><p>
1782
+ <span class="publish-date">May 13, 2010</span>
1783
+ </p></div>
1784
+ <p class="more set more-set">
1785
+ <a href="http://feeds.foxbusiness.com/~r/foxbusiness/economy/~3/Zg8vHKxYrHU/">&#187;</a></p></li>
1786
+ <li class="even">
1787
+ <div class="primary set primary-set">
1788
+ <a href="http://feeds.foxbusiness.com/~r/foxbusiness/economy/~3/eEhEamXXXh4/">VAT Gaining Unlikely Supporters on Capitol Hill</a><p>
1789
+ <span class="publish-date">May 13, 2010</span>
1790
+ </p></div>
1791
+ <p class="more set more-set">
1792
+ <a href="http://feeds.foxbusiness.com/~r/foxbusiness/economy/~3/eEhEamXXXh4/">&#187;</a></p></li>
1793
+ <li class="odd">
1794
+ <div class="primary set primary-set">
1795
+ <a href="http://feeds.foxbusiness.com/~r/foxbusiness/economy/~3/ij11PkEkEtQ/">Despite Rhetoric, Illegal Immigration Provides Benefits to States</a><p>
1796
+ <span class="publish-date">May 13, 2010</span>
1797
+ </p></div>
1798
+ <p class="more set more-set">
1799
+ <a href="http://feeds.foxbusiness.com/~r/foxbusiness/economy/~3/ij11PkEkEtQ/">&#187;</a></p></li>
1800
+ <li class="even">
1801
+ <div class="primary set primary-set">
1802
+ <a href="http://feeds.foxbusiness.com/~r/foxbusiness/economy/~3/7XTA72tnylY/">Senate Votes to Boost Credit Rater Rules</a><p>
1803
+ <span class="publish-date">May 13, 2010</span>
1804
+ </p></div>
1805
+ <p class="more set more-set">
1806
+ <a href="http://feeds.foxbusiness.com/~r/foxbusiness/economy/~3/7XTA72tnylY/">&#187;</a></p></li>
1807
+ <li class="last odd">
1808
+ <div class="primary set primary-set">
1809
+ <a href="http://feeds.foxbusiness.com/~r/foxbusiness/economy/~3/PAmqqyNvjQY/">Terrorists and the Market Selloff</a><p>
1810
+ <span class="publish-date">May 13, 2010</span>
1811
+ </p></div>
1812
+ <p class="more set more-set">
1813
+ <a href="http://feeds.foxbusiness.com/~r/foxbusiness/economy/~3/PAmqqyNvjQY/">&#187;</a></p></li>
1814
+ </ul>
1815
+ <div class="bottom">
1816
+ </div>
1817
+ </div>
1818
+ <script> try { fox.site.loadEvent('#dpm_555e73e178a96210VgnVCM100000cf3ce80aRCRD_item1'); } catch(err) { } </script>
1819
+ </div></div></div>
1820
+
1821
+
1822
+
1823
+
1824
+
1825
+
1826
+ </div>
1827
+ </div>
1828
+ <div class="panel span-2">
1829
+ <div class="component">
1830
+
1831
+
1832
+
1833
+
1834
+
1835
+
1836
+
1837
+
1838
+
1839
+
1840
+
1841
+ <div id="dpm_ee332f4392277210VgnVCM10000086c1a8c0RCRD" class="composite composite-a a parent-component">
1842
+ <div class="composite-body">
1843
+ <div class="composite-item active type first-type">
1844
+ <div id="dpm_ee332f4392277210VgnVCM10000086c1a8c0RCRD_item1" class="portlet generic-list link-list link-list-c c">
1845
+
1846
+
1847
+
1848
+
1849
+
1850
+
1851
+
1852
+
1853
+
1854
+
1855
+ <div class="top"><img src="/static/managed/img/121x20_fb_sbc.gif" alt=""/></div>
1856
+
1857
+
1858
+
1859
+
1860
+ <ul class="first">
1861
+ <li class="first odd">
1862
+ <div class="primary set primary-set">
1863
+ <a href="http://www.foxsmallbusinesscenter.com/strategy/2010/05/12/stock-options-just-ticket-unicorn-ride/">Stock Options: Just a Ticket for a Unicorn Ride?</a><p>
1864
+ <span class="publish-date">May 12, 2010</span>
1865
+ </p></div>
1866
+ <p class="more set more-set">
1867
+ <a href="http://www.foxsmallbusinesscenter.com/strategy/2010/05/12/stock-options-just-ticket-unicorn-ride/">&#187;</a></p></li>
1868
+ <li class="even">
1869
+ <div class="primary set primary-set">
1870
+ <a href="http://www.foxsmallbusinesscenter.com/strategy/2010/05/12/ways-cash-stock-options-ipo/">Ways to Cash in Stock Options Before an IPO</a><p>
1871
+ <span class="publish-date">May 12, 2010</span>
1872
+ </p></div>
1873
+ <p class="more set more-set">
1874
+ <a href="http://www.foxsmallbusinesscenter.com/strategy/2010/05/12/ways-cash-stock-options-ipo/">&#187;</a></p></li>
1875
+ <li class="odd">
1876
+ <div class="primary set primary-set">
1877
+ <a href="http://www.foxsmallbusinesscenter.com/strategy/2010/05/11/small-business-slightly-glum/">Small Business Slightly Less Glum</a><p>
1878
+ <span class="publish-date">May 11, 2010</span>
1879
+ </p></div>
1880
+ <p class="more set more-set">
1881
+ <a href="http://www.foxsmallbusinesscenter.com/strategy/2010/05/11/small-business-slightly-glum/">&#187;</a></p></li>
1882
+ <li class="even">
1883
+ <div class="primary set primary-set">
1884
+ <a href="http://www.foxsmallbusinesscenter.com/technology/2010/05/05/make-web-site-daily-destination/">Make Your Web Site a Daily Destination</a><p>
1885
+ <span class="publish-date">May 05, 2010</span>
1886
+ </p></div>
1887
+ <p class="more set more-set">
1888
+ <a href="http://www.foxsmallbusinesscenter.com/technology/2010/05/05/make-web-site-daily-destination/">&#187;</a></p></li>
1889
+ <li class="last odd">
1890
+ <div class="primary set primary-set">
1891
+ <a href="http://www.foxsmallbusinesscenter.com/technology/2010/05/04/mobile-apps-make-conducting-business-easier/">5 Mobile Apps to Make Running a Business Easier on the Go</a><p>
1892
+ <span class="publish-date">May 04, 2010</span>
1893
+ </p></div>
1894
+ <p class="more set more-set">
1895
+ <a href="http://www.foxsmallbusinesscenter.com/technology/2010/05/04/mobile-apps-make-conducting-business-easier/">&#187;</a></p></li>
1896
+ </ul>
1897
+ <div class="bottom">
1898
+ </div>
1899
+ </div>
1900
+ <script> try { fox.site.loadEvent('#dpm_ee332f4392277210VgnVCM10000086c1a8c0RCRD_item1'); } catch(err) { } </script>
1901
+ </div></div></div>
1902
+
1903
+
1904
+
1905
+
1906
+
1907
+
1908
+ </div>
1909
+ </div>
1910
+ <div class="panel span-2">
1911
+ <div class="component">
1912
+
1913
+
1914
+
1915
+
1916
+
1917
+
1918
+
1919
+
1920
+
1921
+
1922
+
1923
+ <div id="dpm_b31d549730808210VgnVCM10000086c1a8c0RCRD" class="composite composite-a a parent-component">
1924
+ <div class="composite-body">
1925
+ <div class="composite-item active type first-type">
1926
+ <div id="dpm_b31d549730808210VgnVCM10000086c1a8c0RCRD_item1" class="portlet generic-list link-list link-list-c c">
1927
+
1928
+
1929
+
1930
+
1931
+
1932
+
1933
+
1934
+
1935
+
1936
+
1937
+ <div class="top"><img src="/static/managed/img/121x20_beliefnet.gif" alt=""/></div>
1938
+
1939
+
1940
+
1941
+
1942
+ <ul class="first">
1943
+ <li class="first odd">
1944
+ <div class="primary set primary-set">
1945
+ <a href="http://feedproxy.google.com/~r/beyondblue1/~3/gX_cPAfum3U/grateful-and-depressed-you-can.html">Grateful and Depressed? You Can Be Both</a><p>
1946
+ <span class="publish-date">May 13, 2010</span>
1947
+ </p></div>
1948
+ <p class="more set more-set">
1949
+ <a href="http://feedproxy.google.com/~r/beyondblue1/~3/gX_cPAfum3U/grateful-and-depressed-you-can.html">&#187;</a></p></li>
1950
+ <li class="even">
1951
+ <div class="primary set primary-set">
1952
+ <a href="http://feedproxy.google.com/~r/beyondblue1/~3/HsuOA0Y1mag/5-ways-to-practice-gratitude-a.html">5 Ways to Practice Gratitude: An Interview with Sonja Lyubomirsky</a><p>
1953
+ <span class="publish-date">May 13, 2010</span>
1954
+ </p></div>
1955
+ <p class="more set more-set">
1956
+ <a href="http://feedproxy.google.com/~r/beyondblue1/~3/HsuOA0Y1mag/5-ways-to-practice-gratitude-a.html">&#187;</a></p></li>
1957
+ <li class="odd">
1958
+ <div class="primary set primary-set">
1959
+ <a href="http://feedproxy.google.com/~r/beyondblue1/~3/hz5MflyGdZw/the-power-of-forgiveness.html">The Power of Forgiveness</a><p>
1960
+ <span class="publish-date">May 12, 2010</span>
1961
+ </p></div>
1962
+ <p class="more set more-set">
1963
+ <a href="http://feedproxy.google.com/~r/beyondblue1/~3/hz5MflyGdZw/the-power-of-forgiveness.html">&#187;</a></p></li>
1964
+ <li class="even">
1965
+ <div class="primary set primary-set">
1966
+ <a href="http://feedproxy.google.com/~r/beyondblue1/~3/skqi6q6Xo38/first-forgive.html">First Forgive</a><p>
1967
+ <span class="publish-date">May 12, 2010</span>
1968
+ </p></div>
1969
+ <p class="more set more-set">
1970
+ <a href="http://feedproxy.google.com/~r/beyondblue1/~3/skqi6q6Xo38/first-forgive.html">&#187;</a></p></li>
1971
+ <li class="last odd">
1972
+ <div class="primary set primary-set">
1973
+ <a href="http://feedproxy.google.com/~r/beyondblue1/~3/gbf6W1jJGcQ/new-study-proves-jealousy-blin.html">New Study Proves Jealousy Blinds and Distracts</a><p>
1974
+ <span class="publish-date">May 11, 2010</span>
1975
+ </p></div>
1976
+ <p class="more set more-set">
1977
+ <a href="http://feedproxy.google.com/~r/beyondblue1/~3/gbf6W1jJGcQ/new-study-proves-jealousy-blin.html">&#187;</a></p></li>
1978
+ </ul>
1979
+ <div class="bottom">
1980
+ </div>
1981
+ </div>
1982
+ <script> try { fox.site.loadEvent('#dpm_b31d549730808210VgnVCM10000086c1a8c0RCRD_item1'); } catch(err) { } </script>
1983
+ </div></div></div>
1984
+
1985
+
1986
+
1987
+
1988
+
1989
+
1990
+ </div>
1991
+ </div>
1992
+ <div class="panel span-2 last">
1993
+ <div class="component">
1994
+
1995
+
1996
+
1997
+
1998
+
1999
+
2000
+
2001
+
2002
+
2003
+
2004
+
2005
+
2006
+
2007
+
2008
+
2009
+
2010
+
2011
+
2012
+ </div>
2013
+ </div>
2014
+ </div></div><!-- End Portlets -->
2015
+ <div id="footer">
2016
+ <div id="foot">
2017
+ <span class="clear"/>
2018
+ <div id="footer-nav">
2019
+ <ul class="nav">
2020
+ <li><a href="http://www.foxnews.com/index.html">Home</a></li>
2021
+ <li><a href="http://www.foxnews.com/us/index.html">U.S.</a></li>
2022
+ <li><a href="http://www.foxnews.com/world/index.html">World</a></li>
2023
+ <li><a href="http://www.foxnews.com/politics/index.html">Politics</a></li>
2024
+ <li><a href="http://www.foxnews.com/health/index.html">Health</a></li>
2025
+ <li><a onclick="window.open(this.href);return false;" href="http://www.foxbusiness.com/">Business</a></li>
2026
+ <li><a href="http://www.foxnews.com/scitech/index.html">SciTech</a></li>
2027
+ <li><a href="http://www.foxnews.com/entertainment/index.html">Entertainment</a></li>
2028
+ <li><a href="http://video.foxnews.com/index.html">Video</a></li>
2029
+ <li><a href="http://www.foxnews.com/opinion/index.html">Opinion</a></li>
2030
+ <li><a href="http://www.foxnews.com/sports/index.html">Sports</a></li>
2031
+ <li style="border-right: medium none;"><a href="http://www.foxnews.com/leisure/index.html">Leisure</a></li>
2032
+ </ul>
2033
+ <ul class="sub_nav">
2034
+ <li><a href="http://careers.foxnews.com/">Careers</a></li>
2035
+ <li><a href="http://www.foxnews.com/fncu/">Internships - FNCU</a></li>
2036
+ <li><a href="http://www.foxnews.com/foxaroundtheworld/index.html">Fox Around the World</a></li>
2037
+ <li style="border-right: medium none;"><a href="http://www.foxnews.com/rss/index.html">RSS Feeds</a></li>
2038
+ <br/>
2039
+ <li><a target="_blank" href="http://advertise.foxnews.com/">Advertise With Us</a></li>
2040
+ <li><a target="_blank" href="http://www.foxnews.com/other/termsofuse.html">Terms of Use</a></li>
2041
+ <li><a href="http://www.foxnews.com/other/privacy.html">Privacy Policy</a></li>
2042
+ <li><a href="http://www.foxnews.com/story/0,2933,77538,00.html">Contact Us</a></li>
2043
+ <li style="border-right: medium none;"><a href="mailto:newsmanager@foxnews.com">Email FOXNews.com Newsroom</a></li>
2044
+ </ul>
2045
+ </div>
2046
+ <div id="minutiae">
2047
+ <p>This material may not be published, broadcast, rewritten, or redistributed.© 2010 FOX News Network, LLC. All rights reserved. All market data delayed 20 minutes.<br/><br/></p>
2048
+ </div>
2049
+ </div>
2050
+ </div>
2051
+ </div>
2052
+
2053
+ <script type="text/javascript">
2054
+ $.ad.pre();
2055
+ fox.site.bottomInit();
2056
+ </script>
2057
+ </body>
2058
+ </html>