bible_gateway 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/.document CHANGED
@@ -1,5 +1,3 @@
1
- README.rdoc
2
1
  lib/**/*.rb
3
2
  bin/*
4
3
  features/**/*.feature
5
- LICENSE
data/.gitignore CHANGED
@@ -1,5 +1,17 @@
1
- *.sw?
2
- .DS_Store
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
3
9
  coverage
4
- rdoc
10
+ doc/
11
+ lib/bundler/man
5
12
  pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --format documentation
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in bible_gateway.gemspec
4
+ gemspec
@@ -1,4 +1,6 @@
1
- Copyright (c) 2009 Geoffrey Dagley
1
+ Copyright (c) 2013 Geoffrey Dagley
2
+
3
+ MIT License
2
4
 
3
5
  Permission is hereby granted, free of charge, to any person obtaining
4
6
  a copy of this software and associated documentation files (the
data/README.md ADDED
@@ -0,0 +1,42 @@
1
+ # BibleGateway
2
+
3
+ An unofficial 'API' for BibleGateway.com.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'bible_gateway'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install bible_gateway
18
+
19
+ ## Usage
20
+
21
+ BibleGateway.versions # available versions
22
+
23
+ b = BibleGateway.new # defaults to :king_james_version, but can be initialized to different version
24
+ b.version = :english_standard_version
25
+ b.lookup('John 1:1') # => "<h4>John 1</h4>\n<h5>The Word Became Flesh</h5> <sup>1</sup> In the beginning was the Word, and the Word was with God, and the Word was God."
26
+
27
+ ## Todo
28
+
29
+ * Add other versions that are available
30
+
31
+ ## Contributing
32
+
33
+ 1. Fork it
34
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
35
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
36
+ 4. Push to the branch (`git push origin my-new-feature`)
37
+ 5. Create new Pull Request
38
+
39
+ ## Copyright
40
+
41
+ See [LICENSE](License.txt) for details.
42
+ Most Bible translations are copyrighted. Please see [BibleGateway.com](http://biblegateway.com) for more information.
data/Rakefile CHANGED
@@ -1,47 +1,7 @@
1
- require 'rubygems'
2
- require 'rake'
1
+ require "bundler/gem_tasks"
2
+ require 'rspec/core/rake_task'
3
3
 
4
- begin
5
- require 'jeweler'
6
- Jeweler::Tasks.new do |gem|
7
- gem.name = "bible_gateway"
8
- gem.summary = %Q{An unofficial 'API' for BibleGateway.com.}
9
- gem.email = "gdagley@gmail.com"
10
- gem.homepage = "http://github.com/gdagley/bible_gateway"
11
- gem.authors = ["Geoffrey Dagley"]
12
- gem.add_development_dependency "rspec"
13
- # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
14
- end
15
- rescue LoadError
16
- puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
17
- end
18
-
19
- require 'spec/rake/spectask'
20
- Spec::Rake::SpecTask.new(:spec) do |spec|
21
- spec.libs << 'lib' << 'spec'
22
- spec.spec_files = FileList['spec/**/*_spec.rb']
23
- end
24
-
25
- Spec::Rake::SpecTask.new(:rcov) do |spec|
26
- spec.libs << 'lib' << 'spec'
27
- spec.pattern = 'spec/**/*_spec.rb'
28
- spec.rcov = true
29
- end
30
-
31
- task :spec => :check_dependencies
4
+ RSpec::Core::RakeTask.new('spec')
32
5
 
6
+ # If you want to make this the default task
33
7
  task :default => :spec
34
-
35
- require 'rake/rdoctask'
36
- Rake::RDocTask.new do |rdoc|
37
- if File.exist?('VERSION')
38
- version = File.read('VERSION')
39
- else
40
- version = ""
41
- end
42
-
43
- rdoc.rdoc_dir = 'rdoc'
44
- rdoc.title = "bible_gateway #{version}"
45
- rdoc.rdoc_files.include('README*')
46
- rdoc.rdoc_files.include('lib/**/*.rb')
47
- end
@@ -1,53 +1,27 @@
1
- # Generated by jeweler
2
- # DO NOT EDIT THIS FILE
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
4
- # -*- encoding: utf-8 -*-
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'bible_gateway/version'
5
5
 
6
- Gem::Specification.new do |s|
7
- s.name = %q{bible_gateway}
8
- s.version = "0.0.2"
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "bible_gateway"
8
+ spec.version = BibleGateway::VERSION
9
+ spec.authors = ["Geoffrey Dagley"]
10
+ spec.email = ["gdagley@gmail.com"]
11
+ spec.description = %q{An unofficial 'API' for BibleGateway.com.}
12
+ spec.summary = %q{An unofficial 'API' for BibleGateway.com.}
13
+ spec.homepage = "https://github.com/gdagley/bible_gateway"
14
+ spec.license = "MIT"
9
15
 
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["Geoffrey Dagley"]
12
- s.date = %q{2009-09-19}
13
- s.email = %q{gdagley@gmail.com}
14
- s.extra_rdoc_files = [
15
- "LICENSE",
16
- "README.rdoc"
17
- ]
18
- s.files = [
19
- ".document",
20
- ".gitignore",
21
- "LICENSE",
22
- "README.rdoc",
23
- "Rakefile",
24
- "VERSION",
25
- "bible_gateway.gemspec",
26
- "lib/bible_gateway.rb",
27
- "spec/bible_gateway_spec.rb",
28
- "spec/fixtures/john_1_1.html",
29
- "spec/spec_helper.rb"
30
- ]
31
- s.homepage = %q{http://github.com/gdagley/bible_gateway}
32
- s.rdoc_options = ["--charset=UTF-8"]
33
- s.require_paths = ["lib"]
34
- s.rubygems_version = %q{1.3.5}
35
- s.summary = %q{An unofficial 'API' for BibleGateway.com.}
36
- s.test_files = [
37
- "spec/bible_gateway_spec.rb",
38
- "spec/spec_helper.rb"
39
- ]
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
40
20
 
41
- if s.respond_to? :specification_version then
42
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
43
- s.specification_version = 3
21
+ spec.add_dependency "nokogiri"
44
22
 
45
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
46
- s.add_development_dependency(%q<rspec>, [">= 0"])
47
- else
48
- s.add_dependency(%q<rspec>, [">= 0"])
49
- end
50
- else
51
- s.add_dependency(%q<rspec>, [">= 0"])
52
- end
23
+ spec.add_development_dependency "bundler", "~> 1.3"
24
+ spec.add_development_dependency "rake"
25
+ spec.add_development_dependency "rspec"
26
+ spec.add_development_dependency "webmock"
53
27
  end
data/lib/bible_gateway.rb CHANGED
@@ -1,12 +1,14 @@
1
+ # coding: utf-8
2
+ require 'bible_gateway/version'
1
3
  require 'open-uri'
2
4
  require 'nokogiri'
3
5
 
4
6
  class BibleGatewayError < StandardError; end
5
-
7
+
6
8
  class BibleGateway
7
9
  GATEWAY_URL = "http://www.biblegateway.com"
8
-
9
- VERSIONS = {
10
+
11
+ VERSIONS = {
10
12
  :new_international_version => "NIV",
11
13
  :new_american_standard_bible => "NASB",
12
14
  :the_message => "MSG",
@@ -28,17 +30,17 @@ class BibleGateway
28
30
  :new_international_version_uk => "NIVUK",
29
31
  :todays_new_international_version => "TNIV",
30
32
  }
31
-
33
+
32
34
  def self.versions
33
35
  VERSIONS.keys
34
36
  end
35
-
37
+
36
38
  attr_accessor :version
37
-
39
+
38
40
  def initialize(version = :king_james_version)
39
41
  self.version = version
40
42
  end
41
-
43
+
42
44
  def version=(version)
43
45
  raise BibleGatewayError, 'Unsupported version' unless VERSIONS.keys.include? version
44
46
  @version = version
@@ -47,7 +49,7 @@ class BibleGateway
47
49
  def lookup(passage)
48
50
  doc = Nokogiri::HTML(open(passage_url(passage)))
49
51
  scrape_passage(doc)
50
- end
52
+ end
51
53
 
52
54
  private
53
55
  def passage_url(passage)
@@ -55,17 +57,23 @@ class BibleGateway
55
57
  end
56
58
 
57
59
  def scrape_passage(doc)
58
- title = doc.css('h2')[0].content
60
+ container = doc.css('div#content')
61
+ title = container.css('h1')[0].content
59
62
  segment = doc.at('div.result-text-style-normal')
60
- segment.search('sup.xref').remove # remove cross reference links
63
+ segment.search('sup.crossreference').remove # remove cross reference links
61
64
  segment.search('sup.footnote').remove # remove footnote links
62
65
  segment.search("div.crossrefs").remove # remove cross references
63
66
  segment.search("div.footnotes").remove # remove footnotes
64
- segment.search('sup.versenum').each do |span|
67
+ segment.search("span.text").each do |span|
65
68
  text = span.content
66
- span.swap "<sup>#{text}</sup>"
69
+ span.swap text
70
+ end
71
+
72
+ segment.search('sup.versenum').each do |sup|
73
+ text = sup.content
74
+ sup.swap "<sup>#{text}</sup>"
67
75
  end
68
76
  content = segment.inner_html.gsub('<p></p>', '').gsub(/<!--.*?-->/, '').strip
69
77
  {:title => title, :content => content }
70
78
  end
71
- end
79
+ end
@@ -0,0 +1,3 @@
1
+ class BibleGateway
2
+ VERSION = "0.0.3"
3
+ end
@@ -1,21 +1,22 @@
1
- require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
1
+ # coding: utf-8
2
+ require "spec_helper"
2
3
 
3
4
  describe BibleGateway do
4
- it 'should have a list of versions' do
5
+ it "should have a list of versions" do
5
6
  BibleGateway.versions.should_not be_empty
6
7
  end
7
-
8
- describe 'setting the version' do
8
+
9
+ describe "setting the version" do
9
10
  it "should have a default version" do
10
11
  gateway = BibleGateway.new
11
12
  gateway.version.should == :king_james_version
12
13
  end
13
-
14
+
14
15
  it "should be able to set the version to use" do
15
16
  gateway = BibleGateway.new :english_standard_version
16
17
  gateway.version.should == :english_standard_version
17
18
  end
18
-
19
+
19
20
  it "should raise an exception for unknown version" do
20
21
  lambda { BibleGateway.new :unknown_version }.should raise_error(BibleGatewayError)
21
22
  end
@@ -31,23 +32,42 @@ describe BibleGateway do
31
32
  lambda { gateway.version = :unknown_version }.should raise_error(BibleGatewayError)
32
33
  end
33
34
  end
34
-
35
+
35
36
  describe "lookup" do
36
- it "should find the passage title" do
37
- stub_get "http://www.biblegateway.com/passage/?search=John%201:1&version=ESV", 'john_1_1.html'
38
- BibleGateway.new(:english_standard_version).lookup("John 1:1")[:title].should == "John 1:1 (English Standard Version)"
37
+ context "verse" do
38
+ before do
39
+ stub_get "http://www.biblegateway.com/passage/?search=John%201:1&version=ESV", "john_1_1.html"
40
+ end
41
+
42
+ it "should find the passage title" do
43
+ title = BibleGateway.new(:english_standard_version).lookup("John 1:1")[:title]
44
+ title.should == "John 1:1 (English Standard Version)"
45
+ end
46
+
47
+ it "should find and clean the passage content" do
48
+ content = BibleGateway.new(:english_standard_version).lookup("John 1:1")[:content]
49
+ content.should include("<h3>The Word Became Flesh</h3>")
50
+ content.should include("In the beginning was the Word, and the Word was with God, and the Word was God.")
51
+ end
39
52
  end
40
-
41
- it "should find and clean the passage content" do
42
- passage = "<h4>John 1</h4>\n<h5>The Word Became Flesh</h5> <sup>1</sup> In the beginning was the Word, and the Word was with God, and the Word was God."
43
- stub_get "http://www.biblegateway.com/passage/?search=John%201:1&version=ESV", 'john_1_1.html'
44
- result = BibleGateway.new(:english_standard_version).lookup("John 1:1")[:content]
45
- result.should include("<h4>John 1</h4>")
46
- result.should include("<h5>The Word Became Flesh</h5>")
47
- result.should include("<sup>1</sup>")
48
- result.should include("In the beginning was the Word, and the Word was with God, and the Word was God.")
49
- # result.should == passage # there are hidden characters in here that I need to track down
53
+
54
+ context "chapter" do
55
+ before do
56
+ stub_get "http://www.biblegateway.com/passage/?search=John%203&version=ESV", "john_3.html"
57
+ end
58
+
59
+ it "should find the passage title" do
60
+ title = BibleGateway.new(:english_standard_version).lookup("John 3")[:title]
61
+ title.should == "John 3 (English Standard Version)"
62
+ end
63
+
64
+ it "should find and clean the passage content" do
65
+ content = BibleGateway.new(:english_standard_version).lookup("John 3")[:content]
66
+ content.should include("<h3>You Must Be Born Again</h3>")
67
+ content.should include("<h3>For God So Loved the World</h3>")
68
+ content.should include("For God so loved the world,that he gave his only Son, that whoever believes in him should not perish but have eternal life.")
69
+ end
50
70
  end
51
71
  end
52
-
72
+
53
73
  end
@@ -1,34 +1,41 @@
1
- HTTP/1.1 200 OK
2
- Date: Tue, 08 Sep 2009 20:20:53 GMT
3
- Server: Apache/2.0
4
- X-Powered-By: PHP/4.4.7
5
- Set-Cookie: bg_id=986c85fbc4411d7452042f9587c06a4f; path=/; domain=.biblegateway.com
6
- Vary: Accept-Encoding
7
- Transfer-Encoding: chunked
8
- Content-Type: text/html; charset=UTF-8
9
-
10
1
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
11
2
  <html xmlns="http://www.w3.org/1999/xhtml">
12
3
  <head>
13
- <title>John 1:1 - Passage&nbsp;Lookup - English Standard Version - BibleGateway.com</title>
14
- <link rel="canonical" href="http://www.biblegateway.com/passage/?search=John+1%3A1&amp;version=ESV" />
15
4
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
16
- <meta name="description" content="The Word Became Flesh Gen 1:1; Col 1:17; 1 John 1:1; Rev 1:4, 8, 17; 3:14; 21:6; 22:13 In the beginning wasRev 19:13; Heb 4:12; 1 John 1:1 the Word," />
17
- <link rel="favorite icon" href="http://static.bgcdn.com/favicon.ico" type="image/x-icon" />
18
- <link rel="search" type="application/opensearchdescription+xml" title="Bible Gateway" href="http://static.bgcdn.com/resources/opensearch/bgsearch.xml">
5
+ <title>John 1:1 ESV - The Word Became Flesh - In the - Bible Gateway</title>
6
+ <link rel="canonical" href="http://www.biblegateway.com/passage/?search=John+1%3A1&amp;version=ESV" />
7
+ <meta property="og:title" content="Bible Gateway passage: John 1:1 - English Standard Version"/>
8
+ <meta property="og:type" content="bible_passage"/>
9
+ <meta property="og:url" content="http://www.biblegateway.com/passage/?search=John+1%3A1&amp;version=ESV"/>
10
+ <meta property="og:image" content="http://static5.bgcdn.com/images/logos/logo_transbg-50.png"/>
11
+ <meta property="og:site_name" content="Bible Gateway"/>
12
+ <meta property="og:description" content="The Word Became Flesh - In the beginning was the Word, and the Word was with God, and the Word was God."/>
13
+ <meta name="twitter:card" content="summary" />
14
+ <meta name="twitter:site" content="@biblegateway" />
15
+ <meta name="twitter:url" content="http://www.biblegateway.com/passage/?search=John+1%3A1&amp;version=ESV" />
16
+ <meta name="twitter:title" content="John 1:1 (ESV)" />
17
+ <meta name="twitter:description" content="The Word Became Flesh - In the beginning was the Word, and the Word was with God, and the Word was God." />
18
+ <meta name="description" content="The Word Became Flesh - In the beginning was the Word, and the Word was with God, and the Word was God." />
19
+ <meta http-equiv="X-UA-Compatible" content="IE=edge" /><meta name="application-name" content="BibleGateway" /><meta name="msapplication-tooltip" content="A searchable online Bible in over 100 versions and 50 languages" /><meta name="msapplication-starturl" content="/" /><meta name="msapplication-task" content="name=Passage Lookup;action-uri=http://www.biblegateway.com/passage/;icon-uri=/favicon.ico" /><meta name="msapplication-task" content="name=Keyword Search;action-uri=http://www.biblegateway.com/keyword/;icon-uri=/favicon.ico" /><meta name="msapplication-task" content="name=Topical Index;action-uri=http://www.biblegateway.com/topical/;icon-uri=/favicon.ico" /><meta name="msapplication-task" content="name=Reading Plans;action-uri=http://www.biblegateway.com/reading-plans/;icon-uri=/favicon.ico" />
20
+
21
+ <link rel="favorite icon" href="http://static5.bgcdn.com/favicon.ico" type="image/x-icon" />
22
+ <link rel="search" type="application/opensearchdescription+xml" title="Bible Gateway" href="http://static5.bgcdn.com/resources/opensearch/bgsearch.xml?4d1ef6e8">
19
23
  <!-- STYLESHEETS -->
20
- <style type="text/css" media="screen">@import "http://static.bgcdn.com/includes/css/default.css?0831-2";</style>
21
- <link rel="stylesheet" type="text/css" media="print" href="http://static.bgcdn.com/includes/css/print.css" />
22
- <link rel="stylesheet" type="text/css" media="handheld" href="http://static.bgcdn.com/includes/css/handheld.css" />
23
- <link rel="alternate stylesheet" type="text/css" media="all" title="xsmall" href="http://static.bgcdn.com/includes/css/xsmall.css" />
24
- <link rel="alternate stylesheet" type="text/css" media="all" title="small" href="http://static.bgcdn.com/includes/css/small.css" />
25
- <link rel="stylesheet" type="text/css" media="all" title="medium" href="http://static.bgcdn.com/includes/css/medium.css" />
26
- <link rel="alternate stylesheet" type="text/css" media="all" title="large" href="http://static.bgcdn.com/includes/css/large.css" />
27
- <link rel="alternate stylesheet" type="text/css" media="all" title="xlarge" href="http://static.bgcdn.com/includes/css/xlarge.css" />
28
- <link rel="stylesheet" type="text/css" media="all" href="http://static.bgcdn.com/includes/css/bgblog.css" />
29
- <link rel="alternate" type="application/atom+xml" title="Verse of the day feed" href="http://www.biblegateway.com/votd/get/?format=atom&version=31" /><!-- JAVASCRIPT -->
30
- <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js'></script>
31
- <script type="text/javascript" language="javascript">
24
+ <link rel="stylesheet" type="text/css" media="screen" href="http://static5.bgcdn.com/includes/css/bg.min.css?4d1ef6e8" />
25
+ <link rel="stylesheet" type="text/css" media="print" href="http://static5.bgcdn.com/includes/css/print.min.css?4d1ef6e8" />
26
+
27
+ <link rel="stylesheet" type="text/css" media="handheld" href="http://static5.bgcdn.com/includes/css/handheld.css" />
28
+ <meta name="viewport" content="width=980"/>
29
+ <link rel="alternate" type="application/atom+xml" title="Verse of the day feed" href="http://www.biblegateway.com/votd/get/?format=atom&amp;version=ESV" />
30
+ <style type="text/css">
31
+ </style>
32
+
33
+ <link rel="apple-touch-icon" href="http://static5.bgcdn.com/images/apple-touch-icon.png?4d1ef6e8"/>
34
+
35
+ <!-- JAVASCRIPT -->
36
+ <script type="text/javascript" src='//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script>
37
+ <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/jquery-ui.min.js"></script>
38
+ <script type="text/javascript">
32
39
  // <![CDATA[
33
40
  var prefs = new Array;
34
41
 
@@ -36,43 +43,32 @@ prefs['searches_includeapocrypha'] = 'no';
36
43
  prefs['fontsize'] = 'medium';
37
44
  prefs['language'] = 'en';
38
45
  prefs['default_version_display'] = 'all';
39
- prefs['default_version'] = '31';
46
+ prefs['default_version'] = 'ESV';
40
47
  prefs['default_version_overrides'] = 'no';
41
48
  prefs['quicksearch_search'] = '';
42
- prefs['pslookup_search1'] = '';
43
- prefs['pslookup_search2'] = '';
44
- prefs['pslookup_search3'] = '';
45
- prefs['pslookup_search4'] = '';
46
- prefs['pslookup_search5'] = '';
47
- prefs['pslookup_version1'] = '31';
48
- prefs['pslookup_version2'] = '';
49
- prefs['pslookup_version3'] = '';
50
- prefs['pslookup_version4'] = '';
51
- prefs['pslookup_version5'] = '';
52
49
  prefs['pslookup_language1'] = 'en';
53
50
  prefs['pslookup_language2'] = '';
54
51
  prefs['pslookup_language3'] = '';
55
52
  prefs['pslookup_language4'] = '';
56
53
  prefs['pslookup_language5'] = '';
54
+ prefs['pslookup_count'] = '1';
57
55
  prefs['pslookup_showmoresearches'] = 'closed';
58
56
  prefs['pslookup_showversions'] = 'open';
59
57
  prefs['pslookup_showmoreversions'] = 'closed';
60
58
  prefs['pslookup_showoptions'] = 'open';
61
59
  prefs['pslookup_showfootnotes'] = 'yes';
62
- prefs['pslookup_showxrefs'] = 'yes';
60
+ prefs['pslookup_showxrefs'] = 'no';
63
61
  prefs['pslookup_showwoj'] = 'no';
64
- prefs['pslookup_multilayout'] = 'rows';
65
- prefs['pslookup_multisort'] = 'version';
62
+ prefs['pslookup_showversenums'] = 'yes';
63
+ prefs['pslookup_showheadings'] = 'yes';
64
+ prefs['pslookup_showindent'] = 'no';
65
+ prefs['pslookup_multilayout'] = 'columns';
66
+ prefs['pslookup_multisort'] = 'passage';
66
67
  prefs['pslookup_embed-versenum'] = 'true';
67
68
  prefs['pslookup_embed-xref'] = 'false';
68
69
  prefs['pslookup_embed-footnote'] = 'false';
69
70
  prefs['pslookup_embed-heading'] = 'false';
70
71
  prefs['keysearch_search'] = '';
71
- prefs['keysearch_version1'] = '31';
72
- prefs['keysearch_version2'] = '';
73
- prefs['keysearch_version3'] = '';
74
- prefs['keysearch_version4'] = '';
75
- prefs['keysearch_version5'] = '';
76
72
  prefs['keysearch_language1'] = 'en';
77
73
  prefs['keysearch_language'] = 'en';
78
74
  prefs['keysearch_bookset'] = '';
@@ -99,400 +95,894 @@ prefs['audio_chapter'] = '';
99
95
  prefs['dict_source'] = '1';
100
96
  prefs['dict_search'] = '';
101
97
  prefs['dict_search_type'] = 'any';
98
+ prefs['pslookup_search1'] = '';
99
+ prefs['pslookup_search2'] = '';
100
+ prefs['pslookup_search3'] = '';
101
+ prefs['pslookup_search4'] = '';
102
+ prefs['pslookup_search5'] = '';
103
+ prefs['pslookup_version1'] = 'NIV';
104
+ prefs['pslookup_version2'] = '';
105
+ prefs['pslookup_version3'] = '';
106
+ prefs['pslookup_version4'] = '';
107
+ prefs['pslookup_version5'] = '';
108
+ prefs['keysearch_version1'] = '31';
109
+ prefs['keysearch_version2'] = '';
110
+ prefs['keysearch_version3'] = '';
111
+ prefs['keysearch_version4'] = '';
112
+ prefs['keysearch_version5'] = '';
113
+ mobile = false;
102
114
  if (document.images) { self.name = 'bgmain'; }
103
115
  // ]]>
104
116
 
105
- function slideleft() {
106
- elements = document.getElementsByTagName('body');
107
- body = elements[0];
108
- body.style.left = '100px';
109
- console.log('moved?');
110
- }
111
117
  </script>
112
- </head>
113
118
 
114
- <body bgcolor="ffffff">
115
- <div id='body'>
116
- <a name='intersite'></a>
119
+ <!-- Google Analytics -->
120
+ <script type="text/javascript">
117
121
 
122
+ var _gaq = _gaq || [];
123
+ _gaq.push(['_setAccount', 'UA-3008784-8']);
124
+ _gaq.push(['_trackPageview']);
125
+ _gaq.push(['_trackPageLoadTime']);
126
+ _gaq.push(['_setDomainName', '.biblegateway.com']);
118
127
 
119
- <!-- BRAND -->
120
- <div id="brand" style="background-image: url(http://static.bgcdn.com/languages/en/images/logo.gif); background-repeat: no-repeat;">
121
- <a href="/">
122
- <img src="http://static.bgcdn.com/languages/en/images/logo_whitebg.png" alt="BibleGateway.com" border="0" />
123
- </a>
124
- </div>
128
+ (function() {
129
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
130
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
131
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
132
+ })();
125
133
 
134
+ </script>
135
+ <script type="text/javascript">
136
+ var addthis_share = {'templates' : {'twitter' : 'The Word Became Flesh - In the beginning was the Word, and the Word was with...John 1:1 {{url}} from #BibleGateway'}}
137
+ var addthis_config = {'data_ga_property' : 'UA-3008784-8', 'data_ga_social' : true}
138
+ </script>
139
+ <script type="text/javascript" src="//s7.addthis.com/js/250/addthis_widget.js#pubid=xa-4e31fda0070abf8c"></script>
140
+ <script type="text/javascript" src="http://static5.bgcdn.com/includes/javascript/scripts.min.js?4d1ef6e8"></script><script type='text/javascript'>
141
+ var googletag = googletag || {};
142
+ googletag.cmd = googletag.cmd || [];
143
+ (function() {
144
+ var gads = document.createElement('script');
145
+ gads.async = true;
146
+ gads.type = 'text/javascript';
147
+ var useSSL = 'https:' == document.location.protocol;
148
+ gads.src = (useSSL ? 'https:' : 'http:') +
149
+ '//www.googletagservices.com/tag/js/gpt.js';
150
+ var node = document.getElementsByTagName('script')[0];
151
+ node.parentNode.insertBefore(gads, node);
152
+ })();
153
+ </script>
126
154
 
127
- <!-- SITE OPTIONS -->
128
- <table id="site-options" cellpadding="0" cellspacing="0" border="0"><tr>
129
- <!-- QUICKSEARCH -->
130
- <td>
131
- <form name="quicksearch" action="/quicksearch/" method="get">
132
- <img src="http://static.bgcdn.com/images/search_icon.gif" width="17" height="21" alt="" />
133
- <input type="text" name="quicksearch" value="" onblur="setUpdatePrefs('quicksearch_search',this.value)" />
134
- <input type="image" src="http://static.bgcdn.com/images/search_button.gif" title="Search" />
135
- </form>
136
- </td>
137
- <!-- FONT OPTIONS -->
138
- <td>
139
- <a href="/passage/index.php?search=John%201:1&version=ESV" style="font-size:10px;" title="extra small"
140
- class="unselected" onclick="setUpdatePrefs('fontsize','xsmall');">A</a>
141
- <a href="/passage/index.php?search=John%201:1&version=ESV" style="font-size:12px;" title="small"
142
- class="unselected" onclick="setUpdatePrefs('fontsize','small');">A</a>
143
- <a href="/passage/index.php?search=John%201:1&version=ESV" style="font-size:14px;" title="medium"
144
- class="selected" onclick="setUpdatePrefs('fontsize','medium');">A</a>
145
- <a href="/passage/index.php?search=John%201:1&version=ESV" style="font-size:16px;" title="large"
146
- class="unselected" onclick="setUpdatePrefs('fontsize','large');">A</a>
147
- <a href="/passage/index.php?search=John%201:1&version=ESV" style="font-size:18px;" title="extra large"
148
- class="unselected" onclick="setUpdatePrefs('fontsize','xlarge');">A</a>
149
- </td>
150
-
151
- <!-- LANGUAGE OPTIONS -->
152
- <td>
153
- <form method="post" action="/languages/update.php">
154
- <input type="hidden" name="url" value="/passage/index.php?search=John%201:1&version=ESV" />
155
- <img src="http://static.bgcdn.com/languages/en/images/flag.gif" alt="en" />
156
- <select name="language" class="txt-sm" onchange="setUpdatePrefs('language',this.value); this.form.submit();">
157
- <option value='en' selected="selected">English (EN) </option><option value='es' >Español (ES) </option></select>
158
- <noscript>
159
- <input type="image" src="/images/search_button.gif" />
160
- </noscript>
161
- </form>
162
- </td>
163
- </tr></table>
164
-
165
- <!-- PAGE OPTIONS -->
166
- <div id="page-options">
167
-
168
- <!--
169
- <a href="/share/index.php?url=%2Fpassage%2Findex.php%3Fsearch%3DJohn%25201%3A1%26version%3DESV">
170
- <img src="/images/buttons/email_sm.gif" width="12" height="10" alt="" />
171
- Email this page</a>
172
- -->
173
- <a href="/passage/index.php?search=John%201:1&version=ESV&interface=print" rel="nofollow">
174
- » Printer-friendly page</a>
175
- <a href="http://mobile.biblegateway.com/passage/index.php?search=John%201:1&version=ESV" rel="nofollow">
176
- » Mobile-friendly page</a>
155
+ <script type='text/javascript'>
156
+ googletag.cmd.push(function() {
157
+ googletag.pubads().enableSingleRequest();
158
+ googletag.enableServices();
159
+ });
160
+ var BGOasPositions = [];
161
+ BGOasPositions.push('Top');
162
+ BGOasPositions.push('Left1');
163
+ var BGOasPage = 'bible-esv-http';
164
+ var oasUrl = 'http://oascentral.salemweb.net/RealMedia/ads/';
165
+ var oasSite = 'www.biblegateway.com';
166
+ var oasSitePage = oasSite + '/' + BGOasPage;
167
+ var oasPositionList = BGOasPositions.join(',');
168
+ var oasQuery = window.location.search.length > 1 ? window.location.search.substr(1) : '';
169
+ var oasRandom = Math.floor(Math.random() * 1E9);
170
+ var oasAd = function (position) { if (typeof (OAS_RICH) != 'undefined') OAS_RICH(position); };
171
+ document.write('<scr' + 'ipt type="text/javascript" src="' + oasUrl + 'adstream_mjx.ads/' + oasSitePage + '/1' + oasRandom + '@' + oasPositionList + '?' + oasQuery + '"></scr' + 'ipt>');
172
+ </script>
177
173
 
178
- </div>
174
+ </head>
179
175
 
180
- <div id="content">
181
- <img id="spacer" src="http://static.bgcdn.com/images/spacer.gif" width="1" height="325" alt="" align="right" />
176
+ <body class="with-alert">
177
+ <div class="max_width">
178
+ <div class="min_width">
179
+ <div id="banner">
180
+ <!-- BRAND -->
181
+ <div id="brand">
182
+ <h1>
183
+ <a href="/">Bible Gateway</a>
184
+ </h1>
185
+ </div>
186
+ <!-- FONT OPTIONS -->
187
+ <div id="controls">
182
188
 
189
+ <div class="text-controls">
190
+ <a href="/languages/update/?url=%2Fpassage%2F%3Fsearch%3Djohn%25201%3A1%26version%3DESV&amp;language=es" onclick="changeLanguages('es', true); return false;" >En Español</a>
191
+ </div>
192
+ <div id="font-change-controls" class="text-controls">
193
+ <a href="#" style="font-size:10px;" title="extra small"
194
+ onclick="changeFontSize('xsmall', 'medium');return false;">A</a>
195
+ <a href="#" style="font-size:12px;" title="small"
196
+ onclick="changeFontSize('small', 'medium');return false;">A</a>
197
+ <a href="#" style="font-size:14px;" title="medium"
198
+ class="selected" onclick="changeFontSize('medium', 'medium');return false;">A</a>
199
+ <a href="#" style="font-size:16px;" title="large"
200
+ onclick="changeFontSize('large', 'medium');return false;">A</a>
201
+ <a href="#" style="font-size:18px;" title="extra large"
202
+ onclick="changeFontSize('xlarge', 'medium');return false;">A</a>
203
+ </div>
204
+ <div id="print-control">
205
+ <a href="/passage/?search=john%201:1&amp;version=ESV&amp;interface=print" title="Printer-friendly page" rel="nofollow">
206
+ <img src="http://static5.bgcdn.com/images/icons/icon-printer.png?4d1ef6e8" alt="Printer-friendly page" />
207
+ </a>
208
+ </div>
209
+
210
+ <div id="mobile-control">
211
+ <a href="http://mobile.biblegateway.com/passage/?search=john%201:1&amp;version=ESV" title="Mobile-friendly page" rel="nofollow">
212
+ <img src="http://static5.bgcdn.com/images/icons/icon-mobile.png?4d1ef6e8" alt="Mobile-friendly page"/>
213
+ </a>
214
+ </div>
215
+ </div>
216
+ <div class="txt-sm" id="social-media-links">
217
+ <div class="social-media-text">Follow us</div>
218
+ <div class="social-media-imgs">
219
+ <a rel="nofollow" href="https://twitter.com/biblegateway" target="_blank" title="Bible Gateway on Twitter"><img src="http://static5.bgcdn.com/images/social/21_twitter.png" alt="Bible Gateway on Twitter" /></a>
220
+ <a rel="nofollow" href="https://www.facebook.com/BibleGateway" target="_blank" title="Bible Gateway on Facebook"><img src="http://static5.bgcdn.com/images/social/21_fb.png" alt="Bible Gateway on Facebook" /></a>
221
+ <a rel="nofollow" href="https://plus.google.com/+BibleGateway/" target="_blank" title="Bible Gateway on Google+"><img src="http://static5.bgcdn.com/images/social/21_gplus.png" alt="Bible Gateway on Google+" /></a>
222
+ </div>
223
+ </div>
224
+ </div>
225
+ <div id="body" class="passage-body">
183
226
  <!-- SITE NAVIGATION -->
184
- <div id="navigation">
185
- <hr />
186
- <h3>BibleGateway.com navigation</h3>
187
- <ul>
188
- <li id="nav01"><a href="/" title="Return to the BibleGateway.com homepage" style="background-image:url(http://static.bgcdn.com/languages/en/images/nav.gif);"><span>Home</span></a></li>
189
- <li id="nav02"><a href="/passage/" title="Look for a passage in one or more Bible versions" style="background-image:url(http://static.bgcdn.com/languages/en/images/nav.gif);"><span>Passage&nbsp;Lookup</span></a></li>
190
- <li id="nav03"><a href="/keyword/" title="Search for keywords or phrases in one or more Bible versions" style="background-image:url(http://static.bgcdn.com/languages/en/images/nav.gif);"><span>Keyword&nbsp;Search</span></a></li>
191
- <li id="nav04"><a href="/topical/" title="Search the Bible by topic" style="background-image:url(http://static.bgcdn.com/languages/en/images/nav.gif);"><span>Topical&nbsp;Index</span></a></li>
192
- <li id="nav05"><a href="/versions/" title="Bible versions available on BibleGateway.com" style="background-image:url(http://static.bgcdn.com/languages/en/images/nav.gif);"><span>Available Versions</span></a></li>
193
- <li id="nav06"><a href="/resources/" title="Additional Bible resources" style="background-image:url(http://static.bgcdn.com/languages/en/images/nav.gif);"><span>Additional Resources</span></a></li>
194
- <li id="nav07"><a href="/resources/readingplans/" title="Plans for reading through the bible" style="background-image:url(http://static.bgcdn.com/languages/en/images/nav.gif);"><span>Reading Plans</span></a></li>
195
- <li id="nav08"><a href="/usage/" title="How to use BibleGateway.com on your own site" style="background-image:url(http://static.bgcdn.com/languages/en/images/nav.gif);"><span>Use On Your Website</span></a></li>
196
- <li id="nav09"><a href="/about/" title="Find out more about BibleGateway.com" style="background-image:url(http://static.bgcdn.com/languages/en/images/nav.gif);"><span>About BibleGateway.com</span></a></li>
197
- <li id="nav10"><a href="/preferences/" title="Set your preferences for BibleGateway.com" style="background-image:url(http://static.bgcdn.com/languages/en/images/nav.gif);"><span>Preferences</span></a></li>
198
- <li id="nav11"><a href="/blog/" title="Keep up with the BibleGateway.com" style="background-image:url(http://static.bgcdn.com/languages/en/images/nav.gif);"><span>Blog</span></a></li>
199
- <li id="nav12"><a href="/help/" title="Frequently Asked Questions" style="background-image:url(http://static.bgcdn.com/languages/en/images/nav.gif);"><span>Help</span></a></li>
200
-
201
- </ul>
202
- </div>
227
+
228
+ <div id="main-col-wrapper">
229
+ <div id="main-col">
230
+ <div id="search-box">
231
+ <div id='search-main'>
232
+ <div id='search-header'>
233
+ <div id='search-title' class="txt-big">Search</div>
234
+ <span id='search-info' class="txt-sm">Enter the Bible passage<strong> (e.g., John 3:16)</strong>, keyword<strong> (e.g., Jesus, prophet,
235
+ etc.)</strong> or topic <strong>(e.g., salvation)</strong></span>
236
+ </div>
237
+ <form action='/quicksearch/' id='quick-search-form' method='get'>
238
+ <input id="search" name="quicksearch" type="text" value="john 1:1" />
239
+ <select class="translation-dropdown" name="qs_version" onchange="setUpdatePrefs('default_version',this.value)"><option class="lang" value="AMU">---Amuzgo de Guerrero (AMU)---</option>
240
+ <option value="AMU" >Amuzgo de Guerrero</option>
241
+ <option class="spacer" value="AMU">&nbsp;</option>
242
+ <option class="lang" value="ERV-AR">---العربية (AR)---</option>
243
+ <option value="ERV-AR" >Arabic Bible: Easy-to-Read Version</option>
244
+ <option value="ALAB" >Arabic Life Application Bible</option>
245
+ <option class="spacer" value="ALAB">&nbsp;</option>
246
+ <option class="lang" value="ERV-AWA">---अवधी (AWA)---</option>
247
+ <option value="ERV-AWA" >Awadhi Bible: Easy-to-Read Version</option>
248
+ <option class="spacer" value="ERV-AWA">&nbsp;</option>
249
+ <option class="lang" value="BG1940">---Български (BG)---</option>
250
+ <option value="BG1940" >1940 Bulgarian Bible</option>
251
+ <option value="BULG" >Bulgarian Bible</option>
252
+ <option value="ERV-BG" >Bulgarian New Testament: Easy-to-Read Version</option>
253
+ <option value="BPB" >Bulgarian Protestant Bible</option>
254
+ <option class="spacer" value="BPB">&nbsp;</option>
255
+ <option class="lang" value="CCO">---Chinanteco de Comaltepec (CCO)---</option>
256
+ <option value="CCO" >Chinanteco de Comaltepec</option>
257
+ <option class="spacer" value="CCO">&nbsp;</option>
258
+ <option class="lang" value="APSD-CEB">---Cebuano (CEB)---</option>
259
+ <option value="APSD-CEB" >Ang Pulong Sa Dios</option>
260
+ <option class="spacer" value="APSD-CEB">&nbsp;</option>
261
+ <option class="lang" value="CHR">---ᏣᎳᎩ ᎦᏬᏂᎯᏍ (CHR)---</option>
262
+ <option value="CHR" >Cherokee New Testament</option>
263
+ <option class="spacer" value="CHR">&nbsp;</option>
264
+ <option class="lang" value="CKW">---Cakchiquel Occidental (CKW)---</option>
265
+ <option value="CKW" >Cakchiquel Occidental</option>
266
+ <option class="spacer" value="CKW">&nbsp;</option>
267
+ <option class="lang" value="B21">---Čeština (CS)---</option>
268
+ <option value="B21" >Bible 21</option>
269
+ <option value="SNC" >Slovo na cestu</option>
270
+ <option class="spacer" value="SNC">&nbsp;</option>
271
+ <option class="lang" value="BPH">---Dansk (DA)---</option>
272
+ <option value="BPH" >Bibelen på hverdagsdansk</option>
273
+ <option value="DN1933" >Dette er Biblen på dansk</option>
274
+ <option class="spacer" value="DN1933">&nbsp;</option>
275
+ <option class="lang" value="HOF">---Deutsch (DE)---</option>
276
+ <option value="HOF" >Hoffnung für Alle</option>
277
+ <option value="LUTH1545" >Luther Bibel 1545</option>
278
+ <option value="NGU-DE" >Neue Genfer Übersetzung</option>
279
+ <option value="SCH1951" >Schlachter 1951</option>
280
+ <option value="SCH2000" >Schlachter 2000</option>
281
+ <option class="spacer" value="SCH2000">&nbsp;</option>
282
+ <option class="lang" value="KJ21">---English (EN)---</option>
283
+ <option value="KJ21" >21st Century King James Version</option>
284
+ <option value="ASV" >American Standard Version</option>
285
+ <option value="AMP" >Amplified Bible</option>
286
+ <option value="CEB" >Common English Bible</option>
287
+ <option value="CJB" >Complete Jewish Bible</option>
288
+ <option value="CEV" >Contemporary English Version</option>
289
+ <option value="DARBY" >Darby Translation</option>
290
+ <option value="DRA" >Douay-Rheims 1899 American Edition</option>
291
+ <option value="ERV" >Easy-to-Read Version</option>
292
+ <option value="ESV" selected="selected" >English Standard Version</option>
293
+ <option value="ESVUK" >English Standard Version Anglicised</option>
294
+ <option value="EXB" >Expanded Bible</option>
295
+ <option value="GNV" >1599 Geneva Bible</option>
296
+ <option value="GW" >GOD’S WORD Translation</option>
297
+ <option value="GNT" >Good News Translation</option>
298
+ <option value="HCSB" >Holman Christian Standard Bible</option>
299
+ <option value="PHILLIPS" >J.B. Phillips New Testament</option>
300
+ <option value="JUB" >Jubilee Bible 2000</option>
301
+ <option value="KJV" >King James Version</option>
302
+ <option value="AKJV" >Authorized (King James) Version</option>
303
+ <option value="KNOX" >Knox Bible</option>
304
+ <option value="LEB" >Lexham English Bible</option>
305
+ <option value="MSG" >The Message</option>
306
+ <option value="MOUNCE" >Mounce Reverse-Interlinear New Testament</option>
307
+ <option value="NOG" >Names of God Bible</option>
308
+ <option value="NASB" >New American Standard Bible</option>
309
+ <option value="NCV" >New Century Version</option>
310
+ <option value="NET" >New English Translation (NET Bible)</option>
311
+ <option value="NIRV" >New International Reader&#039;s Version</option>
312
+ <option value="NIV" >New International Version</option>
313
+ <option value="NIVUK" >New International Version - UK</option>
314
+ <option value="NKJV" >New King James Version</option>
315
+ <option value="NLV" >New Life Version</option>
316
+ <option value="NLT" >New Living Translation</option>
317
+ <option value="NRSV" >New Revised Standard Version</option>
318
+ <option value="NRSVA" >New Revised Standard Version, Anglicised</option>
319
+ <option value="NRSVACE" >New Revised Standard Version, Anglicised Catholic Edition</option>
320
+ <option value="NRSVCE" >New Revised Standard Version Catholic Edition</option>
321
+ <option value="OJB" >Orthodox Jewish Bible</option>
322
+ <option value="RSV" >Revised Standard Version</option>
323
+ <option value="RSVCE" >Revised Standard Version Catholic Edition</option>
324
+ <option value="VOICE" >The Voice</option>
325
+ <option value="WEB" >World English Bible</option>
326
+ <option value="WE" >Worldwide English (New Testament)</option>
327
+ <option value="WYC" >Wycliffe Bible</option>
328
+ <option value="YLT" >Young&#039;s Literal Translation</option>
329
+ <option class="spacer" value="YLT">&nbsp;</option>
330
+ <option class="lang" value="LBLA">---Español (ES)---</option>
331
+ <option value="LBLA" >La Biblia de las Américas</option>
332
+ <option value="DHH" >Dios Habla Hoy</option>
333
+ <option value="JBS" >Jubilee Bible 2000 (Spanish)</option>
334
+ <option value="NBLH" >Nueva Biblia Latinoamericana de Hoy</option>
335
+ <option value="NTV" >Nueva Traducción Viviente</option>
336
+ <option value="NVI" >Nueva Versión Internacional</option>
337
+ <option value="CST" >Nueva Versión Internacional (Castilian)</option>
338
+ <option value="PDT" >Palabra de Dios para Todos</option>
339
+ <option value="BLP" >La Palabra (España)</option>
340
+ <option value="BLPH" >La Palabra (Hispanoamérica)</option>
341
+ <option value="RVC" >Reina Valera Contemporánea</option>
342
+ <option value="RVR1960" >Reina-Valera 1960</option>
343
+ <option value="RVR1977" >Reina Valera 1977</option>
344
+ <option value="RVR1995" >Reina-Valera 1995</option>
345
+ <option value="RVA" >Reina-Valera Antigua</option>
346
+ <option value="TLA" >Traducción en lenguaje actual</option>
347
+ <option class="spacer" value="TLA">&nbsp;</option>
348
+ <option class="lang" value="R1933">---Suomi (FI)---</option>
349
+ <option value="R1933" >Raamattu 1933/38</option>
350
+ <option class="spacer" value="R1933">&nbsp;</option>
351
+ <option class="lang" value="BDS">---Français (FR)---</option>
352
+ <option value="BDS" >La Bible du Semeur</option>
353
+ <option value="LSG" >Louis Segond</option>
354
+ <option value="NEG1979" >Nouvelle Edition de Genève – NEG1979</option>
355
+ <option value="SG21" >Segond 21</option>
356
+ <option class="spacer" value="SG21">&nbsp;</option>
357
+ <option class="lang" value="TR1550">---Κοινη (GRC)---</option>
358
+ <option value="TR1550" >1550 Stephanus New Testament</option>
359
+ <option value="WHNU" >1881 Westcott-Hort New Testament</option>
360
+ <option value="TR1894" >1894 Scrivener New Testament</option>
361
+ <option value="SBLGNT" >SBL Greek New Testament</option>
362
+ <option class="spacer" value="SBLGNT">&nbsp;</option>
363
+ <option class="lang" value="HHH">---עיברית (HE)---</option>
364
+ <option value="HHH" >Habrit Hakhadasha/Haderekh</option>
365
+ <option value="WLC" >The Westminster Leningrad Codex</option>
366
+ <option class="spacer" value="WLC">&nbsp;</option>
367
+ <option class="lang" value="ERV-HI">---हिन्दी (HI)---</option>
368
+ <option value="ERV-HI" >Hindi Bible: Easy-to-Read Version</option>
369
+ <option class="spacer" value="ERV-HI">&nbsp;</option>
370
+ <option class="lang" value="HLGN">---Ilonggo (HIL)---</option>
371
+ <option value="HLGN" >Ang Pulong Sang Dios</option>
372
+ <option class="spacer" value="HLGN">&nbsp;</option>
373
+ <option class="lang" value="CRO">---Hrvatski (HR)---</option>
374
+ <option value="CRO" >Croatian Bible</option>
375
+ <option class="spacer" value="CRO">&nbsp;</option>
376
+ <option class="lang" value="HCV">---Kreyòl ayisyen (HT)---</option>
377
+ <option value="HCV" >Haitian Creole Version</option>
378
+ <option class="spacer" value="HCV">&nbsp;</option>
379
+ <option class="lang" value="KAR">---Magyar (HU)---</option>
380
+ <option value="KAR" >Hungarian Károli</option>
381
+ <option value="ERV-HU" >Hungarian Bible: Easy-to-Read Version</option>
382
+ <option value="NT-HU" >Hungarian New Translation</option>
383
+ <option class="spacer" value="NT-HU">&nbsp;</option>
384
+ <option class="lang" value="HWP">---Hawai‘i Pidgin (HWC)---</option>
385
+ <option value="HWP" >Hawai‘i Pidgin</option>
386
+ <option class="spacer" value="HWP">&nbsp;</option>
387
+ <option class="lang" value="ICELAND">---Íslenska (IS)---</option>
388
+ <option value="ICELAND" >Icelandic Bible</option>
389
+ <option class="spacer" value="ICELAND">&nbsp;</option>
390
+ <option class="lang" value="BDG">---Italiano (IT)---</option>
391
+ <option value="BDG" >La Bibbia della Gioia</option>
392
+ <option value="CEI" >Conferenza Episcopale Italiana</option>
393
+ <option value="LND" >La Nuova Diodati</option>
394
+ <option value="NR1994" >Nuova Riveduta 1994</option>
395
+ <option value="NR2006" >Nuova Riveduta 2006</option>
396
+ <option class="spacer" value="NR2006">&nbsp;</option>
397
+ <option class="lang" value="JAC">---Jacalteco, Oriental (JAC)---</option>
398
+ <option value="JAC" >Jacalteco, Oriental</option>
399
+ <option class="spacer" value="JAC">&nbsp;</option>
400
+ <option class="lang" value="KEK">---Kekchi (KEK)---</option>
401
+ <option value="KEK" >Kekchi</option>
402
+ <option class="spacer" value="KEK">&nbsp;</option>
403
+ <option class="lang" value="VULGATE">---Latina (LA)---</option>
404
+ <option value="VULGATE" >Biblia Sacra Vulgata</option>
405
+ <option class="spacer" value="VULGATE">&nbsp;</option>
406
+ <option class="lang" value="MAORI">---Māori (MI)---</option>
407
+ <option value="MAORI" >Maori Bible</option>
408
+ <option class="spacer" value="MAORI">&nbsp;</option>
409
+ <option class="lang" value="MNT">---Македонски (MK)---</option>
410
+ <option value="MNT" >Macedonian New Testament</option>
411
+ <option class="spacer" value="MNT">&nbsp;</option>
412
+ <option class="lang" value="ERV-MR">---मराठी (MR)---</option>
413
+ <option value="ERV-MR" >Marathi Bible: Easy-to-Read Version</option>
414
+ <option class="spacer" value="ERV-MR">&nbsp;</option>
415
+ <option class="lang" value="MVC">---Mam, Central (MVC)---</option>
416
+ <option value="MVC" >Mam, Central</option>
417
+ <option class="spacer" value="MVC">&nbsp;</option>
418
+ <option class="lang" value="MVJ">---Mam, Todos Santos (MVJ)---</option>
419
+ <option value="MVJ" >Mam de Todos Santos Chuchumatán</option>
420
+ <option class="spacer" value="MVJ">&nbsp;</option>
421
+ <option class="lang" value="REIMER">---Plautdietsch (NDS)---</option>
422
+ <option value="REIMER" >Reimer 2001</option>
423
+ <option class="spacer" value="REIMER">&nbsp;</option>
424
+ <option class="lang" value="ERV-NE">---नेपाली (NE)---</option>
425
+ <option value="ERV-NE" >Nepali Bible: Easy-to-Read Version</option>
426
+ <option class="spacer" value="ERV-NE">&nbsp;</option>
427
+ <option class="lang" value="NGU">---Náhuatl de Guerrero (NGU)---</option>
428
+ <option value="NGU" >Náhuatl de Guerrero</option>
429
+ <option class="spacer" value="NGU">&nbsp;</option>
430
+ <option class="lang" value="HTB">---Nederlands (NL)---</option>
431
+ <option value="HTB" >Het Boek</option>
432
+ <option class="spacer" value="HTB">&nbsp;</option>
433
+ <option class="lang" value="DNB1930">---Norsk (NO)---</option>
434
+ <option value="DNB1930" >Det Norsk Bibelselskap 1930</option>
435
+ <option value="LB" >En Levende Bok</option>
436
+ <option class="spacer" value="LB">&nbsp;</option>
437
+ <option class="lang" value="ERV-OR">---ଓଡ଼ିଆ (OR)---</option>
438
+ <option value="ERV-OR" >Oriya Bible: Easy-to-Read Version</option>
439
+ <option class="spacer" value="ERV-OR">&nbsp;</option>
440
+ <option class="lang" value="ERV-PA">---ਪੰਜਾਬੀ (PA)---</option>
441
+ <option value="ERV-PA" >Punjabi Bible: Easy-to-Read Version</option>
442
+ <option class="spacer" value="ERV-PA">&nbsp;</option>
443
+ <option class="lang" value="NP">---Polski (PL)---</option>
444
+ <option value="NP" >Nowe Przymierze</option>
445
+ <option value="SZ-PL" >Słowo Życia</option>
446
+ <option class="spacer" value="SZ-PL">&nbsp;</option>
447
+ <option class="lang" value="AA">---Português (PT)---</option>
448
+ <option value="AA" >João Ferreira de Almeida Atualizada</option>
449
+ <option value="NVI-PT" >Nova Versão Internacional</option>
450
+ <option value="OL" >O Livro</option>
451
+ <option value="VFL" >Portuguese New Testament: Easy-to-Read Version</option>
452
+ <option class="spacer" value="VFL">&nbsp;</option>
453
+ <option class="lang" value="MTDS">---Quichua (QU)---</option>
454
+ <option value="MTDS" >Mushuj Testamento Diospaj Shimi</option>
455
+ <option class="spacer" value="MTDS">&nbsp;</option>
456
+ <option class="lang" value="QUT">---Quiché, Centro Occidenta (QUT)---</option>
457
+ <option value="QUT" >Quiché, Centro Occidental</option>
458
+ <option class="spacer" value="QUT">&nbsp;</option>
459
+ <option class="lang" value="RMNN">---Română (RO)---</option>
460
+ <option value="RMNN" >Cornilescu</option>
461
+ <option value="NTLR" >Nouă Traducere În Limba Română</option>
462
+ <option class="spacer" value="NTLR">&nbsp;</option>
463
+ <option class="lang" value="ERV-RU">---Русский (RU)---</option>
464
+ <option value="ERV-RU" >Russian New Testament: Easy-to-Read Version</option>
465
+ <option value="RUSV" >Russian Synodal Version</option>
466
+ <option value="SZ" >Slovo Zhizny</option>
467
+ <option class="spacer" value="SZ">&nbsp;</option>
468
+ <option class="lang" value="NPK">---Slovenčina (SK)---</option>
469
+ <option value="NPK" >Nádej pre kazdého</option>
470
+ <option class="spacer" value="NPK">&nbsp;</option>
471
+ <option class="lang" value="SOM">---Somali (SO)---</option>
472
+ <option value="SOM" >Somali Bible</option>
473
+ <option class="spacer" value="SOM">&nbsp;</option>
474
+ <option class="lang" value="ALB">---Shqip (SQ)---</option>
475
+ <option value="ALB" >Albanian Bible</option>
476
+ <option class="spacer" value="ALB">&nbsp;</option>
477
+ <option class="lang" value="ERV-SR">---Српски (SR)---</option>
478
+ <option value="ERV-SR" >Serbian New Testament: Easy-to-Read Version</option>
479
+ <option class="spacer" value="ERV-SR">&nbsp;</option>
480
+ <option class="lang" value="SVL">---Svenska (SV)---</option>
481
+ <option value="SVL" >Levande Bibeln</option>
482
+ <option value="SV1917" >Svenska 1917</option>
483
+ <option value="SFB" >Svenska Folkbibeln</option>
484
+ <option class="spacer" value="SFB">&nbsp;</option>
485
+ <option class="lang" value="SNT">---Kiswahili (SW)---</option>
486
+ <option value="SNT" >Swahili New Testament</option>
487
+ <option class="spacer" value="SNT">&nbsp;</option>
488
+ <option class="lang" value="ERV-TA">---தமிழ் (TA)---</option>
489
+ <option value="ERV-TA" >Tamil Bible: Easy-to-Read Version</option>
490
+ <option class="spacer" value="ERV-TA">&nbsp;</option>
491
+ <option class="lang" value="TNCV">---ภาษาไทย (TH)---</option>
492
+ <option value="TNCV" >Thai New Contemporary Bible</option>
493
+ <option value="ERV-TH" >Thai New Testament: Easy-to-Read Version</option>
494
+ <option class="spacer" value="ERV-TH">&nbsp;</option>
495
+ <option class="lang" value="SND">---Tagalog (TL)---</option>
496
+ <option value="SND" >Ang Salita ng Diyos</option>
497
+ <option class="spacer" value="SND">&nbsp;</option>
498
+ <option class="lang" value="NA-TWI">---Twi (TWI)---</option>
499
+ <option value="NA-TWI" >Nkwa Asem</option>
500
+ <option class="spacer" value="NA-TWI">&nbsp;</option>
501
+ <option class="lang" value="UKR">---Українська (UK)---</option>
502
+ <option value="UKR" >Ukrainian Bible</option>
503
+ <option value="ERV-UK" >Ukrainian New Testament: Easy-to-Read Version</option>
504
+ <option class="spacer" value="ERV-UK">&nbsp;</option>
505
+ <option class="lang" value="ERV-UR">---اردو (UR)---</option>
506
+ <option value="ERV-UR" >Urdu Bible: Easy-to-Read Version</option>
507
+ <option class="spacer" value="ERV-UR">&nbsp;</option>
508
+ <option class="lang" value="USP">---Uspanteco (USP)---</option>
509
+ <option value="USP" >Uspanteco</option>
510
+ <option class="spacer" value="USP">&nbsp;</option>
511
+ <option class="lang" value="VIET">---Tiêng Viêt (VI)---</option>
512
+ <option value="VIET" >1934 Vietnamese Bible</option>
513
+ <option value="BD2011" >Bản Dịch 2011</option>
514
+ <option value="BPT" >Vietnamese Bible: Easy-to-Read Version</option>
515
+ <option class="spacer" value="BPT">&nbsp;</option>
516
+ <option class="lang" value="CCB">---汉语 (ZH)---</option>
517
+ <option value="CCB" >Chinese Contemporary Bible</option>
518
+ <option value="ERV-ZH" >Chinese New Testament: Easy-to-Read Version</option>
519
+ <option value="CNVT" >Chinese New Version (Traditional)</option>
520
+ <option value="CSBS" >Chinese Standard Bible (Simplified)</option>
521
+ <option value="CSBT" >Chinese Standard Bible (Traditional)</option>
522
+ <option value="CUVS" >Chinese Union Version (Simplified)</option>
523
+ <option value="CUV" >Chinese Union Version (Traditional)</option>
524
+ <option value="CUVMPS" >Chinese Union Version Modern Punctuation (Simplified)</option>
525
+ <option value="CUVMPT" >Chinese Union Version Modern Punctuation (Traditional)</option>
526
+ </select>
527
+ <input class='button-search' id='search-submit' type='submit' value='Search' />
528
+ </form>
529
+ </div>
530
+ <div id='search-button-bar'>
531
+ <ul>
532
+ <li><a id="header-book-list" href="/versions/?action=getVersionInfo&amp;vid=ESV&amp;window_location=books">Bible Book List</a></li>
533
+ </ul>
534
+ </div>
535
+ </div>
536
+ <div id="leader-wrap">
537
+ <div id='a9g-leader' class="with-alert">
538
+ <div class="a9g-leader-div" style='border:1px solid #999999;'><script type="text/javascript">
539
+ if (typeof(oasAd) != 'undefined') oasAd('Top');
540
+ </script></div>
541
+ </div>
542
+ </div>
543
+ <div style="clear:both;"></div>
544
+ <div id="content">
203
545
  <!-- UNIQUE CONTENT -->
204
- <h1>Passage results</h1>
205
- <form style="margin-bottom: 5px; margin-top: 0px;" action="/passage/parser.php" id="updateresultsform"><input type="text" name="search1" onBlur="setUpdatePrefs('pslookup_search1',this.value)" class="txt-sm" value="John 1:1" /> <select name="version1" class="txt-sm" onchange="setUpdatePrefs('pslookup_version1',this.value)"><option class="lang" value="AMU">Amuzgo de Guerrero (amu)</option>
206
- <option value="AMU" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Amuzgo de Guerrero</option>
207
- <option class="lang" value="ALAB">العربية (ar)</option>
208
- <option value="ALAB" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Arabic Life Application Bible</option>
209
- <option class="lang" value="BULG">Български (bg)</option>
210
- <option value="BULG" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Bulgarian Bible</option>
211
- <option value="BG1940" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1940 Bulgarian Bible</option>
212
- <option class="lang" value="CCO">Chinanteco de Comaltepec (cco)</option>
213
- <option value="CCO" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Chinanteco de Comaltepec</option>
214
- <option class="lang" value="CKW">Cakchiquel Occidental (ckw)</option>
215
- <option value="CKW" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Cakchiquel Occidental</option>
216
- <option class="lang" value="HCV">Kreyol (cpf)</option>
217
- <option value="HCV" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Haitian Creole Version</option>
218
- <option class="lang" value="SNC">Čeština (cs)</option>
219
- <option value="SNC" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Slovo na cestu</option>
220
- <option class="lang" value="DN1933">Dansk (da)</option>
221
- <option value="DN1933" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Dette er Biblen på dansk</option>
222
- <option class="lang" value="HOF">Deutsch (de)</option>
223
- <option value="HOF" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Hoffnung für Alle</option>
224
- <option value="LUTH1545" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Luther Bibel 1545</option>
225
- <option class="lang" value="NIV">English (en)</option>
226
- <option value="NIV" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;New International Version</option>
227
- <option value="NASB" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;New American Standard Bible</option>
228
- <option value="MSG" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The Message</option>
229
- <option value="AMP" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Amplified Bible</option>
230
- <option value="NLT" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;New Living Translation</option>
231
- <option value="KJV" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;King James Version</option>
232
- <option value="ESV" selected="selected" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;English Standard Version</option>
233
- <option value="CEV" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Contemporary English Version</option>
234
- <option value="NKJV" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;New King James Version</option>
235
- <option value="NCV" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;New Century Version</option>
236
- <option value="KJ21" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;21st Century King James Version</option>
237
- <option value="ASV" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;American Standard Version</option>
238
- <option value="YLT" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Young's Literal Translation</option>
239
- <option value="DARBY" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Darby Translation</option>
240
- <option value="HCSB" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Holman Christian Standard Bible</option>
241
- <option value="NIRV" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;New International Reader's Version</option>
242
- <option value="WYC" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Wycliffe New Testament</option>
243
- <option value="WE" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Worldwide English (New Testament)</option>
244
- <option value="NIVUK" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;New International Version - UK</option>
245
- <option value="TNIV" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Today's New International Version</option>
246
- <option class="lang" value="RVR1960">Español (es)</option>
247
- <option value="RVR1960" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Reina-Valera 1960</option>
248
- <option value="NVI" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Nueva Versión Internacional</option>
249
- <option value="RVR1995" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Reina-Valera 1995</option>
250
- <option value="CST" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Castilian</option>
251
- <option value="RVA" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Reina-Valera Antigua</option>
252
- <option value="BLS" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Biblia en Lenguaje Sencillo</option>
253
- <option value="LBLA" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;La Biblia de las Américas</option>
254
- <option class="lang" value="LSG">Français (fr)</option>
255
- <option value="LSG" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Louis Segond</option>
256
- <option value="BDS" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;La Bible du Semeur</option>
257
- <option class="lang" value="WHNU">Κοινη (grc)</option>
258
- <option value="WHNU" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1881 Westcott-Hort New Testament</option>
259
- <option value="TR1550" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1550 Stephanus New Testament</option>
260
- <option value="TR1894" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1894 Scrivener New Testament</option>
261
- <option class="lang" value="WLC">תירביע (he)</option>
262
- <option value="WLC" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The Westminster Leningrad Codex</option>
263
- <option class="lang" value="HLGN">Ilonggo (hil)</option>
264
- <option value="HLGN" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Hiligaynon Bible</option>
265
- <option class="lang" value="CRO">Hrvatski (hr)</option>
266
- <option value="CRO" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Croatian Bible</option>
267
- <option class="lang" value="KAR">Magyar (hu)</option>
268
- <option value="KAR" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Hungarian Károli</option>
269
- <option class="lang" value="ICELAND">Íslenska (is)</option>
270
- <option value="ICELAND" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Icelandic Bible</option>
271
- <option class="lang" value="LND">Italiano (it)</option>
272
- <option value="LND" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;La Nuova Diodati</option>
273
- <option value="LM" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;La Parola è Vita</option>
274
- <option class="lang" value="JAC">Jacalteco, Oriental (jac)</option>
275
- <option value="JAC" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Jacalteco, Oriental</option>
276
- <option class="lang" value="KEK">Kekchi (kek)</option>
277
- <option value="KEK" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Kekchi</option>
278
- <option class="lang" value="KOREAN">한국어 (ko)</option>
279
- <option value="KOREAN" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Korean Bible</option>
280
- <option class="lang" value="MAORI">Māori (mi)</option>
281
- <option value="MAORI" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Maori Bible</option>
282
- <option class="lang" value="MNT">Macedonian (mk)</option>
283
- <option value="MNT" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Macedonian New Testament</option>
284
- <option class="lang" value="MVC">Mam, Central (mvc)</option>
285
- <option value="MVC" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Mam, Central</option>
286
- <option class="lang" value="MVJ">Mam, Todos Santos (mvj)</option>
287
- <option value="MVJ" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Mam de Todos Santos Chuchumatán</option>
288
- <option class="lang" value="REIMER">Plautdietsch (nds)</option>
289
- <option value="REIMER" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Reimer 2001</option>
290
- <option class="lang" value="NGU">Náhuatl de Guerrero (ngu)</option>
291
- <option value="NGU" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Náhuatl de Guerrero</option>
292
- <option class="lang" value="HTB">Nederlands (nl)</option>
293
- <option value="HTB" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Het Boek</option>
294
- <option class="lang" value="DNB1930">Norsk (no)</option>
295
- <option value="DNB1930" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Det Norsk Bibelselskap 1930</option>
296
- <option value="LB" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Levande Bibeln</option>
297
- <option class="lang" value="OL">Português (pt)</option>
298
- <option value="OL" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;O Livro</option>
299
- <option value="AA" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;João Ferreira de Almeida Atualizada</option>
300
- <option class="lang" value="QUT">Quiché, Centro Occidenta (qut)</option>
301
- <option value="QUT" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Quiché, Centro Occidental</option>
302
- <option class="lang" value="RMNN">Română (ro)</option>
303
- <option value="RMNN" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Romanian</option>
304
- <option value="TLCR" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Romanian</option>
305
- <option class="lang" value="RUSV">Русский (ru)</option>
306
- <option value="RUSV" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Russian Synodal Version</option>
307
- <option value="SZ" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Slovo Zhizny</option>
308
- <option class="lang" value="NPK">Slovenčina (sk)</option>
309
- <option value="NPK" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Nádej pre kazdého</option>
310
- <option class="lang" value="ALB">Shqip (sq)</option>
311
- <option value="ALB" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Albanian Bible</option>
312
- <option class="lang" value="SVL">Svenska (sv)</option>
313
- <option value="SVL" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Levande Bibeln</option>
314
- <option value="SV1917" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Svenska 1917</option>
315
- <option class="lang" value="SNT">Kiswahili (sw)</option>
316
- <option value="SNT" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Swahili New Testament</option>
317
- <option class="lang" value="SND">Tagalog (tl)</option>
318
- <option value="SND" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Ang Salita ng Diyos</option>
319
- <option class="lang" value="UKR">Українська (uk)</option>
320
- <option value="UKR" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Ukrainian Bible</option>
321
- <option class="lang" value="USP">Uspanteco (usp)</option>
322
- <option value="USP" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Uspanteco</option>
323
- <option class="lang" value="VIET">Tiêng Viêt (vi)</option>
324
- <option value="VIET" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1934 Vietnamese Bible</option>
325
- <option class="lang" value="CUV">汉语 (zh)</option>
326
- <option value="CUV" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Chinese Union Version (Traditional)</option>
327
- <option value="CUVS" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Chinese Union Version (Simplified)</option>
328
- </select><input type="hidden" name="showmoresearches" value="closed"><input type="hidden" name="showmoreversions" value="closed"><input type="hidden" name="pslookup_showfootnotes" value="yes" /> <input type="hidden" name="pslookup_showxrefs" value="" /><input type="submit" value="Update" /></form>
329
- <ul class="result-options" id='result-options1'><li class="backback">
330
- <a href="/passage/?search=Luke+1&version=ESV"
331
- onmouseover="ShowOptionInfo('Previous Book','Go to Luke 1')"
332
- onmouseout="HideOptionInfo()" >
333
- <span>Previous Book:Go to Luke</span></a></li>
334
- <li class="back">
335
- <a href="/passage/?search=Luke+24&version=ESV"
336
- onmouseover="ShowOptionInfo('Previous Chapter','Go to Luke 24')"
337
- onmouseout="HideOptionInfo()" >
338
- <span>Previous Chapter : Go to Luke 24</span></a></li>
339
- <li class="expand">
340
- <a href="/passage/?search=John+1&version=ESV"
341
- onmouseover="ShowOptionInfo('Expand: show the entire chapter of',' John 1')"
342
- onmouseout="HideOptionInfo()" >
343
- <span>Expand: show the entire chapter ofJohn 1</span></a></li>
344
- <li class="next">
345
- <a href="/passage/?search=John+2&version=ESV"
346
- onmouseover="ShowOptionInfo('Next Chapter','Go to John 2')"
347
- onmouseout="HideOptionInfo()" >
348
- <span>Next Chapter : Go to John 2</span></a></li>
349
- <li class="nextnext">
350
- <a href="/passage/?search=Acts+1&version=ESV"
351
- onmouseover="ShowOptionInfo('Next Book','Go to Acts 1')"
352
- onmouseout="HideOptionInfo()" >
353
- <span>Next Book:Go to Acts</span></a></li>
354
- <li class="listen">
355
- <a href="/resources/audio/flash_play.php?aid=21&book=50&chapter=1" onclick = "var flashWindow =''; function openwin() {
356
- url = '/resources/audio/flash_play.php?aid=21&book=50&chapter=1';
357
- if (flashWindow != '' && !flashWindow.closed) {
358
- flashWindow.location = url;
359
- } else {
360
- flashWindow = window.open(url,'_blank','resizable=yes, toolbar=no, location=no, directories=no, status=0, menubar=no, scrollbars=no, width=350, height=196');
361
- }
362
- } openwin(); return false;"
363
- onmouseover="ShowOptionInfo('Listen to this passage',' John 1')"
364
- onmouseout="HideOptionInfo()" >
365
- <span>Listen to this passage : John 1</span></a></li><li class="commentary">
366
- <a href="/resources/commentaries/Matthew-Henry/John/Divinity-Christ"
367
- onmouseover="ShowOptionInfo('View commentary related to this passage',' John 1')"
368
- onmouseout="HideOptionInfo()" >
369
- <span>View commentary related to this passage : John 1</span></a></li></ul><div id="result-options-info">&nbsp;</div>
370
- <div id='purchase-bible'><script type='text/javascript'><!--//<![CDATA[
371
- var m3_u = (location.protocol=='https:'?'https://a9g.biblegateway.com/www/delivery/ajs.php':'http://a9g.biblegateway.com/www/delivery/ajs.php');
372
- var m3_r = Math.floor(Math.random()*99999999999);
373
- if (!document.MAX_used) document.MAX_used = ',';
374
- document.write ("<scr"+"ipt type='text/javascript' src='"+m3_u);
375
- document.write ("?zoneid=2&amp;source=ESV");
376
- document.write ('&amp;cb=' + m3_r);
377
- if (document.MAX_used != ',') document.write ("&amp;exclude=" + document.MAX_used);
378
- document.write (document.charset ? '&amp;charset='+document.charset : (document.characterSet ? '&amp;charset='+document.characterSet : ''));
379
- document.write ("&amp;loc=" + escape(window.location));
380
- if (document.referrer) document.write ("&amp;referer=" + escape(document.referrer));
381
- if (document.context) document.write ("&context=" + escape(document.context));
382
- if (document.mmm_fo) document.write ("&amp;mmm_fo=1");
383
- document.write ("'><\/scr"+"ipt>");
384
- //]]>--></script><noscript><a href='http://a9g.biblegateway.com/www/delivery/ck.php?n=a79f0a7f&amp;cb=1397383246' target='_blank'><img src='http://a9g.biblegateway.com/www/delivery/avw.php?zoneid=2&amp;source=ESV&amp;n=a79f0a7f' border='0' alt='' /></a></noscript></div>
385
- <h2>John 1:1&nbsp;(English Standard Version)</h2>
386
- <div class="result-text-style-normal">
387
- <p><h4>John 1</h4><h5>The Word Became Flesh</h5>&nbsp;<sup class="versenum" id="en-ESV-26035">1</sup><sup class='xref' value='(<a href="#cen-ESV-26035A" title="See cross-reference A">A</a>)'>(<a href="#cen-ESV-26035A" title="See cross-reference A">A</a>)</sup> In the beginning was<sup class='xref' value='(<a href="#cen-ESV-26035B" title="See cross-reference B">B</a>)'>(<a href="#cen-ESV-26035B" title="See cross-reference B">B</a>)</sup> the Word, and<sup class='xref' value='(<a href="#cen-ESV-26035C" title="See cross-reference C">C</a>)'>(<a href="#cen-ESV-26035C" title="See cross-reference C">C</a>)</sup> the Word was with God, and<sup class='xref' value='(<a href="#cen-ESV-26035D" title="See cross-reference D">D</a>)'>(<a href="#cen-ESV-26035D" title="See cross-reference D">D</a>)</sup> the Word was God.</p><p /><div class="crossrefs"><strong>Cross references:</strong><ol type="A"><li id="cen-ESV-26035A"><a href="#en-ESV-26035" title="Go to John 1:1">John 1:1</a> : <a href="/passage/?search=Gen1:1;Col1:17;1John1:1;Rev1:4,8,17;3:14;21:6;22:13&version=ESV">Gen 1:1; Col 1:17; 1 John 1:1; Rev 1:4, 8, 17; 3:14; 21:6; 22:13 </a></li>
388
-
389
- <li id="cen-ESV-26035B"><a href="#en-ESV-26035" title="Go to John 1:1">John 1:1</a> : <a href="/passage/?search=Rev19:13;Heb4:12;1John1:1&version=ESV">Rev 19:13; Heb 4:12; 1 John 1:1 </a></li>
390
-
391
- <li id="cen-ESV-26035C"><a href="#en-ESV-26035" title="Go to John 1:1">John 1:1</a> : <a href="/passage/?search=1John1:2;John17:5&version=ESV">1 John 1:2; John 17:5 </a></li>
392
-
393
- <li id="cen-ESV-26035D"><a href="#en-ESV-26035" title="Go to John 1:1">John 1:1</a> : <a href="/passage/?search=Phil2:6&version=ESV">Phil 2:6</a></li>
546
+ <h1>John 1:1&nbsp;(English Standard Version)</h1>
547
+ <div class="display-passages passages-single">
548
+ <div class="content-wrapper">
549
+ <div class="content-col">
550
+ <div class="passage-updatetranslation page-translation"><select data-prefname="default_version"><option class="lang" value="AMU">---Amuzgo de Guerrero (AMU)---</option>
551
+ <option value="AMU" >Amuzgo de Guerrero</option>
552
+ <option class="spacer" value="AMU">&nbsp;</option>
553
+ <option class="lang" value="ERV-AR">---العربية (AR)---</option>
554
+ <option value="ERV-AR" >Arabic Bible: Easy-to-Read Version</option>
555
+ <option value="ALAB" >Arabic Life Application Bible</option>
556
+ <option class="spacer" value="ALAB">&nbsp;</option>
557
+ <option class="lang" value="ERV-AWA">---अवधी (AWA)---</option>
558
+ <option value="ERV-AWA" >Awadhi Bible: Easy-to-Read Version</option>
559
+ <option class="spacer" value="ERV-AWA">&nbsp;</option>
560
+ <option class="lang" value="BG1940">---Български (BG)---</option>
561
+ <option value="BG1940" >1940 Bulgarian Bible</option>
562
+ <option value="BULG" >Bulgarian Bible</option>
563
+ <option value="ERV-BG" >Bulgarian New Testament: Easy-to-Read Version</option>
564
+ <option value="BPB" >Bulgarian Protestant Bible</option>
565
+ <option class="spacer" value="BPB">&nbsp;</option>
566
+ <option class="lang" value="CCO">---Chinanteco de Comaltepec (CCO)---</option>
567
+ <option value="CCO" >Chinanteco de Comaltepec</option>
568
+ <option class="spacer" value="CCO">&nbsp;</option>
569
+ <option class="lang" value="APSD-CEB">---Cebuano (CEB)---</option>
570
+ <option value="APSD-CEB" >Ang Pulong Sa Dios</option>
571
+ <option class="spacer" value="APSD-CEB">&nbsp;</option>
572
+ <option class="lang" value="CHR">---ᏣᎳᎩ ᎦᏬᏂᎯᏍ (CHR)---</option>
573
+ <option value="CHR" >Cherokee New Testament</option>
574
+ <option class="spacer" value="CHR">&nbsp;</option>
575
+ <option class="lang" value="CKW">---Cakchiquel Occidental (CKW)---</option>
576
+ <option value="CKW" >Cakchiquel Occidental</option>
577
+ <option class="spacer" value="CKW">&nbsp;</option>
578
+ <option class="lang" value="B21">---Čeština (CS)---</option>
579
+ <option value="B21" >Bible 21</option>
580
+ <option value="SNC" >Slovo na cestu</option>
581
+ <option class="spacer" value="SNC">&nbsp;</option>
582
+ <option class="lang" value="BPH">---Dansk (DA)---</option>
583
+ <option value="BPH" >Bibelen hverdagsdansk</option>
584
+ <option value="DN1933" >Dette er Biblen på dansk</option>
585
+ <option class="spacer" value="DN1933">&nbsp;</option>
586
+ <option class="lang" value="HOF">---Deutsch (DE)---</option>
587
+ <option value="HOF" >Hoffnung für Alle</option>
588
+ <option value="LUTH1545" >Luther Bibel 1545</option>
589
+ <option value="NGU-DE" >Neue Genfer Übersetzung</option>
590
+ <option value="SCH1951" >Schlachter 1951</option>
591
+ <option value="SCH2000" >Schlachter 2000</option>
592
+ <option class="spacer" value="SCH2000">&nbsp;</option>
593
+ <option class="lang" value="KJ21">---English (EN)---</option>
594
+ <option value="KJ21" >21st Century King James Version</option>
595
+ <option value="ASV" >American Standard Version</option>
596
+ <option value="AMP" >Amplified Bible</option>
597
+ <option value="CEB" >Common English Bible</option>
598
+ <option value="CJB" >Complete Jewish Bible</option>
599
+ <option value="CEV" >Contemporary English Version</option>
600
+ <option value="DARBY" >Darby Translation</option>
601
+ <option value="DRA" >Douay-Rheims 1899 American Edition</option>
602
+ <option value="ERV" >Easy-to-Read Version</option>
603
+ <option value="ESV" selected="selected" >English Standard Version</option>
604
+ <option value="ESVUK" >English Standard Version Anglicised</option>
605
+ <option value="EXB" >Expanded Bible</option>
606
+ <option value="GNV" >1599 Geneva Bible</option>
607
+ <option value="GW" >GOD’S WORD Translation</option>
608
+ <option value="GNT" >Good News Translation</option>
609
+ <option value="HCSB" >Holman Christian Standard Bible</option>
610
+ <option value="PHILLIPS" >J.B. Phillips New Testament</option>
611
+ <option value="JUB" >Jubilee Bible 2000</option>
612
+ <option value="KJV" >King James Version</option>
613
+ <option value="AKJV" >Authorized (King James) Version</option>
614
+ <option value="KNOX" >Knox Bible</option>
615
+ <option value="LEB" >Lexham English Bible</option>
616
+ <option value="MSG" >The Message</option>
617
+ <option value="MOUNCE" >Mounce Reverse-Interlinear New Testament</option>
618
+ <option value="NOG" >Names of God Bible</option>
619
+ <option value="NASB" >New American Standard Bible</option>
620
+ <option value="NCV" >New Century Version</option>
621
+ <option value="NET" >New English Translation (NET Bible)</option>
622
+ <option value="NIRV" >New International Reader&#039;s Version</option>
623
+ <option value="NIV" >New International Version</option>
624
+ <option value="NIVUK" >New International Version - UK</option>
625
+ <option value="NKJV" >New King James Version</option>
626
+ <option value="NLV" >New Life Version</option>
627
+ <option value="NLT" >New Living Translation</option>
628
+ <option value="NRSV" >New Revised Standard Version</option>
629
+ <option value="NRSVA" >New Revised Standard Version, Anglicised</option>
630
+ <option value="NRSVACE" >New Revised Standard Version, Anglicised Catholic Edition</option>
631
+ <option value="NRSVCE" >New Revised Standard Version Catholic Edition</option>
632
+ <option value="OJB" >Orthodox Jewish Bible</option>
633
+ <option value="RSV" >Revised Standard Version</option>
634
+ <option value="RSVCE" >Revised Standard Version Catholic Edition</option>
635
+ <option value="VOICE" >The Voice</option>
636
+ <option value="WEB" >World English Bible</option>
637
+ <option value="WE" >Worldwide English (New Testament)</option>
638
+ <option value="WYC" >Wycliffe Bible</option>
639
+ <option value="YLT" >Young&#039;s Literal Translation</option>
640
+ <option class="spacer" value="YLT">&nbsp;</option>
641
+ <option class="lang" value="LBLA">---Español (ES)---</option>
642
+ <option value="LBLA" >La Biblia de las Américas</option>
643
+ <option value="DHH" >Dios Habla Hoy</option>
644
+ <option value="JBS" >Jubilee Bible 2000 (Spanish)</option>
645
+ <option value="NBLH" >Nueva Biblia Latinoamericana de Hoy</option>
646
+ <option value="NTV" >Nueva Traducción Viviente</option>
647
+ <option value="NVI" >Nueva Versión Internacional</option>
648
+ <option value="CST" >Nueva Versión Internacional (Castilian)</option>
649
+ <option value="PDT" >Palabra de Dios para Todos</option>
650
+ <option value="BLP" >La Palabra (España)</option>
651
+ <option value="BLPH" >La Palabra (Hispanoamérica)</option>
652
+ <option value="RVC" >Reina Valera Contemporánea</option>
653
+ <option value="RVR1960" >Reina-Valera 1960</option>
654
+ <option value="RVR1977" >Reina Valera 1977</option>
655
+ <option value="RVR1995" >Reina-Valera 1995</option>
656
+ <option value="RVA" >Reina-Valera Antigua</option>
657
+ <option value="TLA" >Traducción en lenguaje actual</option>
658
+ <option class="spacer" value="TLA">&nbsp;</option>
659
+ <option class="lang" value="R1933">---Suomi (FI)---</option>
660
+ <option value="R1933" >Raamattu 1933/38</option>
661
+ <option class="spacer" value="R1933">&nbsp;</option>
662
+ <option class="lang" value="BDS">---Français (FR)---</option>
663
+ <option value="BDS" >La Bible du Semeur</option>
664
+ <option value="LSG" >Louis Segond</option>
665
+ <option value="NEG1979" >Nouvelle Edition de Genève – NEG1979</option>
666
+ <option value="SG21" >Segond 21</option>
667
+ <option class="spacer" value="SG21">&nbsp;</option>
668
+ <option class="lang" value="TR1550">---Κοινη (GRC)---</option>
669
+ <option value="TR1550" >1550 Stephanus New Testament</option>
670
+ <option value="WHNU" >1881 Westcott-Hort New Testament</option>
671
+ <option value="TR1894" >1894 Scrivener New Testament</option>
672
+ <option value="SBLGNT" >SBL Greek New Testament</option>
673
+ <option class="spacer" value="SBLGNT">&nbsp;</option>
674
+ <option class="lang" value="HHH">---עיברית (HE)---</option>
675
+ <option value="HHH" >Habrit Hakhadasha/Haderekh</option>
676
+ <option value="WLC" >The Westminster Leningrad Codex</option>
677
+ <option class="spacer" value="WLC">&nbsp;</option>
678
+ <option class="lang" value="ERV-HI">---हिन्दी (HI)---</option>
679
+ <option value="ERV-HI" >Hindi Bible: Easy-to-Read Version</option>
680
+ <option class="spacer" value="ERV-HI">&nbsp;</option>
681
+ <option class="lang" value="HLGN">---Ilonggo (HIL)---</option>
682
+ <option value="HLGN" >Ang Pulong Sang Dios</option>
683
+ <option class="spacer" value="HLGN">&nbsp;</option>
684
+ <option class="lang" value="CRO">---Hrvatski (HR)---</option>
685
+ <option value="CRO" >Croatian Bible</option>
686
+ <option class="spacer" value="CRO">&nbsp;</option>
687
+ <option class="lang" value="HCV">---Kreyòl ayisyen (HT)---</option>
688
+ <option value="HCV" >Haitian Creole Version</option>
689
+ <option class="spacer" value="HCV">&nbsp;</option>
690
+ <option class="lang" value="KAR">---Magyar (HU)---</option>
691
+ <option value="KAR" >Hungarian Károli</option>
692
+ <option value="ERV-HU" >Hungarian Bible: Easy-to-Read Version</option>
693
+ <option value="NT-HU" >Hungarian New Translation</option>
694
+ <option class="spacer" value="NT-HU">&nbsp;</option>
695
+ <option class="lang" value="HWP">---Hawai‘i Pidgin (HWC)---</option>
696
+ <option value="HWP" >Hawai‘i Pidgin</option>
697
+ <option class="spacer" value="HWP">&nbsp;</option>
698
+ <option class="lang" value="ICELAND">---Íslenska (IS)---</option>
699
+ <option value="ICELAND" >Icelandic Bible</option>
700
+ <option class="spacer" value="ICELAND">&nbsp;</option>
701
+ <option class="lang" value="BDG">---Italiano (IT)---</option>
702
+ <option value="BDG" >La Bibbia della Gioia</option>
703
+ <option value="CEI" >Conferenza Episcopale Italiana</option>
704
+ <option value="LND" >La Nuova Diodati</option>
705
+ <option value="NR1994" >Nuova Riveduta 1994</option>
706
+ <option value="NR2006" >Nuova Riveduta 2006</option>
707
+ <option class="spacer" value="NR2006">&nbsp;</option>
708
+ <option class="lang" value="JAC">---Jacalteco, Oriental (JAC)---</option>
709
+ <option value="JAC" >Jacalteco, Oriental</option>
710
+ <option class="spacer" value="JAC">&nbsp;</option>
711
+ <option class="lang" value="KEK">---Kekchi (KEK)---</option>
712
+ <option value="KEK" >Kekchi</option>
713
+ <option class="spacer" value="KEK">&nbsp;</option>
714
+ <option class="lang" value="VULGATE">---Latina (LA)---</option>
715
+ <option value="VULGATE" >Biblia Sacra Vulgata</option>
716
+ <option class="spacer" value="VULGATE">&nbsp;</option>
717
+ <option class="lang" value="MAORI">---Māori (MI)---</option>
718
+ <option value="MAORI" >Maori Bible</option>
719
+ <option class="spacer" value="MAORI">&nbsp;</option>
720
+ <option class="lang" value="MNT">---Македонски (MK)---</option>
721
+ <option value="MNT" >Macedonian New Testament</option>
722
+ <option class="spacer" value="MNT">&nbsp;</option>
723
+ <option class="lang" value="ERV-MR">---मराठी (MR)---</option>
724
+ <option value="ERV-MR" >Marathi Bible: Easy-to-Read Version</option>
725
+ <option class="spacer" value="ERV-MR">&nbsp;</option>
726
+ <option class="lang" value="MVC">---Mam, Central (MVC)---</option>
727
+ <option value="MVC" >Mam, Central</option>
728
+ <option class="spacer" value="MVC">&nbsp;</option>
729
+ <option class="lang" value="MVJ">---Mam, Todos Santos (MVJ)---</option>
730
+ <option value="MVJ" >Mam de Todos Santos Chuchumatán</option>
731
+ <option class="spacer" value="MVJ">&nbsp;</option>
732
+ <option class="lang" value="REIMER">---Plautdietsch (NDS)---</option>
733
+ <option value="REIMER" >Reimer 2001</option>
734
+ <option class="spacer" value="REIMER">&nbsp;</option>
735
+ <option class="lang" value="ERV-NE">---नेपाली (NE)---</option>
736
+ <option value="ERV-NE" >Nepali Bible: Easy-to-Read Version</option>
737
+ <option class="spacer" value="ERV-NE">&nbsp;</option>
738
+ <option class="lang" value="NGU">---Náhuatl de Guerrero (NGU)---</option>
739
+ <option value="NGU" >Náhuatl de Guerrero</option>
740
+ <option class="spacer" value="NGU">&nbsp;</option>
741
+ <option class="lang" value="HTB">---Nederlands (NL)---</option>
742
+ <option value="HTB" >Het Boek</option>
743
+ <option class="spacer" value="HTB">&nbsp;</option>
744
+ <option class="lang" value="DNB1930">---Norsk (NO)---</option>
745
+ <option value="DNB1930" >Det Norsk Bibelselskap 1930</option>
746
+ <option value="LB" >En Levende Bok</option>
747
+ <option class="spacer" value="LB">&nbsp;</option>
748
+ <option class="lang" value="ERV-OR">---ଓଡ଼ିଆ (OR)---</option>
749
+ <option value="ERV-OR" >Oriya Bible: Easy-to-Read Version</option>
750
+ <option class="spacer" value="ERV-OR">&nbsp;</option>
751
+ <option class="lang" value="ERV-PA">---ਪੰਜਾਬੀ (PA)---</option>
752
+ <option value="ERV-PA" >Punjabi Bible: Easy-to-Read Version</option>
753
+ <option class="spacer" value="ERV-PA">&nbsp;</option>
754
+ <option class="lang" value="NP">---Polski (PL)---</option>
755
+ <option value="NP" >Nowe Przymierze</option>
756
+ <option value="SZ-PL" >Słowo Życia</option>
757
+ <option class="spacer" value="SZ-PL">&nbsp;</option>
758
+ <option class="lang" value="AA">---Português (PT)---</option>
759
+ <option value="AA" >João Ferreira de Almeida Atualizada</option>
760
+ <option value="NVI-PT" >Nova Versão Internacional</option>
761
+ <option value="OL" >O Livro</option>
762
+ <option value="VFL" >Portuguese New Testament: Easy-to-Read Version</option>
763
+ <option class="spacer" value="VFL">&nbsp;</option>
764
+ <option class="lang" value="MTDS">---Quichua (QU)---</option>
765
+ <option value="MTDS" >Mushuj Testamento Diospaj Shimi</option>
766
+ <option class="spacer" value="MTDS">&nbsp;</option>
767
+ <option class="lang" value="QUT">---Quiché, Centro Occidenta (QUT)---</option>
768
+ <option value="QUT" >Quiché, Centro Occidental</option>
769
+ <option class="spacer" value="QUT">&nbsp;</option>
770
+ <option class="lang" value="RMNN">---Română (RO)---</option>
771
+ <option value="RMNN" >Cornilescu</option>
772
+ <option value="NTLR" >Nouă Traducere În Limba Română</option>
773
+ <option class="spacer" value="NTLR">&nbsp;</option>
774
+ <option class="lang" value="ERV-RU">---Русский (RU)---</option>
775
+ <option value="ERV-RU" >Russian New Testament: Easy-to-Read Version</option>
776
+ <option value="RUSV" >Russian Synodal Version</option>
777
+ <option value="SZ" >Slovo Zhizny</option>
778
+ <option class="spacer" value="SZ">&nbsp;</option>
779
+ <option class="lang" value="NPK">---Slovenčina (SK)---</option>
780
+ <option value="NPK" >Nádej pre kazdého</option>
781
+ <option class="spacer" value="NPK">&nbsp;</option>
782
+ <option class="lang" value="SOM">---Somali (SO)---</option>
783
+ <option value="SOM" >Somali Bible</option>
784
+ <option class="spacer" value="SOM">&nbsp;</option>
785
+ <option class="lang" value="ALB">---Shqip (SQ)---</option>
786
+ <option value="ALB" >Albanian Bible</option>
787
+ <option class="spacer" value="ALB">&nbsp;</option>
788
+ <option class="lang" value="ERV-SR">---Српски (SR)---</option>
789
+ <option value="ERV-SR" >Serbian New Testament: Easy-to-Read Version</option>
790
+ <option class="spacer" value="ERV-SR">&nbsp;</option>
791
+ <option class="lang" value="SVL">---Svenska (SV)---</option>
792
+ <option value="SVL" >Levande Bibeln</option>
793
+ <option value="SV1917" >Svenska 1917</option>
794
+ <option value="SFB" >Svenska Folkbibeln</option>
795
+ <option class="spacer" value="SFB">&nbsp;</option>
796
+ <option class="lang" value="SNT">---Kiswahili (SW)---</option>
797
+ <option value="SNT" >Swahili New Testament</option>
798
+ <option class="spacer" value="SNT">&nbsp;</option>
799
+ <option class="lang" value="ERV-TA">---தமிழ் (TA)---</option>
800
+ <option value="ERV-TA" >Tamil Bible: Easy-to-Read Version</option>
801
+ <option class="spacer" value="ERV-TA">&nbsp;</option>
802
+ <option class="lang" value="TNCV">---ภาษาไทย (TH)---</option>
803
+ <option value="TNCV" >Thai New Contemporary Bible</option>
804
+ <option value="ERV-TH" >Thai New Testament: Easy-to-Read Version</option>
805
+ <option class="spacer" value="ERV-TH">&nbsp;</option>
806
+ <option class="lang" value="SND">---Tagalog (TL)---</option>
807
+ <option value="SND" >Ang Salita ng Diyos</option>
808
+ <option class="spacer" value="SND">&nbsp;</option>
809
+ <option class="lang" value="NA-TWI">---Twi (TWI)---</option>
810
+ <option value="NA-TWI" >Nkwa Asem</option>
811
+ <option class="spacer" value="NA-TWI">&nbsp;</option>
812
+ <option class="lang" value="UKR">---Українська (UK)---</option>
813
+ <option value="UKR" >Ukrainian Bible</option>
814
+ <option value="ERV-UK" >Ukrainian New Testament: Easy-to-Read Version</option>
815
+ <option class="spacer" value="ERV-UK">&nbsp;</option>
816
+ <option class="lang" value="ERV-UR">---اردو (UR)---</option>
817
+ <option value="ERV-UR" >Urdu Bible: Easy-to-Read Version</option>
818
+ <option class="spacer" value="ERV-UR">&nbsp;</option>
819
+ <option class="lang" value="USP">---Uspanteco (USP)---</option>
820
+ <option value="USP" >Uspanteco</option>
821
+ <option class="spacer" value="USP">&nbsp;</option>
822
+ <option class="lang" value="VIET">---Tiêng Viêt (VI)---</option>
823
+ <option value="VIET" >1934 Vietnamese Bible</option>
824
+ <option value="BD2011" >Bản Dịch 2011</option>
825
+ <option value="BPT" >Vietnamese Bible: Easy-to-Read Version</option>
826
+ <option class="spacer" value="BPT">&nbsp;</option>
827
+ <option class="lang" value="CCB">---汉语 (ZH)---</option>
828
+ <option value="CCB" >Chinese Contemporary Bible</option>
829
+ <option value="ERV-ZH" >Chinese New Testament: Easy-to-Read Version</option>
830
+ <option value="CNVT" >Chinese New Version (Traditional)</option>
831
+ <option value="CSBS" >Chinese Standard Bible (Simplified)</option>
832
+ <option value="CSBT" >Chinese Standard Bible (Traditional)</option>
833
+ <option value="CUVS" >Chinese Union Version (Simplified)</option>
834
+ <option value="CUV" >Chinese Union Version (Traditional)</option>
835
+ <option value="CUVMPS" >Chinese Union Version Modern Punctuation (Simplified)</option>
836
+ <option value="CUVMPT" >Chinese Union Version Modern Punctuation (Traditional)</option>
837
+ </select></div><div id="page-options-button" class="page-options button txt-sm">Page Options</div><div id="page-options" style="display:none" class="txt-sm"> <ul>
838
+ <li><input id="po_toggle_footnotes" class="po_toggle_footnotes" type="checkbox" checked /><label for="po_toggle_footnotes">Footnotes</label></li>
839
+ <li><input id="po_toggle_xrefs" class="po_toggle_xrefs" type="checkbox" /><label for="po_toggle_xrefs">Cross References</label></li>
840
+ <li><input id="po_toggle_versenums" class="po_toggle_versenums" type="checkbox" checked /><label for="po_toggle_versenums">Verse Numbers</label></li>
841
+ <li><input id="po_toggle_headings" class="po_toggle_headings" type="checkbox" checked /><label for="po_toggle_headings">Headings</label></li>
842
+ <li><input id="po_toggle_woj" class="po_toggle_woj" type="checkbox" /><label for="po_toggle_woj">Red Letter</label></li> </ul></div><div class="addthis_toolbox addthis_default_style">
843
+ <a class="addthis_button_facebook"></a>
844
+ <a class="addthis_button_twitter"></a>
845
+ <a class="addthis_button_email"></a>
846
+ </div><div style="clear: both"></div><div style="margin-top: 10px"></div><div class="header-rule"></div><div class='passage-wrap'><div class='passage-left passage-class-0'><div class="passage-scroller">
847
+ <ul class="result-options button txt-sm" id="result-options1">
848
+ <li><a href="/passage/?search=Luke%201&amp;version=ESV" title="Go to Luke 1"><div class="scroller-icon">&lt;&lt;</div></a> </li>
849
+ <li><a href="/passage/?search=Luke%2024&amp;version=ESV" title="Go to Luke 24"><div class="scroller-icon">&lt;</div></a> </li>
850
+ <li><a href="/passage/?search=John%201&amp;version=ESV" title="Expand: show the entire chapter of John 1"><div class="scroller-icon scroller-icon-passage-expand">=<br />=</div></a> </li>
851
+ <li><a href="/passage/?search=John%202&amp;version=ESV" title="Go to John 2"><div class="scroller-icon">&gt;</div></a> </li>
852
+ <li class="last-item"><a href="/passage/?search=Acts%201&amp;version=ESV" title="Go to Acts 1"><div class="scroller-icon">&gt;&gt;</div></a> </li>
853
+ </ul>
854
+ <div class="passage-audio button"><a href="/audio/mclean/esv/John.1.1" onclick = "var flashWindow =''; function openwin() {
855
+ url = '/audio/mclean/esv/John.1.1';
856
+ if (flashWindow != '' && !flashWindow.closed) {
857
+ flashWindow.location = url;
858
+ } else {
859
+ flashWindow = window.open(url,'_blank','resizable=yes, toolbar=no, location=no, directories=no, status=0, menubar=no, scrollbars=no, width=480, height=390');
860
+ }
861
+ } openwin(); return false;" title="listen to John 1"><span><img class="audio-image" src="http://static5.bgcdn.com/images/icons/icon-audio.png" /></span></a></div> <div class="passage-tools">
862
+ <div>
863
+ <a class="passage-resources-open passage-class-0" href="#" data-bg="passage-class-0#John.1.1#John-1-1-John-1-1">Show resources</a>
864
+ </div>
865
+ </div>
866
+
867
+ </div>
868
+ <div class='commentary-link'>
869
+ <a href="/resources/commentaries/Matthew-Henry/John/Divinity-Christ" title="View commentary related to this passage:John 1">Show Commentary</a>
870
+ </div>
871
+ <a href="/passage/?search=john%201%3A1&amp;version=ESV;NIV" rel="nofollow" class="passage-parallel-button">Add parallel</a><div style="clear:both;"></div><div class='heading passage-class-0'><h3>John 1:1</h3><p class="txt-sm">English Standard Version (ESV)</p></div><div class="passage version-ESV result-text-style-normal text-html ">
872
+ <h3><span id="en-ESV-26035" class="text John-1-1">The Word Became Flesh</span></h3><p class="chapter-1"><span class="text John-1-1"><span class="chapternum">1 </span><sup class='crossreference' value='(<a href="#cen-ESV-26035A" title="See cross-reference A">A</a>)'></sup>In the beginning was <sup class='crossreference' value='(<a href="#cen-ESV-26035B" title="See cross-reference B">B</a>)'></sup>the Word, and <sup class='crossreference' value='(<a href="#cen-ESV-26035C" title="See cross-reference C">C</a>)'></sup>the Word was with God, and <sup class='crossreference' value='(<a href="#cen-ESV-26035D" title="See cross-reference D">D</a>)'></sup>the Word was God.</span></p><div class="crossrefs"style="display:none"><h4>Cross references:</h4><ol type="A"><li id="cen-ESV-26035A"><a href="#en-ESV-26035" title="Go to John 1:1">John 1:1</a> : <a href="/passage/?search=Gen 1:1, Col 1:17, 1John 1:1, Rev 1:4, Rev 1:8, Rev 1:17, Rev 3:14, Rev 21:6, Rev 22:13&version=ESV" data-bibleref="Gen.1.1,Col.1.17,1John.1.1,Rev.1.4,Rev.1.8,Rev.1.17,Rev.3.14,Rev.21.6,Rev.22.13">Gen. 1:1; [Col. 1:17; 1 John 1:1; Rev. 1:4, 8, 17; 3:14; 21:6; 22:13]</a></li>
873
+
874
+ <li id="cen-ESV-26035B"><a href="#en-ESV-26035" title="Go to John 1:1">John 1:1</a> : <a href="/passage/?search=Rev 19:13, Heb 4:12, 1John 1:1&version=ESV" data-bibleref="Rev.19.13,Heb.4.12,1John.1.1">Rev. 19:13; [Heb. 4:12; 1 John 1:1]</a></li>
875
+
876
+ <li id="cen-ESV-26035C"><a href="#en-ESV-26035" title="Go to John 1:1">John 1:1</a> : <a href="/passage/?search=1John 1:2, John 17:5&version=ESV" data-bibleref="1John.1.2,John.17.5">1 John 1:2; [ch. 17:5]</a></li>
877
+
878
+ <li id="cen-ESV-26035D"><a href="#en-ESV-26035" title="Go to John 1:1">John 1:1</a> : <a href="/passage/?search=Phil 2:6&version=ESV" data-bibleref="Phil.2.6">Phil. 2:6</a></li>
394
879
 
395
880
  </ol></div> <!--end of crossrefs-->
881
+ </div><div class="passage-scroller">
882
+ <ul class="result-options button txt-sm" id="result-options2">
883
+ <li><a href="/passage/?search=Luke%201&amp;version=ESV" title="Go to Luke 1"><div class="scroller-icon">&lt;&lt;</div></a> </li>
884
+ <li><a href="/passage/?search=Luke%2024&amp;version=ESV" title="Go to Luke 24"><div class="scroller-icon">&lt;</div></a> </li>
885
+ <li><a href="/passage/?search=John%201&amp;version=ESV" title="Expand: show the entire chapter of John 1"><div class="scroller-icon scroller-icon-passage-expand">=<br />=</div></a> </li>
886
+ <li><a href="/passage/?search=John%202&amp;version=ESV" title="Go to John 2"><div class="scroller-icon">&gt;</div></a> </li>
887
+ <li class="last-item"><a href="/passage/?search=Acts%201&amp;version=ESV" title="Go to Acts 1"><div class="scroller-icon">&gt;&gt;</div></a> </li>
888
+ </ul>
889
+ <div class="passage-audio button"><a href="/audio/mclean/esv/John.1.1" onclick = "var flashWindow =''; function openwin() {
890
+ url = '/audio/mclean/esv/John.1.1';
891
+ if (flashWindow != '' && !flashWindow.closed) {
892
+ flashWindow.location = url;
893
+ } else {
894
+ flashWindow = window.open(url,'_blank','resizable=yes, toolbar=no, location=no, directories=no, status=0, menubar=no, scrollbars=no, width=480, height=390');
895
+ }
896
+ } openwin(); return false;" title="listen to John 1"><span><img class="audio-image" src="http://static5.bgcdn.com/images/icons/icon-audio.png" /></span></a></div> <div class="passage-tools">
897
+ </div>
898
+
396
899
  </div>
397
- <div id="publisher-info-bottom-withad" class="publisher-info-bottom">
398
- <strong><a href="/versions/English-Standard-Version-ESV-Bible/">English Standard Version</a> (ESV)</strong><p>The Holy Bible, English Standard Version Copyright ©&nbsp;2001 by <a href="http://www.gnpcb.org">Crossway Bibles, a division of Good News Publishers.</a></p></div>
399
- <div id="result-options-info2" style="clear:both;">&nbsp;</div>
400
- <ul class="result-options" id="result-options2"><li class="backback">
401
- <a href="/passage/?search=Luke+1&version=ESV"
402
- onmouseover="ShowOptionInfo2('Previous Book','Go to Luke 1')"
403
- onmouseout="HideOptionInfo2()" >
404
- <span>Previous Book:Go to Luke</span></a></li>
405
- <li class="back">
406
- <a href="/passage/?search=Luke+24&version=ESV"
407
- onmouseover="ShowOptionInfo2('Previous Chapter','Go to Luke 24')"
408
- onmouseout="HideOptionInfo2()" >
409
- <span>Previous Chapter : Go to Luke 24</span></a></li>
410
- <li class="expand">
411
- <a href="/passage/?search=John+1&version=ESV"
412
- onmouseover="ShowOptionInfo2('Expand: show the entire chapter of',' John 1')"
413
- onmouseout="HideOptionInfo2()" >
414
- <span>Expand: show the entire chapter ofJohn 1</span></a></li>
415
- <li class="next">
416
- <a href="/passage/?search=John+2&version=ESV"
417
- onmouseover="ShowOptionInfo2('Next Chapter','Go to John 2')"
418
- onmouseout="HideOptionInfo2()" >
419
- <span>Next Chapter : Go to John 2</span></a></li>
420
- <li class="nextnext">
421
- <a href="/passage/?search=Acts+1&version=ESV"
422
- onmouseover="ShowOptionInfo2('Next Book','Go to Acts 1')"
423
- onmouseout="HideOptionInfo2()" >
424
- <span>Next Book:Go to Acts</span></a></li>
425
- <li class="listen">
426
- <a href="/resources/audio/flash_play.php?aid=21&book=50&chapter=1" onclick = "var flashWindow =''; function openwin() {
427
- url = '/resources/audio/flash_play.php?aid=21&book=50&chapter=1';
428
- if (flashWindow != '' && !flashWindow.closed) {
429
- flashWindow.location = url;
430
- } else {
431
- flashWindow = window.open(url,'_blank','resizable=yes, toolbar=no, location=no, directories=no, status=0, menubar=no, scrollbars=no, width=350, height=196');
432
- }
433
- } openwin(); return false;"
434
- onmouseover="ShowOptionInfo2('Listen to this passage',' John 1')"
435
- onmouseout="HideOptionInfo2()" >
436
- <span>Listen to this passage : John 1</span></a></li><li class="commentary">
437
- <a href="/resources/commentaries/Matthew-Henry/John/Divinity-Christ"
438
- onmouseover="ShowOptionInfo2('View commentary related to this passage',' John 1')"
439
- onmouseout="HideOptionInfo2()" >
440
- <span>View commentary related to this passage : John 1</span></a></li></ul><br />
441
- </td></tr></table><!-- SIGNATURE -->
442
- <div id="sig" class="txt-sm">
443
- <hr />
444
- <p>
445
- <a href="http://mobile.biblegateway.com/passage/index.php?search=John%201:1&version=ESV">Go to mobile site</a><br />
446
- <a href="#intersite" title="Go to the top of the page">Go to the top of the page</a><br />
447
- <a href="/feedback/" title="Contact us">Contact us/Feedback</a><br />
448
- <a href="http://www.gospel.com" title="Gospel.com">Gospel.com</a><br />
449
- <a href="/site-map/" title="Site map">Site map</a><br />
450
- <a href="/privacy.php" title="Privacy policy">Privacy policy</a><br />
451
- <a href="/terms.php">Terms of use</a>
452
- </p>
900
+ <div class='commentary-link'>
901
+ <a href="/resources/commentaries/Matthew-Henry/John/Divinity-Christ" title="View commentary related to this passage:John 1">Show Commentary</a>
902
+ </div>
903
+ <div style="clear:both;"></div><div class="publisher-info-bottom">
904
+ <strong><a href="http://www.biblegateway.com/versions/English-Standard-Version-ESV-Bible/">English Standard Version</a> (ESV)</strong> <p>The Holy Bible, English Standard Version Copyright ©&nbsp;2001 by <a href="http://www.gnpcb.org">Crossway Bibles, a division of Good News Publishers.</a></p></div><div class="passage-other-trans"><a href="/verse/en/John 1:1">John 1:1 in all English translations</a></div>
905
+ </div><div class='passage-drawer passage-class-0'><div class='exbib-content passage-class-0'><div class='exbib-osis'>John 1:1<span class="passage-resources-close passage-class-0">X</span></div><div class="exbib-spinner passage-class-0"></div></div><div class="exbib-chunk passage-class-0"><div class="exbib-chunk-title passage-class-0"><a href="/passage/?search=john%201:1&amp;version=ESV" class="exbib-back-button passage-class-0">Back</a><span class="passage-resources-close passage-class-0">X</span><div class="exbib-back-title passage-class-0"></div></div><div class="exbib-chunk-merlink passage-class-0"></div><div class="exbib-chunk-text passage-class-0"></div><div class="exbib-chunk-footnote passage-class-0"></div></div></div></div><div style="clear:both;"></div> </div>
453
906
  </div>
907
+ <div class="content-rightcol">
908
+ <!-- end passage column -->
909
+ <div id="merch-side" class="merch section-box"><div class="section-content"><div class="section-header"><h3>Bible Gateway Recommendations</h3></div><div class="section"><div class="store-ad-item"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=535680&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433535680']);"><img width="108" height="108" src="//g.christianbook.com/g/thumbnail/5/535680t.gif" alt="ESV Global Study Bible (TruTone, Brown), Leather, imitation" /></a><div class='merch-title'><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=535680&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433535680']);">ESV Global Study Bible (TruTone, Brown), Leather, imitation</a></div><div class="list-price">Retail: $44.99</div><div>Our Price: $29.99</div><div class="merch-savings">Save: $15.00 (33%)</div><div class="merch-stars stars-45"><img src="http://static5.bgcdn.com/images/merch/stars45.png?4d1ef6e8" alt="4.5 of 5.0 stars" /></div><div class="buy-button"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=535680&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433535680']);">Buy now</a></div></div><div class="store-ad-item"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=504006&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433504006']);"><img width="108" height="108" src="//g.christianbook.com/g/thumbnail/5/504006t.gif" alt="ESV MacArthur Study Bible, Hardcover" /></a><div class='merch-title'><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=504006&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433504006']);">ESV MacArthur Study Bible, Hardcover</a></div><div class="list-price">Retail: $44.99</div><div>Our Price: $29.49</div><div class="merch-savings">Save: $15.50 (34%)</div><div class="merch-stars stars-50"><img src="http://static5.bgcdn.com/images/merch/stars50.png?4d1ef6e8" alt="5.0 of 5.0 stars" /></div><div class="buy-button"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=504006&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433504006']);">Buy now</a></div></div><div class="store-ad-item"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=43731&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781581343731']);"><img width="108" height="108" src="//g.christianbook.com/g/thumbnail/4/43731t.gif" alt="ESV Thinline Bible, Bonded leather, Black" /></a><div class='merch-title'><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=43731&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781581343731']);">ESV Thinline Bible, Bonded leather, Black</a></div><div class="list-price">Retail: $29.99</div><div>Our Price: $19.99</div><div class="merch-savings">Save: $10.00 (33%)</div><div class="merch-stars stars-45"><img src="http://static5.bgcdn.com/images/merch/stars45.png?4d1ef6e8" alt="4.5 of 5.0 stars" /></div><div class="buy-button"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=43731&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781581343731']);">Buy now</a></div></div><a href="http://biblegateway.christianbook.com/" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent','CBD Passage', 'click', 'more']);">View more titles</a></div></div></div></div>
910
+ </div>
911
+ <script type="text/javascript">
912
+ resize_parallel_dropdowns();
913
+ </script><script type="text/javascript">
914
+ BG.currentVersions = 'ESV';
915
+ BG.nextParallel = 'NIV';
916
+
917
+ </script>
454
918
 
919
+ </div><!-- END CONTENT -->
920
+ </div>
921
+ <div style="clear:both;"></div>
922
+ <div id="top-link">
923
+ <div>
924
+ <a href="#">^ Go to the top of the page</a>
925
+ </div>
455
926
  </div>
456
- <!-- END CONTENT -->
457
927
 
458
- <script type="text/javascript" src="http://static.bgcdn.com/includes/scripts.js?0813"></script>
928
+ <!-- END main-col -->
929
+ </div>
459
930
 
931
+ <!-- END main-wrapper -->
932
+ <div id="nav-col">
933
+ <div id="navigation">
934
+ <ul>
935
+ <li id="nav01"><a href="/" title="Return to the BibleGateway.com homepage"><span>Home</span></a></li>
936
+ <li class="feature" id="nav02"><a href="/passage/" title="Look for a passage in one or more Bible versions"><span>Passage Lookup</span></a></li>
937
+ <li class="feature" id="nav03"><a href="/keyword/" title="Search for keywords or phrases in one or more Bible versions"><span>Keyword Search</span></a></li>
938
+ <li class="feature" id="nav04"><a href="/topical/" title="Search the Bible by topic"><span>Topical&nbsp;Index</span></a></li>
939
+ <li id="nav05"><a href="/versions/" title="Bible versions available on BibleGateway.com"><span>Available Versions</span></a></li>
940
+ <li id="nav06"><a href="/resources/audio/" title="Audio Bibles on BibleGateway.com"><span>Audio Bibles</span></a></li>
941
+ <li id="nav07"><a href="/resources/" title="Additional Bible resources"><span>Additional Resources</span></a></li>
942
+ <li id="nav08"><a href="/reading-plans/" title="Plans for reading through the Bible"><span>Reading Plans</span></a></li>
943
+ <li id="nav09"><a href="/devotionals/" title="Devotionals"><span>Devotionals</span></a></li>
944
+ <li class="feature" id="nav10"><a href="/newsletters/" title="Sign up for Bible Gateway Newsletters"><span>Newsletters</span></a></li>
945
+ <li class="feature" id="nav11"><a href="/app/" title="Bible Gateway App"><span>Bible Gateway App</span></a></li>
946
+ <li id="nav12"><a href="/preferences/" title="Set your preferences for BibleGateway.com"><span>Preferences</span></a></li>
947
+ <li id="nav13"><a href="http://www.biblegateway.com/blog/" title="Keep up with the BibleGateway.com">Bible Gateway Blog<span></span></a></li>
948
+ <li class="feature" id="nav14"><a href="http://biblegateway.christianbook.com/" onclick="recordOutboundLink(this, 'cbd-nav', 'click');return false;" title="Store"><span>Store</span></a></li>
949
+ </ul>
460
950
 
951
+ </div>
461
952
 
462
- <div id='a9g-skyscraper'>
463
- <div style='border:1px solid #999999;'>
464
- <script type="text/javascript"
465
- src="http://this.content.served.by.adshuffle.com/p/kl/46/799/r/12/4/8/ast0k3n/eXwy3Zek2cvwpb~sl~rCUh3EA==/view.js"></script>
466
-
953
+ <div id='a9g-skyscraper'>
954
+ <div style='border:1px solid #999999;'><script type="text/javascript">
955
+ if (typeof(oasAd) != 'undefined') oasAd('Left1');
956
+ </script></div>
467
957
  </div>
958
+
959
+ </div>
960
+ <!-- END nav-col -->
961
+ <div style="clear:both"></div>
468
962
  </div>
963
+ <!-- END body -->
964
+ <div id="merch-bottom" class="merch"><h4>Bible Gateway Recommendations</h4><div class="store-ad-item" style="width:19.9%"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=524295&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433524295']);"><img width="108" height="108" src="//g.christianbook.com/g/thumbnail/5/524295t.gif" alt="ESV Large Print Bible TruTone, Black/Spruce, Garland Design" /></a><div class="merch-title"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=524295&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433524295']);">ESV Large Print Bible TruTone, Black/Spruce, Garland Design</a></div><div class="merch-price"><span class="merch-price_retail">$59.99</span><span class="merch-price_sale">$39.99</span></div><div class="merch-savings txt-sm">Save $20.00 (33%)</div><div class="merch-stars stars-45"><img src="http://static5.bgcdn.com/images/merch/stars45.png?4d1ef6e8" alt="4.5 of 5.0 stars" /></div><div class="buy-button"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=524295&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433524295']);">Buy now</a></div></div><div class="store-ad-item" style="width:19.9%"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=523922&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433523922']);"><img width="108" height="108" src="//g.christianbook.com/g/thumbnail/5/523922t.gif" alt="ESV Study Bible, Larger Print, Genuine Leather, Black" /></a><div class="merch-title"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=523922&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433523922']);">ESV Study Bible, Larger Print, Genuine Leather, Black</a></div><div class="merch-price"><span class="merch-price_retail">$109.99</span><span class="merch-price_sale">$71.49</span></div><div class="merch-savings txt-sm">Save $38.50 (35%)</div><div class="merch-stars stars-50"><img src="http://static5.bgcdn.com/images/merch/stars50.png?4d1ef6e8" alt="5.0 of 5.0 stars" /></div><div class="buy-button"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=523922&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433523922']);">Buy now</a></div></div><div class="store-ad-item" style="width:19.9%"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=503900&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433503900']);"><img width="108" height="108" src="//g.christianbook.com/g/thumbnail/5/503900t.gif" alt="ESV Personal-Size Reference Bible, soft leather-look, Mahogany with Trellis Design" /></a><div class="merch-title"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=503900&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433503900']);">ESV Personal-Size Reference Bible, soft leather-look, Mahogany with Trellis Design</a></div><div class="merch-price"><span class="merch-price_retail">$29.99</span><span class="merch-price_sale">$14.99</span></div><div class="merch-savings txt-sm">Save $15.00 (50%)</div><div class="merch-stars stars-45"><img src="http://static5.bgcdn.com/images/merch/stars45.png?4d1ef6e8" alt="4.5 of 5.0 stars" /></div><div class="buy-button"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=503900&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433503900']);">Buy now</a></div></div><div class="store-ad-item" style="width:19.9%"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=502262&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433502262']);"><img width="108" height="108" src="//g.christianbook.com/g/thumbnail/5/502262t.gif" alt="ESV Oswald Chambers Devotional Bible, Hardcover" /></a><div class="merch-title"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=502262&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433502262']);">ESV Oswald Chambers Devotional Bible, Hardcover</a></div><div class="merch-price"><span class="merch-price_retail">$34.99</span><span class="merch-price_sale">$13.99</span></div><div class="merch-savings txt-sm">Save $21.00 (60%)</div><div class="merch-stars stars-45"><img src="http://static5.bgcdn.com/images/merch/stars45.png?4d1ef6e8" alt="4.5 of 5.0 stars" /></div><div class="buy-button"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=502262&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433502262']);">Buy now</a></div></div><div class="store-ad-item last" style="width:19.9%"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=519697&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433519697']);"><img width="108" height="108" src="//g.christianbook.com/g/thumbnail/5/519697t.gif" alt="ESV Thinline Value Edition, TruTone, Chestnut, Filigree Design" /></a><div class="merch-title"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=519697&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433519697']);">ESV Thinline Value Edition, TruTone, Chestnut, Filigree Design</a></div><div class="merch-price"><span class="merch-price_retail">$14.99</span><span class="merch-price_sale">$10.99</span></div><div class="merch-savings txt-sm">Save $4.00 (27%)</div><div class="merch-stars stars-50"><img src="http://static5.bgcdn.com/images/merch/stars50.png?4d1ef6e8" alt="5.0 of 5.0 stars" /></div><div class="buy-button"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=519697&amp;p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433519697']);">Buy now</a></div></div><div id="merch-bottom-link"><a href="http://biblegateway.christianbook.com" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent','CBD Passage', 'click', 'more-bottom']);">View more titles</a></div><div style="clear:both;"></div></div><!-- SIGNATURE -->
965
+ <div id="sig" class="txt-sm">
966
+
967
+ <p><strong>Help and Contact</strong><br /> <a href="/help/" title="FAQs/Tutorials">FAQs/Tutorials</a><br /><a href="/feedback/" title="Contact us/Feedback">Contact us/Feedback</a><br /> <a href="/info/advertising/" title="Why We Advertise">Why We Advertise</a><br /> <a href="/usage/" title="Use Bible Gateway On Your Site">Use Bible Gateway On Your Site</a><br /> <a href="http://www.salemwebnetwork.com/biblegateway/" title="Advertise with Us">Advertise with Us</a><br /><a href="http://www.biblegateway.com/supporting-biblegateway" title="Supporting Bible Gateway">How to Support Bible Gateway</a></p><p><strong>Links</strong><br /> <a href="http://biblegateway.christianbook.com" rel="nofollow" title="Bible Gateway Store">Bible Gateway Store</a><br/> <a href="http://mobile.biblegateway.com/" title="Mobile Bible Gateway">Mobile Bible Gateway</a><br /> <a href="http://www.churchsource.com" title="ChurchSource">ChurchSource</a><br /> <a href="http://www.gospel.com" title="Gospel.com">Gospel.com</a><br /> <a href="http://www.harpercollinschristian.com/" title="Harper Collins Christian Publishing">HarperCollins Christian Publishing</a><br /><a href="http://www.reverendfun.com/" title="Reverend Fun">Reverend Fun</a><br /> <a href="http://www.thomasnelson.com" title="Thomas Nelson">Thomas Nelson</a><br /><a href="http://www.westbowpress.com/" title="Westbow Press" rel="nofollow">Westbow Press</a><br /> <a href="http://www.womenoffaith.com" title="Women of Faith">Women of Faith</a><br /> <a href="http://www.zondervan.com/" title="Zondervan.com">Zondervan.com</a><br /> </p><p><strong>About and Legal</strong><br /> <a href="/about/faith/" title="Statement of Faith">Statement of Faith</a><br /> <a href="/about/" title="About Bible Gateway">About Bible Gateway</a><br /> <a href="/press/" title="Press">Press Releases</a><br /><a href="/site-map/" title="Site map">Site map</a><br /> <a href="/legal/privacy/" title="Privacy policy">Privacy policy</a><br /> <a href="/legal/terms/" title="Site: Terms of use">Site: Terms of use</a><br /> <a href="/legal/widget-terms/" title="Widget: Terms of use">Widget: Terms of use</a></p>
968
+
969
+ <!--<p><strong>Sponsors</strong><br /> <a href="http://www.persecution.com/?utm_source=biblegateway&amp;utm_medium=link&amp;utm_campaign=footer" rel="nofollow" title="Christian Persecution">Christian Persecution</a><br /> <a href="http://www.xulonpress.com/?utm_source=biblegateway&amp;utm_medium=link&amp;utm_campaign=footer" rel="nofollow" title="Book Self Publishing">Book Self Publishing</a><br /> <a href="http://www.gospelforasia.net" rel="nofollow" title="Gospel for Asia">Gospel for Asia</a><br /> <a href="http://mychristiancare.org/medi-share/" rel="nofollow" title="Medi-Share">Medi-Share</a></p>--></div>
970
+ <!-- end sig -->
469
971
 
972
+ <div id='rotate-link'><a href="http://www.biblegateway.com/newsletters">Sign up for daily email insights from the works of beloved author and theologian C.S. Lewis!</a></div>
470
973
 
471
- <!-- Start Google Analytics -->
974
+ </div>
975
+ <!-- END min -->
976
+ </div>
977
+ <!-- END max -->
978
+ <!-- More Google Analytics -->
472
979
  <script type="text/javascript">
473
- var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
474
- document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
980
+ _gaq.push(['_trackEvent', 'translation', 'ESV', 'passage']);
981
+ jQuery(document).bind("copy", function(e) {
982
+ _gaq.push(['_trackEvent', 'copy', 'other' , 'John.1.1/esv']);
983
+ });
984
+
475
985
  </script>
476
- <script type="text/javascript">
477
- try {
478
- var pageTracker = _gat._getTracker("UA-3008784-8");
479
- pageTracker._setDomainName(".biblegateway.com");
480
- pageTracker._trackPageview();
481
- } catch(err) {}</script>
482
-
483
-
484
- <!-- Start Quantcast tag -->
485
- <script type="text/javascript"
486
- src="http://edge.quantserve.com/quant.js"></script>
487
- <script
488
- type="text/javascript">_qacct="p-d56GGD3LGBwJk";quantserve();</script>
489
- <noscript>
490
- <a href="http://www.quantcast.com/p-d56GGD3LGBwJk" target="_blank"><img
491
- src="http://pixel.quantserve.com/pixel/p-d56GGD3LGBwJk.gif"
492
- style="display: none;" border="0" height="1" width="1" alt="Quantcast"/></a>
493
- </noscript>
494
- <!-- End Quantcast tag -->
495
986
 
496
- </div>
497
987
  </body>
498
988
  </html>