rankstar 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,24 @@
1
+ ## MAC OS
2
+ .DS_Store
3
+
4
+ ## TEXTMATE
5
+ *.tmproj
6
+ tmtags
7
+
8
+ ## EMACS
9
+ *~
10
+ \#*
11
+ .\#*
12
+
13
+ ## VIM
14
+ *.swp
15
+
16
+ ## PROJECT::GENERAL
17
+ coverage
18
+ rdoc
19
+ pkg
20
+
21
+ ## PROJECT::SPECIFIC
22
+ .bundle
23
+ .document
24
+ .rvmrc
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ source :gemcutter
2
+
3
+ gem 'jeweler'
4
+ gem 'rspec', '>=1.3.0'
5
+ gem 'nokogiri'
@@ -0,0 +1,30 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ diff-lcs (1.1.2)
5
+ gemcutter (0.6.1)
6
+ git (1.2.5)
7
+ jeweler (1.4.0)
8
+ gemcutter (>= 0.1.0)
9
+ git (>= 1.2.5)
10
+ rubyforge (>= 2.0.0)
11
+ json_pure (1.4.6)
12
+ nokogiri (1.4.3.1)
13
+ rspec (2.0.0.beta.19)
14
+ rspec-core (= 2.0.0.beta.19)
15
+ rspec-expectations (= 2.0.0.beta.19)
16
+ rspec-mocks (= 2.0.0.beta.19)
17
+ rspec-core (2.0.0.beta.19)
18
+ rspec-expectations (2.0.0.beta.19)
19
+ diff-lcs (>= 1.1.2)
20
+ rspec-mocks (2.0.0.beta.19)
21
+ rubyforge (2.0.4)
22
+ json_pure (>= 1.1.7)
23
+
24
+ PLATFORMS
25
+ ruby
26
+
27
+ DEPENDENCIES
28
+ jeweler
29
+ nokogiri
30
+ rspec (>= 1.3.0)
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2010 Crowd Interactive
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,25 @@
1
+ #Rankstar
2
+
3
+ Use this gem to calculate the keyword ranking for *Bing*, *Yahoo* or *Google* as follows:
4
+
5
+ Rankstar.rank(engine, keyword, url) #=> 1
6
+
7
+ ## Arguments:
8
+
9
+ * engine: Any of the following values: [:google, :bing, :yahoo]
10
+ * keyword: The keyword to rank
11
+ * url: The site to look for
12
+
13
+ ## Returns:
14
+
15
+ An integer with the rank of the site. If the site is not within the specified limit, it returns *nil*.
16
+
17
+ ## Limit:
18
+
19
+ By default, it will only look on the first 100 results. You can enter a higher value by using the :limit option.
20
+
21
+ Example:
22
+
23
+ Rankstar.rank(engine, keyword, url, :limit => 200) #=> 123
24
+
25
+
@@ -0,0 +1,58 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+
4
+ begin
5
+ require 'jeweler'
6
+ Jeweler::Tasks.new do |gem|
7
+ gem.name = "rankstar"
8
+ gem.summary = %Q{Ruby library to get the ranking of a url based on a keyword in Bing, Yahoo or Google}
9
+ gem.description = %Q{Ruby library to get the ranking of a url based on a keyword in Bing, Yahoo or Google}
10
+ gem.email = "luis.velasco@crowdint.com"
11
+ gem.homepage = "http://github.com/crowdint/rankstar"
12
+ gem.authors = ["Luis Velasco"]
13
+ gem.add_development_dependency "rspec", ">= 1.2.9"
14
+ gem.add_development_dependency "nokogiri", ">= 1.4"
15
+ end
16
+ Jeweler::GemcutterTasks.new
17
+ rescue LoadError
18
+ puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
19
+ end
20
+
21
+ require 'spec/rake/spectask'
22
+ Spec::Rake::SpecTask.new(:spec) do |spec|
23
+ spec.libs << 'lib' << 'spec'
24
+ spec.spec_files = FileList['spec/**/*_spec.rb']
25
+ end
26
+
27
+ Spec::Rake::SpecTask.new(:rcov) do |spec|
28
+ spec.libs << 'lib' << 'spec'
29
+ spec.pattern = 'spec/**/*_spec.rb'
30
+ spec.rcov = true
31
+ end
32
+
33
+ task :spec => :check_dependencies
34
+
35
+ begin
36
+ require 'reek/adapters/rake_task'
37
+ Reek::RakeTask.new do |t|
38
+ t.fail_on_error = true
39
+ t.verbose = false
40
+ t.source_files = 'lib/**/*.rb'
41
+ end
42
+ rescue LoadError
43
+ task :reek do
44
+ abort "Reek is not available. In order to run reek, you must: sudo gem install reek"
45
+ end
46
+ end
47
+
48
+ task :default => :spec
49
+
50
+ require 'rake/rdoctask'
51
+ Rake::RDocTask.new do |rdoc|
52
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
53
+
54
+ rdoc.rdoc_dir = 'rdoc'
55
+ rdoc.title = "keyword_ranking #{version}"
56
+ rdoc.rdoc_files.include('README*')
57
+ rdoc.rdoc_files.include('lib/**/*.rb')
58
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.1
@@ -0,0 +1,55 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{keyword_ranking}
8
+ s.version = "1.1.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Luis Velasco"]
12
+ s.date = %q{2010-08-18}
13
+ s.description = %q{Ruby library to get the ranking of a url based on a keyword in Bing, Yahoo or Google}
14
+ s.email = %q{luis.velasco@crowdint.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.markdown"
18
+ ]
19
+ s.files = [
20
+ ".gitignore",
21
+ "Gemfile",
22
+ "Gemfile.lock",
23
+ "LICENSE",
24
+ "README.markdown",
25
+ "Rakefile",
26
+ "VERSION",
27
+ "lib/keyword_ranking.rb",
28
+ "spec/keyword_ranking_spec.rb",
29
+ "spec/spec.opts",
30
+ "spec/spec_helper.rb"
31
+ ]
32
+ s.homepage = %q{http://github.com/crowdint/keyword_ranking}
33
+ s.rdoc_options = ["--charset=UTF-8"]
34
+ s.require_paths = ["lib"]
35
+ s.rubygems_version = %q{1.3.7}
36
+ s.summary = %q{Ruby library to get the ranking of a url based on a keyword in Bing, Yahoo or Google}
37
+ s.test_files = [
38
+ "spec/keyword_ranking_spec.rb",
39
+ "spec/spec_helper.rb"
40
+ ]
41
+
42
+ if s.respond_to? :specification_version then
43
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
44
+ s.specification_version = 3
45
+
46
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
47
+ s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
48
+ else
49
+ s.add_dependency(%q<rspec>, [">= 1.2.9"])
50
+ end
51
+ else
52
+ s.add_dependency(%q<rspec>, [">= 1.2.9"])
53
+ end
54
+ end
55
+
@@ -0,0 +1,51 @@
1
+ require 'rubygems'
2
+ require 'nokogiri'
3
+ require 'net/http'
4
+
5
+ class Rankstar
6
+ ENGINES = [:google, :yahoo, :bing]
7
+ def self.rank(engine, keyword, url, *args)
8
+ validate_engine(engine)
9
+ options = {:res_per_page => 100, :limit => 100}
10
+ options.merge!(args[0])
11
+
12
+ keyword.gsub!(/\s/, '+')
13
+ request_url, results_selector, cite_selector = prepare_for(engine, keyword, options[:res_per_page])
14
+ fetch_the_rank(request_url, results_selector, cite_selector, url, options[:limit], options[:res_per_page])
15
+ end
16
+
17
+ private
18
+ def self.validate_engine(engine)
19
+ raise "Allowed engines are: :google, :yahoo, :bing" unless ENGINES.include?(engine)
20
+ end
21
+
22
+ def self.prepare_for(engine, keyword, results_per_page)
23
+ case engine
24
+ when :bing
25
+ ["http://www.bing.com/search?q=#{keyword}&count=#{results_per_page}&first=", '#wg0 > li', 'cite']
26
+ when :google
27
+ ["http://www.google.com/search?q=#{keyword}&num=#{results_per_page}&start=", '#ires > ol > li', 'cite']
28
+ when :yahoo
29
+ ["http://search.yahoo.com/search?p=#{keyword}&n=#{results_per_page}&b=", '#web > ol > li', 'span']
30
+ end
31
+ end
32
+
33
+ def self.fetch_the_rank(request_url, results_selector, cite_selector, url, limit, results_per_page)
34
+ count, rank = 0, nil
35
+
36
+ loop {
37
+ html_response = Net::HTTP.get_response(URI.parse("#{request_url}#{count}")).body
38
+ html_results = Nokogiri.parse(html_response).css(results_selector)
39
+ rank = html_results.index(html_results.detect{ |result| result.css(cite_selector).text.match Regexp.new(url) })
40
+
41
+ if count > limit
42
+ break
43
+ elsif rank
44
+ rank += count
45
+ break
46
+ end
47
+ count += results_per_page
48
+ }
49
+ rank ? rank.next : nil
50
+ end
51
+ end
@@ -0,0 +1,62 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{rankstar}
8
+ s.version = "0.0.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Luis Velasco"]
12
+ s.date = %q{2010-08-18}
13
+ s.description = %q{Ruby library to get the ranking of a url based on a keyword in Bing, Yahoo or Google}
14
+ s.email = %q{luis.velasco@crowdint.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.markdown"
18
+ ]
19
+ s.files = [
20
+ ".gitignore",
21
+ "Gemfile",
22
+ "Gemfile.lock",
23
+ "LICENSE",
24
+ "README.markdown",
25
+ "Rakefile",
26
+ "VERSION",
27
+ "keyword_ranking.gemspec",
28
+ "lib/rankstar.rb",
29
+ "rankstar.gemspec",
30
+ "spec/rankster_spec.rb",
31
+ "spec/spec.opts",
32
+ "spec/spec_helper.rb",
33
+ "spec/support/responses.rb"
34
+ ]
35
+ s.homepage = %q{http://github.com/crowdint/rankstar}
36
+ s.rdoc_options = ["--charset=UTF-8"]
37
+ s.require_paths = ["lib"]
38
+ s.rubygems_version = %q{1.3.7}
39
+ s.summary = %q{Ruby library to get the ranking of a url based on a keyword in Bing, Yahoo or Google}
40
+ s.test_files = [
41
+ "spec/rankster_spec.rb",
42
+ "spec/spec_helper.rb",
43
+ "spec/support/responses.rb"
44
+ ]
45
+
46
+ if s.respond_to? :specification_version then
47
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
48
+ s.specification_version = 3
49
+
50
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
51
+ s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
52
+ s.add_development_dependency(%q<nokogiri>, [">= 1.4"])
53
+ else
54
+ s.add_dependency(%q<rspec>, [">= 1.2.9"])
55
+ s.add_dependency(%q<nokogiri>, [">= 1.4"])
56
+ end
57
+ else
58
+ s.add_dependency(%q<rspec>, [">= 1.2.9"])
59
+ s.add_dependency(%q<nokogiri>, [">= 1.4"])
60
+ end
61
+ end
62
+
@@ -0,0 +1,41 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
+
3
+ # Mock response object
4
+ class HTTPResponse
5
+ attr_accessor :body
6
+ def initialize(body)
7
+ self.body = body
8
+ end
9
+ end
10
+
11
+ describe Rankstar do
12
+ describe :rank do
13
+ it "raises an exception if you use an unsupported engine" do
14
+ lambda {Rankstar.rank(:altavista, 'somekeyword', 'www.somesite.com')}.should raise_error
15
+ end
16
+
17
+ it "returns crowdint with a rank of 1 on google for www.crowdint.com" do
18
+ # Mock Google's response
19
+ Net::HTTP.stub!(:get_response).and_return(HTTPResponse.new(google_response))
20
+ Rankstar.rank(:google, 'crowdint', 'www.crowdint.com', :limit => 300).should == 1
21
+ end
22
+
23
+ it "returns crowdint with a rank of 2 on yahoo for www.crowdint.com" do
24
+ # Mock Yahoo's response
25
+ Net::HTTP.stub!(:get_response).and_return(HTTPResponse.new(yahoo_response))
26
+ Rankstar.rank(:yahoo, 'crowdint', 'www.crowdint.com', :limit => 300).should == 2
27
+ end
28
+
29
+ it "returns crowdint with a rank of 2 on bing for www.crowdint.com" do
30
+ # Mock Bing's response
31
+ Net::HTTP.stub!(:get_response).and_return(HTTPResponse.new(bing_response))
32
+ Rankstar.rank(:bing, 'crowdint', 'www.crowdint.com', :limit => 300).should == 2
33
+ end
34
+
35
+ it "returns crowdint with a rank of 1 on google for www.crowdint.com" do
36
+ # Mock Google's incorrect response
37
+ Net::HTTP.stub!(:get_response).and_return(HTTPResponse.new(google_not_found))
38
+ Rankstar.rank(:google, 'something irrational', 'www.crowdint.com', :limit => 100).should be_nil
39
+ end
40
+ end
41
+ end
@@ -0,0 +1 @@
1
+ --color
@@ -0,0 +1,11 @@
1
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
2
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
3
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
4
+
5
+ require 'rankstar'
6
+ require 'spec'
7
+ require 'spec/autorun'
8
+
9
+ Spec::Runner.configure do |config|
10
+
11
+ end
@@ -0,0 +1,70 @@
1
+ def google_response
2
+ %{
3
+ <!doctype html><head><title>crowdint - Google Search</title><script>window.google={kEI:"bn1sTNK1CZD2swOu96yTBw",kEXPI:"25976,26072",kCSI:{e:"25976,26072",ei:"bn1sTNK1CZD2swOu96yTBw",expi:"25976,26072"},ml:function(){},kHL:"en",time:function(){return(new Date).getTime()},log:function(b,d,c){var a=new Image,e=google,g=e.lc,f=e.li;a.onerror=(a.onload=(a.onabort=function(){delete g[f]}));g[f]=a;c=c||"/gen_204?atyp=i&ct="+b+"&cad="+d+"&zx="+google.time();a.src=c;e.li=f+1},lc:[],li:0,Toolbelt:{}};
4
+ window.google.sn="web";window.google.timers={load:{t:{start:(new Date).getTime()}}};try{}catch(u){}window.google.jsrt_kill=1;
5
+ window._gjp && _gjp()</script><style id=gstyle>body{color:#000;margin:3px 0}body,#leftnav,#tbd,#atd,#tsf,#hidden_modes,#hmp{background:#fff}#gog{background:#fff}#gbar,#guser{font-size:13px;padding-top:1px !important}#gbar{float:left;height:22px}#guser{padding-bottom:7px !important;text-align:right}.gbh,.gbd{border-top:1px solid #c9d7f1;font-size:1px}.gbh{height:0;position:absolute;top:24px;width:100%}#gbs,.gbm{background:#fff;left:0;position:absolute;text-align:left;visibility:hidden;z-index:1000}.gbm{border:1px solid;border-color:#c9d7f1 #36c #36c #a2bae7;z-index:1001}.gb1{margin-right:.5em}.gb1,.gb3{zoom:1}.gb2{display:block;padding:.2em .5em}.gb2,.gb3{text-decoration:none;border-bottom:none}a.gb1,a.gb2,a.gb3,a.gb4{color:#00c !important}a.gb2:hover{background:#36c;color:#fff !important}a.gb1,a.gb2,a.gb3,.link{color:#11c!important}.ts{border-collapse:collapse}.ts td{padding:0}.ti,.bl,form,#res h3{display:inline}.ti{display:inline-table}#tads a.mblink,#tads a.mblink b,#rhs a.mblink,#rhs a.mblink b{color:#1100CC!important}a:link,.w,#prs a:visited,#prs a:active,.q:active,.q:visited{color:#11c}.mblink:visited,a:visited{color:#551a8b}.vst:link{color:#551a8b}.cur,.b{font-weight:bold}.j{width:42em;font-size:82%}.s{max-width:42em}.sl{font-size:82%}#gb{text-align:right;padding:1px 0 7px;margin:0}.hd{position:absolute;width:1px;height:1px;top:-1000em;overflow:hidden}.gl,.f,.m,.c h2,#mbEnd h2,#tads h2,.descbox{color:#767676}.a,cite,cite a:link,cite a:visited,.cite,.cite:link,#mbEnd cite b,#tads cite b{color:#0e774a;font-style:normal}.ng{color:#c11}h1,ol,ul,li{margin:0;padding:0}li.g,body,html,.std,.c h2,#mbEnd h2,h1{font-size:small;font-family:arial,sans-serif}.c h2,#mbEnd h2,h1{font-weight:normal}.clr{clear:both;margin:0 8px}.blk a{color:#000}#nav a{display:block}#nav .i{color:#a90a08;font-weight:bold}.csb,.ss,#logo span,.play_icon,.mini_play_icon,.micon,.licon,.close_btn,#tbp,.lsb,.mbi{background:url(/images/srpr/nav_logo14.png) no-repeat;overflow:hidden}.csb,.ss{background-position:0 0;height:40px;display:block}.ss{background-position:0 -91px;position:absolute;left:0;top:0}.cps{height:18px;overflow:hidden;width:114px}.mbi{background-position:-153px -70px;display:inline-block;float:left;height:13px;margin-right:3px;margin-top:1px;width:13px}#nav td{padding:0;text-align:center}#logo{display:block;overflow:hidden;position:relative;width:137px;height:49px;margin:9px 0 0}#logo img{border:none;position:absolute;left:-0px;top:-41px}#logo span,.ch{cursor:pointer}h3,.med{font-size:medium;font-weight:normal;padding:0;margin:0}.e{margin:2px 0 .75em}.slk div{padding-left:12px;text-indent:-10px}.fc{margin-top:.5em;padding-left:16px}#mbEnd cite{display:block;text-align:left}#rhs_block{margin-bottom:-20px}#bsf,.blk{border-top:1px solid #6b90da;background:#f0f7f9}#bsf{border-bottom:1px solid #6b90da}#cnt{clear:both}#res{padding-right:1em;margin:0 16px}.c{background:#fbf0fa;margin:0 8px}.c li{padding:0 3px 0 8px;margin:0}#mbEnd li{margin:1em 0;padding:0}.xsm{font-size:x-small}ol li{list-style:none}#ncm ul li{list-style-type:disc}.sm li{margin:0}.gl,#foot a,.nobr{white-space:nowrap}#mbEnd .med{white-space:normal}.sl,.r{display:inline;font-weight:normal;margin:0}.r{font-size:medium}h4.r{font-size:small}.mr{margin-top:6px}h3.tbpr{margin-top:.4em;margin-bottom:1.2em}img.tbpr{border:0px;width:15px;height:15px;margin-right:3px}.jsb{display:block}.nojsb{display:none}.nwd{font-size:10px;padding:16px;text-align:center}.rt1{background:transparent url(/images/bubble1.png) no-repeat}.rt2{background:transparent url(/images/bubble2.png) repeat 0 0 scroll}.sb{background:url(/images/scrollbar.png) repeat scroll 0 0;cursor:pointer;width:14px}.rtdm:hover{text-decoration:underline}#rtr .g{margin:1em 0}#ss-box{background:#fff;border:1px solid;border-color:#c9d7f1 #36c #36c #a2bae7;left:0;margin-top:.1em;position:absolute;visibility:hidden;z-index:101}#ss-box a{display:block;padding:.2em .31em;text-decoration:none}#ss-box a:hover{background:#558be3;color:#fff!important}a.ss-selected{color:#000!important;font-weight:bold}a.ss-unselected{color:#4273db!important}.ss-selected .mark{display:inline}.ss-unselected .mark{visibility:hidden}#ss-barframe{background:#fff;left:0;position:absolute;visibility:hidden;z-index:100}.ri_cb{left:0;margin:6px;position:absolute;top:0;z-index:1}.ri_sp{display:-moz-inline-box;display:inline-block;text-align:center;vertical-align:top;margin-bottom:6px}.ri_sp img{vertical-align:bottom}.mbl{margin:1em 0 0}em{font-weight:bold;font-style:normal}li.w0 .ws,td.w0 .ws{opacity:0.5}li.w0:hover .ws,td.w0:hover .ws{opacity:1}ol,ul,li{border:0;margin:0;padding:0}li{line-height:1.2}li.g{margin-top:0;margin-bottom:14px}.ibk,#productbox .fmg{display:-moz-inline-box;display:inline-block;*display:inline;vertical-align:top;zoom:1}.tsw{width:595px}#cnt{min-width:780px;max-width:1144px;padding-top:17px;}.gbh{top:24px}#gbar{margin-left:8px;height:20px}#guser{margin-right:8px;padding-bottom:5px!important}.lst-b,.lst{border:1px solid #ccc;border-bottom:none;height:26px;padding:4px 0 0}.tia input{border-right:none;padding-right:0px}.lst-b{border-right:none}.lst{-moz-box-sizing:content-box;background:#fff;color:#000;font:18px arial,sans-serif;float:left;padding-left:6px;padding-right:10px;vertical-align:top;width:100%}.lst-td{border-bottom:1px solid #999;padding-right:16px}.ds{border-right:1px solid #e7e7e7;position:relative;height:32px;z-index:100}.lsbb{background:#eee;border:1px solid #999;border-top-color:#ccc;border-left-color:#ccc;height:30px}.lsb{font:15px arial,sans-serif;background-position:bottom;border:none;color:#000;cursor:pointer;height:30px;margin:0;vertical-align:top}.lsb:active{background:#ccc}.lst:focus{outline:none}.lsd{font-size:11px;position:absolute;top:3px;left:16px;width:256px}.mbi{margin-bottom:-1px}.tsf-p{margin-right:272px;margin-left:168px;max-width:711px}.uc{margin-left:159px}#center_col,#foot{margin-left:159px;margin-right:264px;padding:0 8px}#subform_ctrl{font-size:11px;margin-left:176px;margin-right:272px;max-width:695px;min-height:26px;padding-top:3px;position:relative;z-index:11}#center_col{border-left:1px solid #d3e1f9;clear:both}#brs p{margin:0;padding-top:5px}.brs_col{display:inline-block;float:left;font-size:small;white-space:nowrap;padding-right:16px;margin-top:-1px;padding-bottom:1px}#tads{margin-bottom:8px!important}#tads li{padding:1px 0}#tads li.taf{padding:1px 0 0}#tads li.tam{padding:14px 0 0}#tads li.tal{padding:14px 0 1px}#res{border:0;margin:0;padding:4px 8px 0}#ires{padding-top:1px}.mbl{margin-top:5px}.play_icon{background-position:;height:px;margin-left:64px;margin-top:44px;width:px}#leftnav li{display:block}.micon,.licon,.close_btn{border:0}#leftnav h2{font-size:small;color:#767676;font-weight:normal;margin:8px 0 0;padding-left:8px;width:143px}#tbbc dfn{padding:4px}.close_btn{background-position:-138px -84px;float:right;height:14px;width:14px}.videobox{padding-bottom:3px}#leftnav a{text-decoration:none}#leftnav a:hover{text-decoration:underline}.mitem,#showmodes{font-size:15px;line-height:24px;padding-left:8px}.mitem{margin-bottom:2px}.mitem .q{display:block}.msel{height:22px;padding-bottom:2px;margin-bottom:0;font-weight:bold}.micon{float:left;height:19px;margin-top:2px;margin-right:5px;outline:none;padding-right:1px;width:19px}#showmodes .micon{background-position:-150px -114px;height:17px;margin-left:1px;margin-right:5px;width:17px}.licon{background-position:-153px -99px;float:left;height:14px;margin-right:3px;width:14px}.open #showmodes .micon{background-position:-132px -114px}.open .msm,.msl{display:none}.open .msl{display:inline}.open #hidden_modes,.open #hmp{display:block}#swr li{border:0;font-size:13px;line-height:1.2;margin:0 0 4px;margin-right:8px;padding-left:1px}#tbd,#atd{display:block;margin-top:8px;min-height:1px}.tbt{font-size:13px;line-height:1.2}.tbou,.tbos,.tbots,.tbotu{margin-right:8px;padding-left:16px;padding-bottom:3px;text-indent:-8px}.tbos,.tbots{font-weight:bold}#leftnav .tbots a{color:#000!important;cursor:default;text-decoration:none}.tbfo .tbt,.tbpd{margin-bottom:8px}#season_{margin-top:8px}.tbpc,.tbpo,.lcsc,.lcso{font-size:13px}.tbpc,.tbo .tbpo,.lco .lcsc{display:inline}.tbo .tbpc,.tbpo,.lco .lcso,.lcsc{display:none}.lco #set_location_section{display:block}.tbo #tbp,.lco .licon{background-position:-138px -99px!important}#prc_opt label,#prc_ttl{display:block;font-weight:normal;margin-right:2px;white-space:nowrap}#cdr_opt,#loc_opt,#prc_opt{padding-left:8px;text-indent:0}.tbou #cdr_frm,.tbou #cloc_frm {display:none}#cdr_frm,#cdr_min,#cdr_max{width:88%}#cdr_opt label{display:block;font-weight:normal;margin-right:2px;white-space:nowrap}.bksg {font-size:82%;line-height:130%;padding:2px;vertical-align:top;}.bkst div {background-color:#f9f9f9;border:1px solid #e0e0e0;color: #666;font-size:small;text-align:center;}#mbEnd,.rhss{margin:0 0 32px;margin-left:8px}#mbEnd h2{color:#767676}#mbEnd li{margin:12px 0 0}a:link,.w,.q:active,.q:visited,.tbotu{color:#11c;cursor:pointer}a.fl:link,.fl a,.flt,a.flt,.gl a:link,a.mblink,.mblink b{color:#4272db}.osl a,.gl a,#tsf a,a.mblink,a.gl,a.fl,.slk a,.bc a,.flt,a.flt u,.oslk a{text-decoration:none}.osl a:hover,.gl a:hover,#tsf a:hover,a.mblink:hover,a.gl:hover,a.fl:hover,.slk a:hover,.bc a:hover,.flt:hover,a.flt:hover u,.oslk a:hover,.tbotu:hover{text-decoration:underline}#ss-box a:hover{text-decoration:none}#tads .mblink,#rhs .mblink{text-decoration:underline}.hpn,.osl{color:#767676}div#gbi,div#gbg{border-color:#a2bff0 #558be3 #558be3 #a2bff0}div#gbi a.gb2:hover,div#gbg a.gb2:hover,.mi:hover{background-color:#558be3}#guser a.gb2:hover,.mi:hover,.mi:hover *{color:#fff!important}#guser{color:#000}#imagebox_big img{padding:2px!important}#productbox table.ts{color:#767676}#productbox table.ts a{text-decoration:underline}#productbox .fmg{margin-top:7px;padding-right:8px;text-align:left}#foot .ftl{margin-right:12px}#foot a.slink{text-decoration:none;color:#4272db}#fll a,#bfl a{color:#4272db;margin:0 12px;text-decoration:none}#foot a:hover{text-decoration:underline}#foot a.slink:visited{color:#551a8b}#blurbbox_bottom{color:#767676}.nvs a{text-decoration:underline}.stp{margin:7px 0 17px}.ssp{margin:.33em 0 17px}#gsr a:active,a.fl:active,.fl a:active,.gl a:active{color:#c11}</style><noscript><style>.jsb{display:none}.nojsb{display:block}</style></noscript><script>google.y={};google.x=function(e,g){google.y[e.id]=[e,g];return false};window.gbar={qs:function(){},tg:function(e){var o={id:'gbar'};for(i in e)o[i]=e[i];google.x(o,function(){gbar.tg(o)})}};</script></head><body id=gsr topmargin=3 marginheight=3><textarea id=csi style=display:none></textarea><textarea id=wwcache style=display:none></textarea><div id=gog><div id=gbar><nobr><b class=gb1>Web</b> <a href="http://www.google.com/images?q=crowdint&um=1&ie=UTF-8&source=og&sa=N&hl=en&tab=wi" onclick=gbar.qs(this) class=gb1>Images</a> <a href="http://www.google.com/search?q=crowdint&um=1&ie=UTF-8&tbo=u&tbs=vid:1&source=og&sa=N&hl=en&tab=wv" onclick=gbar.qs(this) class=gb1>Videos</a> <a href="http://maps.google.com/maps?q=crowdint&um=1&ie=UTF-8&sa=N&hl=en&tab=wl" onclick=gbar.qs(this) class=gb1>Maps</a> <a href="http://www.google.com/search?q=crowdint&um=1&ie=UTF-8&tbo=u&tbs=nws:1&source=og&sa=N&hl=en&tab=wn" onclick=gbar.qs(this) class=gb1>News</a> <a href="http://www.google.com/products?q=crowdint&um=1&ie=UTF-8&sa=N&hl=en&tab=wf" onclick=gbar.qs(this) class=gb1>Shopping</a> <a href="http://mail.google.com/mail/?hl=en&tab=wm" class=gb1>Gmail</a> <a href="http://www.google.com/intl/en/options/" onclick="this.blur();gbar.tg(event);return !1" aria-haspopup=true class=gb3><u>more</u> <small>&#9660;</small></a><div class=gbm id=gbi><a href="http://www.google.com/search?q=crowdint&um=1&ie=UTF-8&tbo=u&tbs=bks:1&source=og&sa=N&hl=en&tab=wp" onclick=gbar.qs(this) class=gb2>Books</a> <a href="http://www.google.com/finance?q=crowdint&um=1&ie=UTF-8&sa=N&hl=en&tab=we" onclick=gbar.qs(this) class=gb2>Finance</a> <a href="http://translate.google.com/translate_t?q=crowdint&um=1&ie=UTF-8&sa=N&hl=en&tab=wT" onclick=gbar.qs(this) class=gb2>Translate</a> <a href="http://scholar.google.com/scholar?q=crowdint&um=1&ie=UTF-8&sa=N&hl=en&tab=ws" onclick=gbar.qs(this) class=gb2>Scholar</a> <a href="http://www.google.com/search?q=crowdint&um=1&ie=UTF-8&tbo=u&tbs=blg:1&source=og&sa=N&hl=en&tab=wb" onclick=gbar.qs(this) class=gb2>Blogs</a> <div class=gb2><div class=gbd></div></div><a href="http://www.youtube.com/results?q=crowdint&um=1&ie=UTF-8&sa=N&hl=en&tab=w1" onclick=gbar.qs(this) class=gb2>YouTube</a> <a href="http://www.google.com/calendar/render?hl=en&tab=wc" class=gb2>Calendar</a> <a href="http://picasaweb.google.com/lh/view?q=crowdint&um=1&ie=UTF-8&sa=N&hl=en&tab=wq" onclick=gbar.qs(this) class=gb2>Photos</a> <a href="http://docs.google.com/?hl=en&tab=wo" class=gb2>Documents</a> <a href="http://www.google.com/reader/view/?hl=en&tab=wy" class=gb2>Reader</a> <a href="http://sites.google.com/?hl=en&tab=w3" class=gb2>Sites</a> <a href="http://groups.google.com/groups?q=crowdint&um=1&ie=UTF-8&sa=N&hl=en&tab=wg" onclick=gbar.qs(this) class=gb2>Groups</a> <div class=gb2><div class=gbd></div></div><a href="http://www.google.com/intl/en/options/" class=gb2>even more &raquo;</a> </div></nobr></div><div id=guser width=100%><nobr><span id=gbn class=gbi></span><span id=gbf class=gbf></span><span id=gbe></span><a href="/preferences?hl=en" class=gb4>Search settings</a> | <a href="https://www.google.com/accounts/Login?hl=en&continue=http://www.google.com/search%3Fq%3Dcrowdint%26start%3D0" class=gb4>Sign in</a></nobr></div><div class=gbh style=left:0></div><div class=gbh style=right:0></div></div><div id=cnt style="margin-left:0px"><div id=sfcnt><form action="/search" id=tsf method=GET name=gs onsubmit="return q.value!=''" role=search style="display:block;margin:0;background:none"><input type=hidden name=hl value="en"><input type=hidden name=ie value="ISO-8859-1"><div><div style="float:left;margin-top:-7px;padding:0 18px 0 12px"><h1><a id=logo href="http://www.google.com/webhp?hl=en" title="Go to Google Home">Google<img width=167 height=222 src="/images/srpr/nav_logo14.png" alt=""></a></h1></div><div class=tsf-p style=padding-bottom:2px><table border=0 cellpadding=0 cellspacing=0 style="border-bottom:1px solid #e7e7e7;padding:8px 0 0;position:relative;z-index:2"><tr><td class="lst-td" width=100%><div style=position:relative;zoom:1><input autocomplete="off" class=lst type=text name=q maxlength=2048 value="crowdint" title="Search"><span id=tsf-oq style="display:none">crowdint</span></div> <td><div class=ds><div class=lsbb><input type=submit name="btnG" class=lsb value="Search"></div></div><td><div style="position:relative;height:30px;z-index:2"><div class=lsd></div></div></table></div></div></form></div><style>#center_col,#footerbox{min-width:562px}</style><noscript><style>.bl{display:none !important}</style></noscript><div id=subform_ctrl><div style="float:right"><a href="/advanced_search?q=crowdint&amp;hl=en&amp;ie=UTF-8" class="gl nobr" style="color:#4373db">Advanced search</a></div><div><div id=resultStats>About 2,040 results<nobr> (0.17 seconds)&nbsp;</nobr></div></div></div><div style="position:relative;zoom:1"><div id=center_col><div id=res class=med role=main><h2 class=hd>Search Results</h2><div id=ires><ol><li class=g><h3 class="r"><a href="http://www.crowdint.com/" class=l>People-Powered Applications | Crowd Interactive</a></h3><div class="s">&quot;Crowd Interactive was STELLAR to work with! These guys are FAST, SMART and really on-the-ball when it comes to comunication. Our project ended up being a <b>...</b><br><span class=f><cite>www.<b>crowdint</b>.com/</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:Fk8RhHhcyzwJ:www.crowdint.com/+crowdint&amp;cd=1&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a> - <a href="/search?hl=en&amp;ie=UTF-8&amp;q=related:www.crowdint.com/+crowdint&amp;tbo=1&amp;sa=X&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;ved=0CB0QHzAA">Similar</a></span></span></div><li class=g><h3 class="r"><a href="http://twitter.com/crowdint" class=l>Crowd Interactive (<em>CrowdInt</em>) on Twitter</a></h3><div class="s">Get updates via SMS by texting follow <em>CrowdInt</em> to 40404 in the United States <b>...</b> Why not outsource them? www.<em>crowdint</em>.com #railsconf 11:06 AM Jun 8th via <b>...</b><br><span class=f><cite>twitter.com/<b>crowdint</b></cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:TaF-Hcpm9JQJ:twitter.com/crowdint+crowdint&amp;cd=2&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://github.com/crowdint" class=l><em>crowdint&#39;s</em> Profile - GitHub</a></h3><div class="s">Jul 15, 2010 <b>...</b> <em>crowdint</em> (Crowd Interactive) Organization. Name: Crowd Interactive <b>...</b> blog. <em>crowdint</em>.com. Crowd Interactive&#39;s tech blog <b>...</b><br><span class=f><cite>github.com/<b>crowdint</b></cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:QNdsM0RThnsJ:github.com/crowdint+crowdint&amp;cd=3&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g style="margin-left:16px"><h3 class="r hcw"><a href="http://github.com/crowdint/rails3-jquery-autocomplete" class=l><em>crowdint&#39;s</em> rails3-jquery-autocomplete at master - GitHub</a></h3><div class="s hc" id=mbb4 valign=top>An easy and unobtrusive way to use jQuery&#39;s autocomplete with Rails 3.<br><span class=f><cite>github.com/<b>crowdint</b>/rails3-jquery-autocomplete</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:0xyuF0JTzSwJ:github.com/crowdint/rails3-jquery-autocomplete+crowdint&amp;cd=4&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span><div class=mbl><div class=bl><span class=ch id=mbl4 onclick="google.x(this)" style="display:inline-block"><div class=mbi></div><a href=# onclick="return false" class=mblink>Show more results from github.com</a></span></div></div><div id=mbf4><span/></div></div><li class=g><h3 class="r"><a href="http://www.freewebsitereport.org/www.crowdint.com" class=l><em>Crowdint</em>.com Estimated Worth $2888 USD by Freewebsitereport</a></h3><div class="s">Mar 21, 2010 <b>...</b> Daily Ad Revenue:$3.96 USD, Daily Views:1319 Pages, Traffic Rank:834017, Page Rank:5, Linking Sites:6, Server IP:69.39.236.113, <b>...</b><br><span class=f><cite>www.freewebsitereport.org/www.<b>crowdint</b>.com</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:anYfcZYEwZIJ:www.freewebsitereport.org/www.crowdint.com+crowdint&amp;cd=5&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.jquerylink.com/autocomplete/crowdints-rails3-jquery-autocomplete-at-master-github/" class=l><em>crowdint&#39;s</em> rails3-jquery-autocomplete at master - GitHub <b>...</b></a></h3><div class="s"><em>crowdint&#39;s</em> rails3-jquery-autocomplete at master - GitHub.<br><span class=f><cite>www.jquerylink.com/.../<b>crowdints</b>-rails3-jquery-autocomplete-at-master- github/</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:SLObHUhPh6EJ:www.jquerylink.com/autocomplete/crowdints-rails3-jquery-autocomplete-at-master-github/+crowdint&amp;cd=6&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.underweardance.com/" class=l>Login - <em>CrowdInt</em> Tracking Tool</a></h3><div class="s"><em>CrowdInt</em> Tracking Tool - Login. Email Address: error condition detected. Password: error condition detected. I Forgot My Password <b>...</b><br><span class=f><cite>www.underweardance.com/</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:LS5z1giMu6sJ:www.underweardance.com/+crowdint&amp;cd=7&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a> - <a href="/search?hl=en&amp;ie=UTF-8&amp;q=related:www.underweardance.com/+crowdint&amp;tbo=1&amp;sa=X&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;ved=0CDEQHzAG">Similar</a></span></span></div><li class=g><h3 class="r"><a href="http://sitetrail.com/crowdint.com" class=l><em>crowdint</em>.com</a></h3><div class="s">Feb 19, 2010 <b>...</b> Find out all kinds of information about <em>crowdint</em>.com. Find out where <em>crowdint</em>. com is located, how much <em>crowdint</em>.com is worth, <b>...</b><br><span class=f><cite>sitetrail.com/<b>crowdint</b>.com</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:LJIBy4xHblMJ:sitetrail.com/crowdint.com+crowdint&amp;cd=8&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.websiteworthchecker.com/crowdint.com" class=l><em>crowdint</em>.com worth $2594.6 - <em>Crowdint</em> Website value profile</a></h3><div class="s"><em>Crowdint</em>.com has a traffic rank of 939609 according to Alexa. This website is visited by 0.00016 percent of all Internet users. <b>...</b><br><span class=f><cite>www.websiteworthchecker.com/<b>crowdint</b>.com</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:tQkTn-u0MwgJ:www.websiteworthchecker.com/crowdint.com+crowdint&amp;cd=9&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://websiteindepth.com/www.crowdint.com" class=l>www.<em>crowdint</em>.com In-Depth Analytic Reports</a></h3><div class="s">Aug 6, 2010 <b>...</b> <em>crowdint</em>.com worth $16382 and ranks # 1029338 in the world. See More In-Depth Reports including: Traffic Trend Graph and Comparison, <b>...</b><br><span class=f><cite>websiteindepth.com/www.<b>crowdint</b>.com</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:PG2RJ1FblYoJ:websiteindepth.com/www.crowdint.com+crowdint&amp;cd=10&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div></ol></div><div id=brs style="clear:both;margin-bottom:17px;overflow:hidden"><div class="med" style="text-align:left">Searches related to <em>crowdint</em></div><div class=brs_col><p><a href="/search?hl=en&amp;ie=UTF-8&amp;q=teeth+crowding&amp;revid=503948968&amp;sa=X&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;ved=0CDwQ1QIoAA"><b>teeth</b> crowding</a></p><p><a href="/search?hl=en&amp;ie=UTF-8&amp;q=crowding+psychology&amp;revid=503948968&amp;sa=X&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;ved=0CD0Q1QIoAQ">crowding <b>psychology</b></a></p><p><a href="/search?hl=en&amp;ie=UTF-8&amp;q=macromolecular+crowding&amp;revid=503948968&amp;sa=X&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;ved=0CD4Q1QIoAg"><b>macromolecular</b> crowding</a></p><p><a href="/search?hl=en&amp;ie=UTF-8&amp;q=prison+crowding&amp;revid=503948968&amp;sa=X&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;ved=0CD8Q1QIoAw"><b>prison</b> crowding</a></p></div><div class=brs_col><p><a href="/search?hl=en&amp;ie=UTF-8&amp;q=current+crowding&amp;revid=503948968&amp;sa=X&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;ved=0CEAQ1QIoBA"><b>current</b> crowding</a></p><p><a href="/search?hl=en&amp;ie=UTF-8&amp;q=dental+crowding&amp;revid=503948968&amp;sa=X&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;ved=0CEEQ1QIoBQ"><b>dental</b> crowding</a></p><p><a href="/search?hl=en&amp;ie=UTF-8&amp;q=visual+crowding&amp;revid=503948968&amp;sa=X&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;ved=0CEIQ1QIoBg"><b>visual</b> crowding</a></p><p><a href="/search?hl=en&amp;ie=UTF-8&amp;q=crowding+phenomenon&amp;revid=503948968&amp;sa=X&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;ved=0CEMQ1QIoBw">crowding <b>phenomenon</b></a></p></div></div></div> </div> <div id=leftnav role=navigation style="padding-top:3px;padding-left:4px;position:absolute;top:0;width:151px" onclick="google.srp&&google.srp.qs(event)"><div id=ms><ul><li class="mitem msel"><span class=micon style="background-position:-20px -132px"></span>Everything</ul><ul class=nojsb id="hidden_modes"><li class="mitem"><a href="/images?q=crowdint&amp;hl=en&amp;ie=UTF-8&amp;source=lnms&amp;tbs=isch:1&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;sa=X&amp;oi=mode_link&amp;ct=mode&amp;ved=0CAkQ_AU" class="q qs"><span class=micon style="background-position:-40px -132px"></span>Images</a><li class="mitem"><a href="/search?q=crowdint&amp;hl=en&amp;ie=UTF-8&amp;source=lnms&amp;tbs=vid:1&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;sa=X&amp;oi=mode_link&amp;ct=mode&amp;ved=0CAoQ_AU" class="q qs"><span class=micon style="background-position:-80px -132px"></span>Videos</a><li class="mitem"><a href="http://maps.google.com/maps?q=crowdint&amp;um=1&amp;ie=UTF-8&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;sa=X&amp;oi=mode_link&amp;ct=mode&amp;ved=0CAsQ_AU" class="q qs"><span class=micon style="background-position:-80px -152px"></span>Maps</a><li class="mitem"><a href="/search?q=crowdint&amp;hl=en&amp;ie=UTF-8&amp;source=lnms&amp;tbs=nws:1&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;sa=X&amp;oi=mode_link&amp;ct=mode&amp;ved=0CAwQ_AU" class="q qs"><span class=micon style="background-position:-120px -132px"></span>News</a><li class="mitem"><a href="http://www.google.com/products?q=crowdint&amp;um=1&amp;ie=UTF-8&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;sa=X&amp;oi=mode_link&amp;ct=mode&amp;ved=0CA0Q_AU" class="q qs"><span class=micon style="background-position:-120px -152px"></span>Shopping</a><li class="mitem"><a href="/search?q=crowdint&amp;hl=en&amp;ie=UTF-8&amp;source=lnms&amp;tbs=bks:1&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;sa=X&amp;oi=mode_link&amp;ct=mode&amp;ved=0CA4Q_AU" class="q qs"><span class=micon style="background-position:-40px -152px"></span>Books</a><li class="mitem"><a href="/search?q=crowdint&amp;hl=en&amp;ie=UTF-8&amp;source=lnms&amp;tbs=blg:1&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;sa=X&amp;oi=mode_link&amp;ct=mode&amp;ved=0CA8Q_AU" class="q qs"><span class=micon style="background-position:0 -152px"></span>Blogs</a><li class="mitem"><a href="/search?q=crowdint&amp;hl=en&amp;ie=UTF-8&amp;source=lnms&amp;tbs=mbl:1&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;sa=X&amp;oi=mode_link&amp;ct=mode&amp;ved=0CBAQ_AU" class="q qs"><span class=micon style="background-position:-40px -172px"></span>Updates</a><li class="mitem"><a href="/search?q=crowdint&amp;hl=en&amp;ie=UTF-8&amp;source=lnms&amp;tbs=dsc:1&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;sa=X&amp;oi=mode_link&amp;ct=mode&amp;ved=0CBEQ_AU" class="q qs"><span class=micon style="background-position:0 -172px"></span>Discussions</a></ul><a id=showmodes class="jsb q nj" href="#" onclick="google.x(this.id,google.srp.toggleModes);return false" style="border-bottom:1px solid #c9d7f1;padding-bottom:9px"><span class="micon"></span><span class="msm">More</span><span class="msl">Fewer</span></a></div><div style="clear:both;overflow:hidden"><h2 class=hd>Search Options</h2><ul id=tbd class="med"><li><ul class="tbt tbpd"><li class="tbos" id=qdr_ onclick="return google.Toolbelt.tbosClk(event)">Any time<li class="tbou" id=qdr_d2><a href="/search?q=crowdint&amp;hl=en&amp;ie=UTF-8&amp;source=lnt&amp;tbs=qdr:d2&amp;sa=X&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;ved=0CAYQpwU" class="q qs">Past 2 days</a></ul></ul><a href="/search?q=crowdint&amp;hl=en&amp;ie=UTF-8&amp;tbo=1" class="nj q" id=tbpi onclick="return google.x(this,function(){return google.Toolbelt.togglePromotedTools(this, event)})" style="clear:both;display:block;margin:8px"><span id=tbp style="background-position:-153px -99px;border:0;display:block;float:left;height:14px;margin-right:3px;width:14px"></span><nobr class=tbpo>Fewer search tools</nobr><nobr class=tbpc>More search tools</nobr></a></div><h2 style="font-size:small;border-top:1px solid #c9d7f1;padding-top:8px">Something different</h2><ul id=swr style="float:left;margin-top:4px;padding-left:8px;white-space:nowrap"><li><a href="/search?hl=en&amp;ie=UTF-8&amp;q=congestion&amp;sa=X&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;ved=0CBIQtAYoAA" title="congestion">congestion</a><li><a href="/search?hl=en&amp;ie=UTF-8&amp;q=deprivation&amp;sa=X&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;ved=0CBMQtAYoAQ" title="deprivation">deprivation</a><li><a href="/search?hl=en&amp;ie=UTF-8&amp;q=starvation&amp;sa=X&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;ved=0CBQQtAYoAg" title="starvation">starvation</a><li><a href="/search?hl=en&amp;ie=UTF-8&amp;q=distortion&amp;sa=X&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;ved=0CBUQtAYoAw" title="distortion">distortion</a><li><a href="/search?hl=en&amp;ie=UTF-8&amp;q=inbreeding&amp;sa=X&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;ved=0CBYQtAYoBA" title="inbreeding">inbreeding</a></ul></div></div> <div id=foot class=tsf-p role=contentinfo><div id=navcnt><table id=nav style="border-collapse:collapse;text-align:left;direction:ltr;margin:17px auto 0"><tr valign=top><td class=b><span class="csb" style="background-position:-24px 0;width:28px"></span><td class=cur><span class="csb" style="background-position:-53px 0;width:20px"></span>1<td><a href="/search?q=crowdint&amp;hl=en&amp;ie=UTF-8&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;start=10&amp;sa=N" class=fl><span class="csb ch" style="background-position:-74px 0;width:20px"></span>2</a><td><a href="/search?q=crowdint&amp;hl=en&amp;ie=UTF-8&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;start=20&amp;sa=N" class=fl><span class="csb ch" style="background-position:-74px 0;width:20px"></span>3</a><td><a href="/search?q=crowdint&amp;hl=en&amp;ie=UTF-8&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;start=30&amp;sa=N" class=fl><span class="csb ch" style="background-position:-74px 0;width:20px"></span>4</a><td><a href="/search?q=crowdint&amp;hl=en&amp;ie=UTF-8&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;start=40&amp;sa=N" class=fl><span class="csb ch" style="background-position:-74px 0;width:20px"></span>5</a><td><a href="/search?q=crowdint&amp;hl=en&amp;ie=UTF-8&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;start=50&amp;sa=N" class=fl><span class="csb ch" style="background-position:-74px 0;width:20px"></span>6</a><td><a href="/search?q=crowdint&amp;hl=en&amp;ie=UTF-8&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;start=60&amp;sa=N" class=fl><span class="csb ch" style="background-position:-74px 0;width:20px"></span>7</a><td><a href="/search?q=crowdint&amp;hl=en&amp;ie=UTF-8&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;start=70&amp;sa=N" class=fl><span class="csb ch" style="background-position:-74px 0;width:20px"></span>8</a><td><a href="/search?q=crowdint&amp;hl=en&amp;ie=UTF-8&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;start=80&amp;sa=N" class=fl><span class="csb ch" style="background-position:-74px 0;width:20px"></span>9</a><td><a href="/search?q=crowdint&amp;hl=en&amp;ie=UTF-8&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;start=90&amp;sa=N" class=fl><span class="csb ch" style="background-position:-74px 0;width:20px"></span>10</a><td class=b><a href="/search?q=crowdint&amp;hl=en&amp;ie=UTF-8&amp;ei=bn1sTNK1CZD2swOu96yTBw&amp;start=10&amp;sa=N" class=pn style="text-align:left"><span class="csb ch" style="background-position:-96px 0;width:71px"></span><span style="display:block;margin-left:53px">Next</span></a></table></div><div style="height:1px;line-height:0"></div><div><div id=sftr style="margin-top:22px"><form method=get action="/search"><table border=0 cellpadding=0 cellspacing=0><tr><td class=lst-td width=100%><input class=lst type=text name=q maxlength=2048 value="crowdint" title="Search"><span id=tsf-oq style="display:none">crowdint</span><td><div class=ds><div class=lsbb><input type=submit name="btnG" class=lsb value="Search"></div></div></table><input type=hidden name=hl value="en"><input type=hidden name=ie value="ISO-8859-1"><input type=hidden name=sa value="2"></form></div><p id=bfl style="margin:6px 0 0;text-align:center"><a href="/swr?q=crowdint&amp;hl=en&amp;ie=UTF-8&amp;swrnum=2040" class=fl>Search&nbsp;within&nbsp;results</a> <a href="/support/websearch/bin/answer.py?answer=134479&amp;hl=en" class=fl>Search Help</a> <a href="/quality_form?q=crowdint&amp;hl=en&amp;ie=UTF-8" target=_blank class=fl>Give us feedback</a> </div><div id=fll style="margin:19px auto 19px auto;text-align:center"><a href="/">Google&nbsp;Home</a><a href="/intl/en/ads/">Advertising&nbsp;Programs</a><a href="/services/">Business Solutions</a><a href="/intl/en/privacy.html">Privacy</a><a href="/intl/en/about.html">About Google</a></div></div></div> <textarea style="display:none" id=hcache></textarea><div id=xjsd></div><div id=xjsi><script>if(google.y)google.y.first=[];if(google.y)google.y.first=[];google.dstr=[];google.rein=[];window.setTimeout(function(){var a=document.createElement("script");a.src="/extern_js/f/CgJlbhICdXMgACswRTgBLCswWjgDLCswDjgXLCswFzgHLCswJzgELCswPDgDLCswUTgCLCswCjhzQC8sKzAWOB0sKzAZOCAsKzAlOMqIASwrMDU4BCwrMEA4EiwrMEE4BSwrME44BiwrMFQ4ASwrMBg4BSwrMCY4DSyAAheQAhY/M35v6lP-Ioc.js";(document.getElementById("xjsd")||document.body).appendChild(a);if(google.timers&&google.timers.load.t)google.timers.load.t.xjsls=(new Date).getTime();},0);
6
+ ;window.mbtb1={tbs:"",docid:"9823971209917365145",usg:"4018",obd:false};google.base_href='/search?q\x3dcrowdint\x26hl\x3den\x26ie\x3dUTF-8';google.sn='web';google.Toolbelt.atg=[4,2,4,6];google.Toolbelt.pbt=[[0,0],[0,2]];google.Toolbelt.pti={0:1,3:1};google.drhs=1;google.nolujs=1;var oldElement=document.getElementById('tbt3');if(oldElement){oldElement.parentNode.removeChild(oldElement);}delete google.ww;google.y.first.push(function(){google.Tbpr && google.Tbpr.init();google.tbpr && google.tbpr.init();google.Toolbelt.initializeToolElements &&google.Toolbelt.initializeToolElements();;window.mb4=ManyBox.register('4','0xyuF0JTzSwJ','826e',32,'Hide more results from github.com');mb4.append(['mres=0xyuF0JTzSwJ:QNdsM0RThnsJ:']);mb4.append(['q=/search%3Fhl%3Den%26ie%3DUTF-8%26q%3D%2Bsite%3Agithub.com%2Bcrowdint']);mb4.append(['ved=0CEkQswg']);var form=document.gs||document.f||document.gs;google.ac.i(form,form.q,'','crowdint','',{o:1,sw:1,l:1});google.riu={render:function(){window.setTimeout(function(){var a=document.createElement("script");a.src="/extern_js/f/CgJlbhICdXMgACswPzgDLIACF5ACFg/fpJ2E8bIc2s.js";(document.getElementById("xjsd")||document.body).appendChild(a);},0);
7
+ }};;ManyBox.init();google.History&&google.History.initialize('/search?q\x3dcrowdint\x26amp;num\x3d\x26amp;start\x3d0')});if(google.j&&google.j.en&&google.j.xi){window.setTimeout(google.j.xi,0);google.fade=null;}</script></div><script>(function(){
8
+ var b,d,e,f;function g(a,c){if(a.removeEventListener){a.removeEventListener("load",c,false);a.removeEventListener("error",c,false)}else{a.detachEvent("onload",c);a.detachEvent("onerror",c)}}function h(a){f=(new Date).getTime();++d;a=a||window.event;var c=a.target||a.srcElement;g(c,h)}var i=document.getElementsByTagName("img");b=i.length;d=0;for(var j=0,k;j<b;++j){k=i[j];if(k.complete||typeof k.src!="string"||!k.src)++d;else if(k.addEventListener){k.addEventListener("load",h,false);k.addEventListener("error",
9
+ h,false)}else{k.attachEvent("onload",h);k.attachEvent("onerror",h)}}e=b-d;function l(){if(!google.timers.load.t)return;google.timers.load.t.ol=(new Date).getTime();google.timers.load.t.iml=f;google.kCSI.imc=d;google.kCSI.imn=b;google.kCSI.imp=e;google.report&&google.report(google.timers.load,google.kCSI)}if(window.addEventListener)window.addEventListener("load",l,false);else if(window.attachEvent)window.attachEvent("onload",l);google.timers.load.t.prt=(f=(new Date).getTime());
10
+ })();
11
+ </script>
12
+ }
13
+ end
14
+
15
+ def yahoo_response
16
+ %{
17
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
18
+ <html lang="en"><head><meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"><script>var pL=0, pUrl='http://ybinst.ec.yimg.com/ec/fd/ls/l?IG=4a06748cb9d149fcbc4c6c82ad53603c&CID=4a06748cb9d149fcbc4c6c82ad53603c&Type=Event.CPT';function SLB(s,pUrl){var url,img=new Image(),dat='&DATA=';dat+=s?'%7B%22pp%22%3A%7B%22S%22%3A%22A%22%7D%7D':'%7B%22pp%22%3A%7B%22S%22%3A%22L%22%7D%7D';url=pUrl+dat;img.src=url+'&'+(new Date()).getTime();pL=1}window.onunload=function(){(!pL)?SLB("A",pUrl):""};window.onload=function(){SLB("",pUrl)};(function(){var h=document.documentElement;h.className+=" js";(new Image()).src='http://a.l.yimg.com/a/i/us/sch/gr4/srp_metro_20090910.png';})();</script><link rel="alternate" type="application/rss+xml" title="Yahoo! Search results for crowdint" href="http://api.search.yahoo.com/WebSearchService/rss/webSearch.xml?appid=yahoosearchwebrss&query=crowdint&adult_ok=1"><title>crowdint - Yahoo! Search Results</title><link rel="stylesheet" type="text/css" href="http://a.l.yimg.com/a/lib/s6/srp_metro_yui3_201008171215.css"><style type="text/css">s,.sprt,#logo,#att_icon,#verizon_icon .ico,#at-tog,.h-gui-icon,.ssbang,.sschk,.ssochk,.ssbx,#ss a.ss-remove,.ads a.pp-l,.news-nph,.stars-sm span,.stars-lg span,.thmbplay,.sc-promo-img,.sc-close{background-image:url(http://a.l.yimg.com/a/i/us/sch/gr4/srp_metro_20090910.png);}.msg404{background-color:#7B0099;color:#FFF;margin-left:197px;padding:5px;line-height:1.5em;}.msg404 h1{font-size:138.5%;display:inline;margin-left:5px;*margin-left:0;}.msg404 .ico{float:left;width:22px;height:22px;top:-2px;left:-2px;border:none;margin-right:2px;}.msg404 .ico img{width:22px;height:22px;vertical-align:top;border:1px solid #7B0099;}.msg404 a,.custom a:visited{color:#FFF;}.msg404 p{margin-left:28px;}.msg404 .relmsg{font-weight:bold;}.msg404 .relmsg cite{font-weight:normal;}</style></head><body id="ysch" class=" UNKNOWN windows vUNKNOWN"><div id="doc"><h1 class="off-left">Yahoo! Web Search</h1><div id="uh" data-bns="Yahoo" data-bk="3.1"><ul class="l"><li class="hi">Hi, <strong>Guest</strong></li><li><a href="https://login.yahoo.com/config/login?.pd=c%3Dolq_tAyp2e48EO0kDrSGSlM-&.src=srchp&.done=http%3A%2F%2Fsearch.yahoo.com%2Fsearch%3Fei%3DUTF-8%26p%3Dcrowdint" target="_top">Sign In</a></li><li><a href="http://help.yahoo.com/l/us/yahoo/search/">Help</a></li></ul><ul class="r"><li><a href="http://www.yahoo.com/bin/set">Make Yahoo! your homepage</a></li><li><a href="http://mail.yahoo.com/">Mail</a></li></ul></div><div id="hd" data-bns="Yahoo" data-bk="3.1"><a id="logo" href="http://www.yahoo.com/">Yahoo!</a><form id="sf" name="s" method="get" action="http://search.yahoo.com/search" accept-charset="utf-8"><div class="bd"><ul id="tabs" class="tabs"><li class="on"><strong>Web</strong></li><li><a href="http://images.search.yahoo.com/search/images?ei=UTF-8&p=crowdint&fr2=tab-web">Images</a></li><li><a href="http://video.search.yahoo.com/search/video?ei=UTF-8&p=crowdint&fr2=tab-web">Video</a></li><li><a href="http://search.yahoo.com/ypredirect?ei=UTF-8&p=crowdint&fr2=tab-web">Local</a></li><li><a href="http://shopping.yahoo.com/search?cop=mss&ei=UTF-8&p=crowdint&fr2=tab-web">Shopping</a></li><li><a href="http://news.search.yahoo.com/search/news?ei=UTF-8&p=crowdint&fr2=tab-web">News</a></li><li class="menu"><a id="vm-link" class="menu-link" href="http://tools.search.yahoo.com/about/forsearchers.html">More<s></s></a><div id="vm-menu" class="menu-bd"><ul><li><a href="http://search.yahoo.com/sponsored_search?ei=UTF-8&p=crowdint&fr2=tab-web&fr=">Sponsors</a></li><li><a href="http://answers.yahoo.com/search/search_result?ei=UTF-8&p=crowdint&fr2=tab-web&fr=">Answers</a></li><li><a href="http://search.yahoo.com/search/dir?ei=UTF-8&p=crowdint&fr2=tab-web&fr=">Directory</a></li><li><a href="http://hotjobs.yahoo.com/jobseeker/jobsearch/search_results.html?b=0&keywords_all=crowdint&fr2=tab-web&fr=" id="tab-jobs">Jobs</a></li><li><a href="http://sports.search.yahoo.com/search?ei=UTF-8&p=crowdint&fr2=tab-web&fr=">Sports</a></li><li><a href="http://finance.search.yahoo.com/search?ei=UTF-8&p=crowdint&fr2=tab-web&fr=">Finance</a></li><li><a href="http://tools.search.yahoo.com/about/forsearchers.html">All Search Services</a></li></ul></div></li></ul><div id="sbx"><label for="yschsp" class="off-left">Search query</label><input type="text" class="sbq" id="yschsp" name="p" role="search" value="crowdint" tabindex="1" autocomplete="off"><input type="submit" class="sbb" value="Search" tabindex="2"><input type="hidden" name="fr2" value="sb-top"></div><div id="so" class="menu"><a id="so-link" class="menu-link" href="http://search.yahoo.com/preferences/preferences">Options<s></s></a><div id="so-menu" class="menu-bd"><ul><li><a href="http://search.yahoo.com/web/advanced?ei=UTF-8&p=crowdint&b=0">Advanced Search</a></li><li><a href="http://search.yahoo.com/preferences/preferences?pref_done=http%3A%2F%2Fsearch.yahoo.com%2Fsearch%3Fei%3DUTF-8%26p%3Dcrowdint%26b%3D0&.bcrumb=">Preferences</a></li></ul><hr><ul><li><a href="http://searchmarketing.yahoo.com/arp/srch_ss.php?o=US2117&cmp=Yahoo&ctv=SERP_tab&s=Y&s2=S&s3=&b=25">Advertising Programs</a></li><li><a href="http://tools.search.yahoo.com/searchtour.html">Page Tour</a></li><li><a href="http://help.yahoo.com/l/us/yahoo/search/basics/basics-23.html">About This Page</a></li></ul></div></div><div role="application"><h2 class="off-left">Search Assist</h2><a id="at-tog" href="#">Toggle Search Assist</a><div id="atlr" role="status" aria-live="polite"></div><div id="at" class="sa-hidden"><div id="atgrad"></div><div id="at-l"><div id="atg"></div><div id="atf"></div></div><div id="at-r"><div id="atv"></div><div id="atlinks"><a href="http://search.yahoo.com/preferences/preferences?page=search_assist&pref_done=http%3A%2F%2Fsearch.yahoo.com%2Fsearch%3Fei%3DUTF-8%26p%3Dcrowdint%26b%3D0&.bcrumb=">Settings</a></div></div></div></div></div><div class="ft"></div></form></div><div id="bd" role="document"><div id="sidebar" data-bns="Yahoo" data-bk="6.1"><div class="hd"><div id="safety-status" class="app safety"><h2 class="app-lbl"><a href="http://search.yahoo.com/preferences/preferences?pref_done=http%3A%2F%2Fsearch.yahoo.com%2Fsearch%3Fei%3DUTF-8%26p%3Dcrowdint&.bcrumb=#safesearch"><s class="ico"></s>SearchScan - On</a></h2></div></div><div class="bd"><hr><h3 class="query"><span class="count"><strong id="resultCount">1,430,000</strong> results for</span><br><span class="query">crowding:</span></h3><h2 class="off-left">Search Refiners</h2><ul><li class="flt"><a href="http://search.yahoo.com/search?fr2=showall&p=crowding" class="ajax active" beacon="http://rds.yahoo.com/b.gif"><span class="ico flt all"><s></s></span>Show All</a></li><li class="flt"><a href="http://search.yahoo.com/search?fr2=site&p=crowding+refinesite:en.wikipedia.org&vst=0&vs=en.wikipedia.org" class="ajax" beacon="http://rds.yahoo.com/b.gif"><span class="ico flt"><img class="js" __src="http://a.l.yimg.com/a/i/us/search/favicon/w/i/wikipedia.org.png" alt=""><noscript><img class="nojs" src="http://a.l.yimg.com/a/i/us/search/favicon/w/i/wikipedia.org.png" alt=""></noscript></span>Wikipedia</a></li><li class="flt"><a href="http://search.yahoo.com/search?fr2=site&p=crowding+refinesite:thefreedictionary.com&vst=0&vs=thefreedictionary.com" class="ajax" beacon="http://rds.yahoo.com/b.gif"><span class="ico flt"><img class="js" __src="http://a.l.yimg.com/a/i/us/search/favicon/t/h/thefreedictionary.com.png" alt=""><noscript><img class="nojs" src="http://a.l.yimg.com/a/i/us/search/favicon/t/h/thefreedictionary.com.png" alt=""></noscript></span>The Free Dictionary</a></li><li class="flt"><a href="http://search.yahoo.com/search?fr2=site&p=crowding+refinesite:merriam-webster.com&vst=0&vs=merriam-webster.com" class="ajax" beacon="http://rds.yahoo.com/b.gif"><span class="ico flt"><img class="js" __src="http://a.l.yimg.com/a/i/us/search/favicon/m/e/merriam-webster.com.png" alt=""><noscript><img class="nojs" src="http://a.l.yimg.com/a/i/us/search/favicon/m/e/merriam-webster.com.png" alt=""></noscript></span>Merriam-Webster</a></li><li class="flt last"><a href="http://search.yahoo.com/search?fr2=site&p=crowding+refinesite:medical-dictionary.thefreedictionary.com&vst=0&vs=medical-dictionary.thefreedictionary.com" class="ajax" beacon="http://rds.yahoo.com/b.gif" title="TheFreeDictionary Medical Dictionary"><span class="ico flt"><img class="js" __src="http://a.l.yimg.com/a/i/us/search/favicon/t/h/thefreedictionary.com.png" alt=""><noscript><img class="nojs" src="http://a.l.yimg.com/a/i/us/search/favicon/t/h/thefreedictionary.com.png" alt=""></noscript></span>TheFreeDictionary Me</a></li></ul></div></div><div id="results"><style type="text/css">.sm-plain .thmbplay,span.sm-ldg,a.sm-cls,span.sm-flg,a.sm-flg,a.sm-snd,a.sm-hlp,a.sm-ext,a.sm-ext-u,.bbl-cls,#ysch .yui-dialog .container-close,#ysch .yui-dialog div.on,.sm-ctl-b,.sm-ctl-t{background-image:url(http://a.l.yimg.com/a/i/us/sch/gr4/smsprt_20090407.png);background-repeat:no-repeat;font-size: 0;}</style><div class="qrw msg" data-bns="Yahoo" data-bk="112.1"><h2 id='cquery' value='crowding'><strong>We have included <a href="http://search.yahoo.com/search?ei=UTF-8&p=crowding&SpellState=&fr2=sp-qrw-corr-top"><strong><i>crowding</i></strong></a> results</strong> - Show only <a href=http://search.yahoo.com/search?ei=UTF-8&p=%2Bcrowdint&fr2=sp-qrw-orig-top&norw=1>crowdint</a></h2></div><div id="cols"><div id="left"><div id="main"><div id="web" role="main"><h2>Search Results</h2><ol start="1" data-bns="API"><li><div class="res"><div><h3><a class="yschttl spt" href="http://www.thefreedictionary.com/crowding" data-bk="5047.1"><b>crowding</b> - definition of <b>crowding</b> by <wbr />the Free Online Dictionary ...</a></h3></div><div class="abstr">crowd 1 (kroud) n. 1. A large number of persons gathered together; a throng. 2. The common people; the populace. 3. A group of people united by a common characteristic, as ...</div><span class=url>www.<b>thefreedictionary.com</b>/<b>crowding</b></span> - <a href="http://74.6.116.140/search/srpcache?ei=UTF-8&p=crowdint&u=http://cc.bingj.com/cache.aspx?q=crowdint&d=4867396359293241&mkt=en-US&setlang=en-US&w=e5319b45,2d0b3bdf&icp=1&.intl=us&sig=qnD7eXocmY.ycQ.f9raQIw--" data-bk="5049.1">Cached</a></div></li><li><div class="res"><div><h3><a class="yschttl spt" href="http://www.crowdint.com/" data-bk="5064.1">People-Powered Applications | Crowd <wbr />Interactive</a></h3></div><div class="abstr">Be the first to hear about the latest Web 2.0 developments with the Insider&#39;s Report</div><span class=url>www.<b>crowdint.com</b></span> - <a href="http://74.6.116.140/search/srpcache?ei=UTF-8&p=crowdint&u=http://cc.bingj.com/cache.aspx?q=crowdint&d=5066352129804547&mkt=en-US&setlang=en-US&w=fd2d9f30,182a9090&icp=1&.intl=us&sig=mfd15bam9ebu4rxfY1hHuA--" data-bk="5066.1">Cached</a></div></li><li><div id="sm-3" class="res sm sm-basic sm-noctl" data-bns="Yahoo" data-bk="103.1"><div class="sm-hd"><h3><a class="yschttl spt" href="http://en.wikipedia.org/wiki/Crowding_out_(economics)" data-bns="API" data-bk="5092.1"><b>Crowding</b> out (economics) - Wikipedia, <wbr />the free encyclopedia</a></h3></div><div class="sm-bd" id="sm-bd-3-1"><div class="sm-i"><div class="sm-links"><ul><li class="first"><a rel="nofollow" class="spt" href="http://en.wikipedia.org/wiki/Crowding_out_(economics)#Crowding_out_resources">Crowding out resources</a>|</li><li><a rel="nofollow" class="spt" href="http://en.wikipedia.org/wiki/Crowding_out_(economics)#Crowding_out_demand">Crowding out demand</a>|</li><li><a rel="nofollow" class="spt" href="http://en.wikipedia.org/wiki/Crowding_out_(economics)#See_also">See also</a>|</li><li><a rel="nofollow" class="spt" href="http://en.wikipedia.org/wiki/Crowding_out_(economics)#Notes">Notes</a></li></ul></div><div class="sm-abs">In economics, <b>crowding </b>out is any reduction in private consumption or investment that occurs because of an increase in government spending. If the increase in government spending is financed by a tax increase, the tax...</div><div class="sm-url"><span class=url><b>en.wikipedia.org</b>/wiki/<b>Crowding</b>_out_<wbr />(economics)</span> - <a href="http://74.6.116.140/search/srpcache?ei=UTF-8&p=crowdint&u=http://cc.bingj.com/cache.aspx?q=crowdint&d=4971901505373824&mkt=en-US&setlang=en-US&w=3bb49c3e,756e8821&icp=1&.intl=us&sig=r4GJ8yqUB6cmqVYc3FUl6A--" data-bns="API" data-bk="5094.1">Cached</a></div></div></div></div></li><li><div id="sm-4" class="res sm sm-basic sm-noctl" data-bns="Yahoo" data-bk="104.1"><div class="sm-hd"><h3><a class="yschttl spt" href="http://en.wikipedia.org/wiki/Crowding_out" data-bns="API" data-bk="5119.1"><b>Crowding</b> out - Wikipedia, the free <wbr />encyclopedia</a></h3></div><div class="sm-bd" id="sm-bd-4-1"><div class="sm-i"><div class="sm-abs"><b>Crowding </b>out can refer to: <b>Crowding </b>out (biology) <b>Crowding </b>out (economics) Motivation <b>crowding </b>theory</div><div class="sm-url"><span class=url><b>en.wikipedia.org</b>/wiki/<b>Crowding</b>_out</span> - <a href="http://74.6.116.140/search/srpcache?ei=UTF-8&p=crowdint&u=http://cc.bingj.com/cache.aspx?q=crowdint&d=4896374504031390&mkt=en-US&setlang=en-US&w=52901f7b,ac7e9caf&icp=1&.intl=us&sig=aP2ftxua2HBXBHOgXmGb8Q--" data-bns="API" data-bk="5121.1">Cached</a></div></div></div></div></li><li><div class="res"><div><h3><a class="yschttl spt" href="http://www.merriam-webster.com/dictionary/crowding" data-bk="5146.1"><b>Crowding</b> - Definition and More from the <wbr />Free Merriam-Webster ...</a></h3></div><div class="abstr">Definition of crowd from the Merriam-Webster Online Dictionary with audio pronunciations, thesaurus, Word of the Day, and word games.</div><span class=url>www.<b>merriam-webster.com</b>/dictionary/<wbr /><b>crowding</b></span> - <a href="http://74.6.116.140/search/srpcache?ei=UTF-8&p=crowdint&u=http://cc.bingj.com/cache.aspx?q=crowdint&d=5025979438990532&mkt=en-US&setlang=en-US&w=d2535f24,f58e791&icp=1&.intl=us&sig=YjWertGArzEqw8gPYABwDg--" data-bk="5148.1">Cached</a></div></li><li><div class="res"><div><h3><a class="yschttl spt" href="http://www.investorwords.com/6470/crowding_in.html" data-bk="5163.1"><b>crowding</b> in Definition</a></h3></div><div class="abstr"><b>crowding</b> in - definition of <b>crowding</b> in - An economic principle in which private investment increases as debt-financed government spending increases. This is caused by ...</div><span class=url>www.<b>investorwords.com</b>/6470/<b>crowding</b>_<wbr />in.html</span> - <a href="http://74.6.116.140/search/srpcache?ei=UTF-8&p=crowdint&u=http://cc.bingj.com/cache.aspx?q=crowdint&d=4806304746702344&mkt=en-US&setlang=en-US&w=24ed4e8c,10c6fe82&icp=1&.intl=us&sig=uYNs.nuYfYyQyKUZq8LjeA--" data-bk="5165.1">Cached</a></div></li><li><div class="res"><div><h3><a class="yschttl spt" href="http://thesaurus.com/browse/crowding" data-bk="5189.1"><b>Crowding</b> Synonyms, <b>Crowding</b> Antonyms | <wbr />Thesaurus.com</a></h3></div><div class="abstr">Find <b>crowding</b> synonyms and <b>crowding</b> antonyms at Thesaurus.com, a free online Thesaurus and Synonym Dictionary.</div><span class=url><b>thesaurus.com</b>/browse/<b>crowding</b></span> - <a href="http://74.6.116.140/search/srpcache?ei=UTF-8&p=crowdint&u=http://cc.bingj.com/cache.aspx?q=crowdint&d=4697371490256397&mkt=en-US&setlang=en-US&w=8fa37590,36747603&icp=1&.intl=us&sig=fxXo3Mm6DXp0B7KX47x.hQ--" data-bk="5191.1">Cached</a></div></li><li><div class="res"><div><h3><a class="yschttl spt" href="http://medical-dictionary.thefreedictionary.com/crowding" data-bk="5216.1"><b>crowding</b> - definition of <b>crowding</b> in <wbr />the Medical dictionary - by ...</a></h3></div><div class="abstr">crowd?ing (krou d ng) n. A condition in which the teeth are crowded in the dental arch, assuming altered positions, as by overlapping and twisting.</div><span class=url><b>medical-<wbr />dictionary.thefreedictionary.com</b><wbr />/<b>crowding</b></span> - <a href="http://74.6.116.140/search/srpcache?ei=UTF-8&p=crowdint&u=http://cc.bingj.com/cache.aspx?q=crowdint&d=4757458081218607&mkt=en-US&setlang=en-US&w=2ad4a8b8,b43256d2&icp=1&.intl=us&sig=Evi6pPtU3q7Od7IXokFujw--" data-bk="5218.1">Cached</a></div></li><li><div class="res"><div><h3><a class="yschttl spt" href="http://nature.com/embor/journal/v5/n1/full/7400056.html" data-bk="5233.1">Life in a crowded world</a></h3></div><div class="abstr">Moreover, <b>crowding</b> must also be considered in total genome and proteome analyses to develop quantitative global models of intracellular processes.</div><span class=url><b>nature.com</b>/embor/journal/v5/n1/full/<wbr />7400056.html</span></div></li><li><div class="res"><div><h3><a class="yschttl spt" href="http://ebody-specialist.com/orthodontics/crowding.html" data-bk="5258.1">eBody.com: <b>Crowding</b></a></h3></div><div class="abstr"><b>Crowding</b> can be inherited and teeth may shift as one ages. Individuals that had perfect teeth as a teenager may find that they have crowded teeth as an adult.</div><span class=url><b>ebody-specialist.com</b>/orthodontics/<wbr /><b>crowding</b>.html</span> - <a href="http://74.6.116.140/search/srpcache?ei=UTF-8&p=crowdint&u=http://cc.bingj.com/cache.aspx?q=crowdint&d=4845277279029856&mkt=en-US&setlang=en-US&w=8a5a2164,f9ca4bb2&icp=1&.intl=us&sig=PxgQlwaKNs6twWA8aG59uQ--" data-bk="5260.1">Cached</a></div></li></ol></div></div></div><div id="right"></div></div><h2 class="off-left">More search results</h2><div id="pg" data-bns="Yahoo" data-bk="123.1"><strong>1</strong> <a href="http://search.yahoo.com/search?p=crowdint&xargs=0&pstart=1&b=11&xa=nD1SNO8A8yM0wJ5v_363ow--,1282266157" title="Results 11 - 20">2</a> <a href="http://search.yahoo.com/search?p=crowdint&xargs=0&pstart=1&b=21&xa=buiPgh4WBhbrJ9CMWvKa5A--,1282266157" title="Results 21 - 30">3</a> <a href="http://search.yahoo.com/search?p=crowdint&xargs=0&pstart=1&b=31&xa=0MzN085CROLaTLTo.ZbCJQ--,1282266157" title="Results 31 - 40">4</a> <a href="http://search.yahoo.com/search?p=crowdint&xargs=0&pstart=1&b=41&xa=B6aLIE1LeQOoqCFj2BWCSQ--,1282266157" title="Results 41 - 50">5</a> <a href="http://search.yahoo.com/search?p=crowdint&xargs=0&pstart=1&b=51&xa=LL421XCWitGv7JJZkkfbvQ--,1282266157" title="Results 51 - 60">6</a> <a href="http://search.yahoo.com/search?p=crowdint&xargs=0&pstart=1&b=61&xa=N0yPi0lRHmmjz68pJaki5w--,1282266157" title="Results 61 - 70">7</a> <a href="http://search.yahoo.com/search?p=crowdint&xargs=0&pstart=1&b=71&xa=Uwtbk7UeiOp67Y9tt3NzmQ--,1282266157" title="Results 71 - 80">8</a> <a href="http://search.yahoo.com/search?p=crowdint&xargs=0&pstart=1&b=81&xa=HxdbWf9p1tKYFSun.XM6Bw--,1282266157" title="Results 81 - 90">9</a> <a href="http://search.yahoo.com/search?p=crowdint&xargs=0&pstart=1&b=91&xa=lpUEUtdCGvRD.E.zSOMzUw--,1282266157" title="Results 91 - 100">10</a> <a href="http://search.yahoo.com/search?p=crowdint&xargs=0&pstart=1&b=101&xa=riAOVVcIHwd3lM7.O370.g--,1282266157" title="Results 101 - 110">11</a> <a id="pg-next" href="http://search.yahoo.com/search?p=crowdint&xargs=0&pstart=1&b=11&xa=nD1SNO8A8yM0wJ5v_363ow--,1282266157">Next &gt;</a></div></div><div class="bdc" data-bns="Yahoo" data-bk="123.1"><form method="get" name="sB" id="sB" action="http://search.yahoo.com/search" accept-charset="utf-8"><div id="sbx-bot"><label for="yschsp-bot" class="off-left">Search query</label><input type="text" class="sbq" id="yschsp-bot" name="p" role="search" value="crowdint"><input type="submit" class="sbb" value="Search"><input type="hidden" name="fr2" value="sb-bot"></div></form><div class="promo-bot"><!-- SpaceID=0 robot -->
19
+ </div></div></div><div id="ft" class="ft-b" role="contentinfo" data-bns="Yahoo" data-bk="9.1"><p><span class="copyright">&copy; 2010 Yahoo!</span> <a href="http://help.yahoo.com/l/us/yahoo/search/">Help</a> - <a href="http://tools.search.yahoo.com/searchtour.html">Page Tour</a> - <a href="http://info.yahoo.com/privacy/us/yahoo/search/details.html">Privacy (<span class="updt">Updated</span>)</a> / <a href="http://info.yahoo.com/legal/us/yahoo/utos/utos-173.html">Legal</a> - <a href="http://info.yahoo.com/relevantads/">About Our Ads</a> - <a href="http://search.yahoo.com/info/submit.html">Submit Your Site</a></p><p class="pbb">Powered by Bing&trade;</p></div></div><!-- SpaceID=0 robot -->
20
+ <script src="http://a.l.yimg.com/a/lib/s6/srp_metro_yui3_201006181747.js"></script><script>Y.use("srp",function(){Y.Search.SRP.init({"enable_sidebar_collapse":false,"pvid":"udHJ_EoGdIzYVu2W.xc26ws82PC1RExsgq0AA2A1","url_img_progress":"http:\/\/a.l.yimg.com\/a\/i\/us\/sch\/gr4\/sp-progress2.gif"},{"aria_loading_results":"Retrieving search results. Please wait.","aria_results_loaded":"New search results have been retrieved. Press control shift and down arrow key to jump to the first search result. Press control shift and up arrow key to jump back to the search box.","common.expando.playvideo":"Play Video","common.expando.closevideo":"Close Video","common.results.error":"Sorry, there was a problem retrieving search results. Please try again.","common.results.loading":"Loading results...","srp.title":"%q - Yahoo! Search Results"});});Y.Search.addEventListener(window,"load",function(){Y.use("srp-bing-beacon", function(){Y.Search.SRP.initBTrack({"cUrl":"http:\/\/ybinst.ec.yimg.com\/ec\/fd\/ls\/GlinkPing.aspx?IG=4a06748cb9d149fcbc4c6c82ad53603c\u0026CID=4a06748cb9d149fcbc4c6c82ad53603c","pUrl":"http:\/\/ybinst.ec.yimg.com\/ec\/fd\/ls\/l?IG=4a06748cb9d149fcbc4c6c82ad53603c\u0026CID=4a06748cb9d149fcbc4c6c82ad53603c\u0026Type=Event.CPT","Attr":["data-bns","data-bk"]})});});Y.use("srp-assist",function(){Y.Search.SRP.Assist.init({"p":"crowdint","gp":{"q":"crowdint","u":"http:\/\/sugg.us.search.yahoo.net\/gossip-us-sayt\/?output=yjsonp\u0026nresults=10\u0026l=1\u0026command=\#{q}","i":null,"s":"http:\/\/search.yahoo.com\/search","r":[]},"vp":{"q":"crowdint","s":"http:\/\/search.yahoo.com\/search?rp=crowdint","v":[]},"beacons":{"sa-op":"http:\/\/rds.yahoo.com\/b.gif","sa-cl":"http:\/\/rds.yahoo.com\/b.gif","sa-aop":"http:\/\/rds.yahoo.com\/b.gif"},"spaceid":2766679,"testid":"","hostpvid":"udHJ_EoGdIzYVu2W.xc26ws82PC1RExsgq0AA2A1","ss":2,"zipWoeId":12796275},{"aria_available_suggestions":"Search suggestions are available, use the up and down arrow keys to review them.","aria_no_available_suggestions":"No suggestion is available.","inputTitle":"Use the up and down arrow keys to select suggestions, or press down and then right to explore related concepts.","linkTitle":"Search for \#{q}","gossip_desc":"Search suggestions:","viewpoint_desc":"Explore related concepts:","scroll_up":"Scroll suggestions up","scroll_down":"Scroll suggestions down","scroll_left":"Scroll suggestions left","scroll_right":"Scroll suggestions right","start_typing":"Start typing to see suggestions.","no_suggestions":"No available suggestions."});});Y.Search.addEventListener(window,'load',function(){setTimeout(function(){Y.use('simple-loader',function(){Y.Search.Loader.js('http://a.l.yimg.com/a/lib/s6/yui-3.1.1-lazy_201006181742.js','http://a.l.yimg.com/a/lib/s6/srp_metro_lazy_yui3_bing_201008080841.js');});},0);});</script></body></html><!-- fe89.search.sk1.yahoo.com uncompressed/chunked Wed Aug 18 18:02:37 PDT 2010 -->
21
+ }
22
+ end
23
+
24
+ def bing_response
25
+ %{
26
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:Web="http://schemas.live.com/Web/"><head><meta content="text/html; charset=utf-8" http-equiv="content-type" /><script type="text/javascript">//<![CDATA[
27
+ si_ST=new Date
28
+ //]]></script><script type="text/javascript">//<![CDATA[
29
+ _G={ST:(si_ST?si_ST:new Date),Mkt:"en-US",RTL:false,Ver:"6_07_0_655430",IG:"de972df8618d42948aea6029bbeeb2b0",EventID:"6516F25171314770A34F9AFEF90D3CF2",P:"SERP",DA:"Bay",CID:"89C611984B7442A7BF123A5B3692AC59",PCId:"1",cUrl:"http:\/\/c.bing.com\/c.gif?DI=15074",akamaiSyncUrl:"http:\/\/cms.abmr.net\/pix?cid=1237&amp;uid=",gpUrl:"\/fd\/ls\/GLinkPing.aspx?"};_G.lsUrl="/fd/ls/l?IG="+_G.IG+"&CID="+_G.CID+"&PM=Y";curUrl="http:\/\/www.bing.com\/search";function si_T(a){if(document.images){_G.GPImg=new Image;_G.GPImg.src=_G.gpUrl+'IG='+_G.IG+'&CID='+_G.CID+'&PM=Y'+a;}return true;};_w=window;_d=document;sb_de=_d.documentElement;sb_ie=!!_w.ActiveXObject;sb_i6=sb_ie&&!_w.XMLHttpRequest;function _ge(a){return _d.getElementById(a)}sb_st=_w.setTimeout;sb_ct=_w.clearTimeout;sb_gt=function(){return(new Date).getTime()};function si_PP(e,c){if(!_G.PPS){for(var d='"',b=["PC","FC","BC","BS","H","C1","C2","BP","KP"],a=0;a<b.length;a++)d+=',"'+b[a]+'":'+(_G[b[a]+"T"]?_G[b[a]+"T"]-_G.ST:-1);_G.PPImg=new Image;_G.PPImg.src=_G.lsUrl+'&Type=Event.CPT&DATA={"pp":{"S":"'+(c?c:"L")+d+',"CT":'+(e-_G.ST)+',"IL":'+_d.images.length+(_w.sb_ppCPL?',"CP":1':"")+"}}"+(_G.P?"&P="+_G.P:"")+(_G.DA?"&DA="+_G.DA:"");_G.PPS=1;sb_st(function(){sj_evt.fire("onPP")},1)}}_w.onbeforeunload=function(){si_PP(new Date,"A")};sj_evt=new function(){var a={},b=this;function c(b){return a[b]||(a[b]=[])}b.fire=function(e){for(var a=c(e),d=a.e=arguments,b=0;b<a.length;b++)if(a[b].d)sb_st(sj_wf(a[b],d),a[b].d);else a[b](d)};b.bind=function(f,a,d,e){var b=c(f);a.d=e;b.push(a);d&&b.e&&a(b.e)};b.unbind=function(e,d){for(var c=0,b=a[e];b&&c<b.length;c++)if(b[c]==d){b.splice(c,1);break}}};
30
+ //]]></script><style type="text/css">body{color:#000;background:#fff url(/fd/s/a/s.png) repeat-x 0 -76px;font:small/normal Arial,Helvetica,Sans-Serif;margin:0;min-width:1000px}a{color:#04c;text-decoration:none}a:visited{color:#639}a:hover,h3 a{text-decoration:underline}h1,h2,h3,h4,h5,h6{font-size:small;font-weight:200;margin:0}h1{font-size:93%}h2,h3{font-size:125%}h1,h1 a,h1 a:visited,h2,h2 a,h2 a:visited{color:#e66400}h2{margin:0 0 .62em}img{border:0}cite,.sb_cite{color:#388222;font-style:normal;word-wrap:break-word}strong{font-weight:700}.sb_count,.sb_meta{color:#737373}.sb_meta a,.sb_meta a:visited{color:#5077bb}.sb_alert{color:#d90026}.sb_alert a{font-style:italic}#sw_hdr,#sw_content,#sw_main,#sw_foot{width:100%;float:left}#sw_content{position:static;z-index:3;min-height:344px}#sw_canvas{padding:0 0 0 15px;clear:both}#sw_main{_display:inline;margin:0 0 0 -15px;padding:0 0 1.54em 15px}.sb_results,.sb_results ul,.sb_results li,.sb_results li li{list-style-type:none;margin:0;padding:0}.sb_results li{padding:0 0 1.08em}.sb_results p{margin:0;line-height:1.2em;word-wrap:break-word}.sb_results .sb_meta{line-height:1.2em}.sb_results .sb_meta li,.sp_pss li{display:inline}.sb_pag{padding:0;margin:0;width:100%;float:left}.sb_pag ul,.sb_pag li{list-style:none;margin:0;padding:0}.sb_pag li{float:left}.sb_pag h4{display:none}.sb_pag a,.sb_pag span{display:block;padding:.3em .7em;margin:0 .38em 0 0;text-align:center}a.sb_pagP,a.sb_pagN,span.sb_pagSp{padding:.38em .5em}.sb_pag a:hover,a.sb_pagS{text-decoration:none;background:#ededed}a.sb_pagS{color:#000}a.sb_pagP{margin-right:.7em;padding-left:0}a:hover.sb_pagP,a:hover.sb_pagN{text-decoration:underline;background-color:transparent}a.sb_pagP:visited,a.sb_pagN:visited{color:#04c}#sw_hdr{min-height:70px;_height:70px;padding:0 0 30px 0}#sw_im{position:absolute;z-index:-1;height:100px;width:620px;top:0;left:190px;background:no-repeat;opacity:0;filter:alpha(opacity=0)}.sw_logo{background:url(/fd/s/a/s.png) 0 -33px;display:block;_display:inline;height:40px;width:112px;margin:-39px 52px 0 20px;float:left}.sw_logoT{color:#000;font-size:170%;line-height:normal;position:absolute;z-index:-1}#sw_hdr .sw_box{padding:49px 0 0;margin:0;float:left;position:relative;z-index:1001;width:100%;line-height:1.38em}#sw_hdr .sw_bd{margin-top:-2.43em}.sb_form_align{margin:-50px 0 0 600px;padding:0 0 0 .53em}.sw_box .sb_form_align{text-align:right;padding:0}.sw_t,.sw_t *,.sw_t a:visited{color:#fff}.sw_t{line-height:1.52em;width:100%;float:left}.sw_tc{background:#525051 url(/fd/s/a/s.png) 0 -76px;background:-webkit-gradient(linear,left top,left bottom,from(#768b9e),to(#9fabb9));position:absolute;left:0;z-index:-2;height:1.5em;width:100%}.sw_t ul{float:left;margin:0;padding:0 0 0 20px}.sw_t li{padding:0 .85em 0 0;display:inline;zoom:1}ul.sw_tm{padding:0}ul.sw_tn{float:right;white-space:nowrap;padding:0 20px}.sw_tn li{padding:0 0 0 .85em}.sw_u{font-weight:bold;padding:0 .77em 0 0}.sw_bd{position:relative;float:left;font-size:medium}.sw_b{font-size:125%;float:left;border:1px #e5e5e5 solid;background:#fff;padding:.15em .15em .85em 0;white-space:nowrap}.sw_b input{float:left;border:0;margin:0 0 -.8em;font-size:100%;padding:.05em .25em .25em .45em;width:18.7em;-webkit-appearance:none;outline:none}.sw_b .sw_qbtn{background:#e66400 url(/fd/s/a/s.png) 0 -1px;cursor:pointer;height:27px;width:27px;padding:27px 0 0;margin:0 0 -14px;overflow:hidden;font-size:0}#sw_as{left:-1px;position:relative;clear:both;display:none;font-size:small}</style><script type="text/javascript">//<![CDATA[
31
+ function sj_wf(a){var b=arguments;return function(){a.apply(null,[].slice.apply(b).slice(1))}};function sj_be(c,a,b,d){sb_ie?c.attachEvent("on"+a,b):c.addEventListener(a,b,d)}function sj_ue(c,a,b,d){sb_ie?c.detachEvent("on"+a,b):c.removeEventListener(a,b,d)};function sj_anim(k){var a=this,j,d,h,g,c,e,i,b,f;a.init=function(m,g,k,l,h){j=m;c=g;e=k;i=l;f=h;if(!b)b=c;!d&&a.start()};a.start=function(){h=sb_gt();g=Math.abs(e-c-b)/i*25;d=setInterval(a.next,25)};a.stop=function(){clearInterval(d);d=0};a.next=function(){var d=sb_gt()-h;b=c+(e-c)*d/g;if(d>=g){a.stop();b=e;f&&f()}k(j,b)}};function sj_so(b,a){b.style.filter=a>=100?"":"alpha(opacity="+a+")";b.style.opacity=a/100};function sj_fader(){return new sj_anim(function(b,a){sj_so(b,a)})};function sj_ce(d,c,b){var a=_d.createElement(d);if(c)a.id=c;if(b)a.className=b;return a};function sj_jb(h,f){for(var b=arguments,e,d,a=2,g={n:h};a<b.length;a+=2){e=b[a];d=b[a+1];sj_be(e,d,sj_wf(c,g,f,e,d))}a<3&&c(g,f);function c(a,d,b,e){b&&sj_ue(b,e,c);sj_evt.bind("onP1",function(){if(!a.l){a.l=1;var b=sj_ce("script");b.src=(d?"/fd/sa/"+_G.Ver:"/sa/"+_G.AppVer)+"/"+a.n+".js";sj_b.appendChild(b)}},1,5)}};function sj_ev(a){return sb_ie?event:a}function sj_et(a){return sb_ie?event.srcElement:a.target}function sj_mi(a){return sb_ie?event.fromElement:a.relatedTarget}function sj_mo(a){return sb_ie?event.toElement:a.relatedTarget};function sj_pd(a){if(sb_ie)event.returnValue=false;else a.preventDefault()};function sj_sp(a){if(sb_ie)a.cancelBubble=true;else a.stopPropagation()};function sj_gx(){return sb_i6?new ActiveXObject("MSXML2.XMLHTTP"):new XMLHttpRequest};function sj_go(a,c,d){var b=0;while(a.offsetParent&&a!=(d||sj_b)){b+=a["offset"+c];a=a.offsetParent}return b};function si_fbInit(d,c,e){var a=this;a.appNs=d;a.wfId=e;var b=0;a.loadCard=function(){if(!b){sj_jb(c,1);b=1}};a.openCard=function(){}};(function(){var a=0,c=sj_evt,b=[];_w.si_PP&&b.push("onPP");for(;a<b.length;a++)c.bind(b[a],d,1);!a&&d();function d(){--a<1&&c.fire("onP1")}})();function lb(){var d=sj_evt,e="onSbBusy",b;d.bind(e,c,1);function c(a){b=a[1];d.unbind(e,c)}for(var a=1;a<4;++a){var g="sb_form"+(a>1?a:""),f=_ge(g);f&&!(b&&_ge(g+"_q")==b)&&f.reset()}_w.si_sendCReq&&sb_st(si_sendCReq,800);_w.lbc&&lbc()}(function(){var a=sj_evt,c="onSbBusy",b=null;a.bind(c,function(){sb_ct(b);b=sb_st(sj_wf(a.fire,"onSbIdle"),1100)});sj_be(_d,"keydown",sj_wf(a.fire,c,_d.activeElement))})();sj_evt.bind("onHTML",function(){var a=_ge("sb_form");a&&sj_be(a,"submit",sj_wf(sj_evt.fire,"onSearch",a))});function init(){};
32
+ //]]></script><style type="text/css">#content{margin:0 0 0 -15px;padding:0 271px 0 0;max-width:666px}#results_area{float:left;width:100%}#results_container{padding:0 15px}#sidebar{float:left;margin:0 -271px 0 0;padding:0 15px 0 26px;width:230px;word-wrap:break-word}.sc_hl1,.sc_hl1 li{display:inline;margin:0;padding:0}.sb_vdl{width:100%;margin-top:.4em}#results:after,.sb_vdl:after{clear:both;content:'.';display:block;height:0;visibility:hidden}.sb_vdl ul{max-width:34%;_width:34%;margin:0 1.51em 0 3.11em;_margin:0 2.55em 0 1.18em;padding:0;float:left}.sb_vdl li{text-indent:-.77em;_text-indent:0;a:0}.sc_bullet{margin:0 .47em 0 0}.sb_ph{margin:0 0 .93em;text-align:right;color:#737373}.sb_ph h1{float:left;color:#737373;text-transform:uppercase}.sb_ph .sc_hl1,.sb_ph .sc_bullet{margin:0 0 0 .47em;font-size:93%}.sb_ph a{color:#737373;text-decoration:underline}</style><title>crowdint - Bing</title><link href="/s/wlflag.ico" rel="icon" /><link href="/search?q=crowdint&amp;count=&amp;first=0&amp;format=rss" rel="alternate" title="XML" type="text/xml" /><link href="/search?q=crowdint&amp;count=&amp;first=0&amp;format=rss" rel="alternate" title="RSS" type="application/rss+xml" /><!-- FD: 7315E3FDB88E873C5216160C483ADF10 --></head><body class="en en-US" onload="if(_w.lb)lb();"><script type="text/javascript">//<![CDATA[
33
+ _G.PCT=new Date
34
+ //]]></script><script type="text/javascript">//<![CDATA[
35
+ si_fb=new si_fbInit('FD.1','fbbsqr_c','wf11');sj_b=_d.body;
36
+ //]]></script><script type="text/javascript">//<![CDATA[
37
+ _G.AppVer="6_07_0_655430";
38
+ //]]></script><div id="sw_page"><div id="sw_width"><div id="sw_hdr"><div id="sw_im"></div><div class="sw_t"><div class="sw_tc"></div><ul id="sch_scopes"><li><a href="/?scope=web&amp;FORM=Z9FD" onmousedown="return si_T('&amp;ID=FD,20.1')">Web</a></li><li><a href="/images/search?q=crowdint&amp;FORM=BIFD" onmousedown="return si_T('&amp;ID=FD,22.1')">Images</a></li><li><a href="/videos/search?q=crowdint&amp;FORM=BVFD" onmousedown="return si_T('&amp;ID=FD,24.1')">Videos</a></li><li><a href="/shopping/search?q=crowdint&amp;mkt=en-US&amp;FORM=BPFD" onmousedown="return si_T('&amp;ID=FD,26.1')">Shopping</a></li><li><a href="/news/search?q=crowdint&amp;FORM=BNFD" onmousedown="return si_T('&amp;ID=FD,28.1')">News</a></li><li><a href="/maps/default.aspx?q=crowdint&amp;mkt=en-US&amp;FORM=BYFD" onmousedown="return si_T('&amp;ID=FD,30.1')">Maps</a></li><li><a href="/explore?q=crowdint&amp;FORM=BXFD" onmousedown="return si_T('&amp;ID=FD,32.1')">More</a></li></ul><ul class="sw_tm"><li>|</li><li><a href="http://www.msn.com/" onmousedown="return si_T('&amp;ID=FD,35.1')">MSN</a></li><li><a href="http://mail.live.com/" onmousedown="return si_T('&amp;ID=FD,37.1')">Hotmail</a></li></ul><ul class="sw_tn"><li><span class="lStatus"><a href="http://login.live.com/login.srf?wa=wsignin1.0&amp;rpsnv=11&amp;ct=1282179934&amp;rver=6.0.5286.0&amp;wp=MBI&amp;wreply=http:%2F%2Fwww.bing.com%2FPassport.aspx%3Frequrl%3Dhttp%253a%252f%252fwww.bing.com%253a80%252fsearch%253fq%253dcrowdint%2526count%253d%2526first%253d0&amp;lc=1033&amp;id=264960" onmousedown="return si_T('&amp;ID=FD,13.1')">Sign in</a></span></li><li><a href="/settings.aspx?ru=http%3a%2f%2fwww.bing.com%3a80%2fsearch%3fq%3dcrowdint%26count%3d%26first%3d0&amp;SH=1&amp;FORM=SEFD" onmousedown="return si_T('&amp;ID=FD,40.1')">San Diego, California</a></li><li><a href="/settings.aspx?ru=http%3a%2f%2fwww.bing.com%3a80%2fsearch%3fq%3dcrowdint%26count%3d%26first%3d0&amp;FORM=SEFD1" onmousedown="return si_T('&amp;ID=FD,39.1')">Preferences</a></li></ul></div><form action="/search" class="sw_box" id="sb_form"><a href="/?FORM=Z9FD1" class="sw_logo" onmousedown="return si_T('&amp;ID=FD,34.1')"><span class="sw_logoT">Bing</span></a><div class="sw_bd"><div class="sw_b"><input class="sw_qbox" id="sb_form_q" name="q" title="Enter your search term" type="text" value="crowdint" /><input class="sw_qbtn" id="sb_form_go" name="go" tabindex="0" title="Search" type="submit" value="" /></div><div id="sw_as"></div></div><input name="form" type="hidden" value="QBRE" /><div class="sb_form_align"></div></form></div><div id="sw_content"><div></div><script type="text/javascript">//<![CDATA[
39
+ _G.FCT=new Date
40
+ //]]></script><div><script type="text/javascript">//<![CDATA[
41
+ _G.BCT=new Date
42
+ //]]></script><style type="text/css">#sw_aside{width:185px;float:left;margin:0 0 0 -195px;overflow:hidden;word-wrap:break-word}.sw_menu{padding:0 20px 0 20px}.sw_menu form{margin:0;width:100%}.sw_menu h2{color:#737373;margin:0 0 .36em;font-size:91%;text-transform:uppercase}.sw_menu ul{padding:0 0 1.52em;margin:0;list-style:none}.sw_menu ul ul{padding:0}.sw_menu li{padding:0 0 .3em}#sc_sst{word-wrap:break-word;color:#737373}#sc_sst .sc_tools a{color:#5077bb}#sc_sst .first{margin-top:1em}#sb_foot{font-size:83.9%;clear:both;float:left;width:100%;border-top:solid 1px #e5e5e5}#sw_footL,#sw_footL a{color:#737373}#sb_foot ul{display:block;list-style:none;margin:5px 10px;padding:0;float:right}#sb_foot li{display:inline}#sb_foot a{margin:.4em}a#sb_feedback{color:#e66400}#sw_canvas{padding-top:1.2em}#sw_content .sb_pt{border-bottom:#e6e6e6 solid 1px;float:left;font-size:medium;line-height:1.69em;margin:-1.89em 0 0;position:relative;width:100%;min-height:1.69em}.sb_pt h1,.sb_pt .sb_ptn{float:left;font-size:125%;padding:0 20px;white-space:nowrap}.sb_ptr{font-size:81%;position:absolute;right:20px;top:.5em}.sb_ptr a,.sb_ptr a:visited{color:#000;padding:0 0 0 .77em}.sw_a{color:#e66400;font-size:94%;list-style:none;margin:0 20px -1px 0;padding:0 6px 0 6px;overflow:hidden;height:1.92em;line-height:normal;position:relative}.sw_a2{color:#e66400;font-size:81%;width:100%}.sw_a2 ul{list-style:none;border-top:#e6e6e6 solid 1px;margin:0;padding:0 0 0 20px}.sw_a li,.sw_a2 li{display:block;float:left;white-space:nowrap}.sw_a .sw_aa{_display:inline;position:relative;padding:0 6px;margin:0 -6px}.sw_a a:visited,.sw_a2 a:visited{color:#04c}.sw_a a{display:block;float:left;margin:6px 7px;padding:0 .25em}.sw_a2 li{padding:0 1.31em 0 0}.sw_aal,.sw_aar{background:#fff;width:6px;float:left;border:#e6e6e6 solid;border-width:0 0 0 1px;height:22px;margin:7px 0 0}.sw_aar{border-width:0 1px 0 0}.sw_aal:after,.sw_aar:after,.sb_ptn:before{content:'.';visibility:hidden}.sw_aat{background:#fff;float:left;font-size:100%;border-top:1px #e6e6e6 solid;border-bottom:1px #fff solid;padding:5px .25em 6px}.sw_aa1,.sw_aa2,.sw_aa3,.sw_aa4{font-size:1px;position:absolute;background:url(/fd/s/a/s.png) -58px -1px;height:7px;width:7px;z-index:10}.sw_aa1{top:0;left:6px}.sw_aa2{top:0;right:6px;background-position:-66px -1px}.sw_aa3{bottom:0;_bottom:-1px;left:0;background-position:-66px -9px}.sw_aa4{bottom:0;_bottom:-1px;right:0;background-position:-58px -9px}.sb_pt h1,.sb_ptn{min-width:140px;_width:140px;a:0}</style><style type="text/css">#sw_canvas{padding-left:195px}</style><script type="text/javascript">//<![CDATA[
43
+ function sj_we(a,c,b){while(a&&a!=(b||sj_b)){if(a==c)return!0;a=a.parentNode}return!1};function sk_merge(a){_d.cookie=a};
44
+ //]]></script><div class="sb_pt" id="sw_abar"><h1><a href="/" onmousedown="return si_T('&amp;ID=FD,2.1')">Web</a></h1><ul class="sw_a" id="sw_abarl"><li class="sw_aa"><div class="sw_aal"></div><div class="sw_aat">Web</div><div class="sw_aar"></div><div class="sw_aa1"></div><div class="sw_aa2"></div><div class="sw_aa3"></div><div class="sw_aa4"></div></li><li><a href="/reference/search?q=crowding&amp;qpvt=crowdint&amp;FORM=Z7FD" onmousedown="return si_T('&amp;ID=FD,84.1')">Wikipedia</a></li></ul></div><style type="text/css">.autospell{color:#333}.autospell a{font-style:normal}.autospell strong{font-style:italic}div.sb_alert{border-bottom:1px #ccc dotted;padding:0 0 .38em 0;margin:0 0 10px 0}#results{zoom:1}#results_area .sb_pag{padding:.83em 0 2.12em}.sb_results li,#results h2,.sc_seemore{float:left;width:100%}.sa_cc,#results h2 div,.sc_seemore a{max-width:590px}.sb_results li li{float:none;width:auto}.sb_meta a,.sb_meta a:visited,.sb_tsuf a,.sb_tsuf a:visited{color:#5077bb;text-decoration:none}.sb_meta a:hover,.sb_tsuf a:hover{text-decoration:underline}.sb_tlst{margin:0 0 .05em}.sb_tsuf{white-space:nowrap;color:#737373;margin-left:1.3em}.sb_tlst H3,.sb_tlst div{display:inline}#results_removed{margin:1.15em 0 1.54em;_width:519px;max-width:590px}.sa_cpt{position:absolute}#content .sw_box .sw_t{display:none}#sb_form2{margin-left:-10px}.sb_results li.sb_ans{padding:0}#results h2{margin:0 0 .45em;color:#000}#results h2 a{text-decoration:underline}.sp_pss{color:#737373}</style><style type="text/css">.qscontainer{padding-bottom:10px;display:inline-block}.qscontainer h2{color:#525051;margin:0 0 0.19em}.qscolumn{max-width:180px;padding-right:15px;float:left}.qscolumn li{display:block !important;list-style:none outside;padding:0 0 .17em}</style><div id="sw_canvas"><div id="sw_aside"><div id="sc_expPane"><div class="sw_menu" id="sw_rel"><h2>Related searches</h2><ul><li><a href="/search?q=Prison+Crowding&amp;FORM=R5FD" onmousedown="return si_T('&amp;ID=SERP,127.1')"><strong>Prison</strong> Crowding</a></li><li><a href="/search?q=Mouth+Crowding&amp;FORM=R5FD1" onmousedown="return si_T('&amp;ID=SERP,129.1')"><strong>Mouth</strong> Crowding</a></li><li><a href="/search?q=Dental+Crowding&amp;FORM=R5FD2" onmousedown="return si_T('&amp;ID=SERP,131.1')"><strong>Dental</strong> Crowding</a></li><li><a href="/search?q=Emergency+Department+Crowding&amp;FORM=R5FD3" onmousedown="return si_T('&amp;ID=SERP,133.1')"><strong>Emergency</strong> <strong>Department</strong> Crowding</a></li><li><a href="/search?q=Overcrowding&amp;FORM=R5FD4" onmousedown="return si_T('&amp;ID=SERP,135.1')"><strong>Overcrowding</strong></a></li><li><a href="/search?q=Crowding+Teeth&amp;FORM=R5FD5" onmousedown="return si_T('&amp;ID=SERP,137.1')">Crowding <strong>Teeth</strong></a></li><li><a href="/search?q=Crowding+out+Effect&amp;FORM=R5FD6" onmousedown="return si_T('&amp;ID=SERP,139.1')">Crowding <strong>out</strong> <strong>Effect</strong></a></li><li><a href="/search?q=Crowding+in+School+Setting&amp;FORM=R5FD7" onmousedown="return si_T('&amp;ID=SERP,141.1')">Crowding <strong>in</strong> <strong>School</strong> <strong>Setting</strong></a></li></ul></div><div class="sw_menu" id="sc_sst"><h2>SEARCH HISTORY</h2><ul><li>Search more to see your history</li><li class="sc_tools first"><a href="/profile/history?q=crowdint&amp;FORM=Z9FD2" onmousedown="return si_T('&amp;ID=SERP,104.1')">See all</a></li><li class="sc_tools"><a href="/profile/history/delete?rp=%2fsearch%3fq%3dcrowdint%26count%3d%26first%3d0&amp;FORM=Z9FD3" onmousedown="return si_T('&amp;ID=SERP,105.1')">Clear all</a> &#xB7; <a href="/historyHandler?oma=toggle_off&amp;sig=0E476447B7AF42A6B6F86DDDFB53E6FB&amp;rp=%2fsearch%3fq%3dcrowdint%26count%3d%26first%3d0&amp;FORM=Z9FD4" onmousedown="return si_T('&amp;ID=SERP,107.1')">Turn off</a></li></ul></div></div></div><div id="sw_main"><div id="content"><div id="results_area"><div id="results_container"><div class="sb_alert autospell">We're including results for <a href="/search?q=crowding&amp;FORM=AWRE" onmousedown="return si_T('&amp;ID=SERP,5275.1')"><strong>crowding</strong></a>. Do you want results only for <a href="/search?q=%2bcrowdint&amp;FORM=RCRE" onmousedown="return si_T('&amp;ID=SERP,5276.1')">crowdint</a>?</div><div class="sb_ph"><h1>All Results</h1><span class="sb_count" id="count">1-10 of 1,460,000 results</span><span class="sc_bullet">&#xB7;</span><ul class="sc_hl1"><li><a href="/search?q=crowdint&amp;count=&amp;first=0&amp;qb=1&amp;FORM=AXRE" onmousedown="return si_T('&amp;ID=SERP,155.1')">Advanced</a></li></ul></div><!-- snr --><div id="results"><ul id="wg0" class="sb_results"><li><div class="sa_cc"><div class="sb_tlst"><h3><a href="http://www.thefreedictionary.com/crowding" onmousedown="return si_T('&amp;ID=SERP,5037.1')"><strong>crowding</strong> - definition of <strong>crowding</strong> by the Free Online Dictionary ...</a></h3></div><a class="sa_cpt" u="0|1000|4867396359293241|6867c591,2d0b3bdf"></a><p>crowd 1 (kroud) n. 1. A large number of persons gathered together; a throng. 2. The common people; the populace. 3. A group of people united by a common characteristic, as age ...</p><div class="sb_meta"><cite>www.thefreedictionary.com/<strong>crowding</strong></cite>&nbsp;&#0183;&#32;<a href="http://cc.bingj.com/cache.aspx?q=crowdint&amp;d=4867396359293241&amp;mkt=en-US&amp;setlang=en-US&amp;w=6867c591,2d0b3bdf" onmousedown="return si_T('&amp;ID=SERP,5039.1')">Cached page</a></div></div></li><li><div class="sa_cc"><div class="sb_tlst"><h3><a href="http://www.crowdint.com/" onmousedown="return si_T('&amp;ID=SERP,5054.1')">People-Powered Applications | Crowd Interactive</a></h3></div><a class="sa_cpt" u="1|1001|5066352129804547|94079465,182a9090"></a><p>Be the first to hear about the latest Web 2.0 developments with the Insider's Report</p><div class="sb_meta"><cite>www.<strong>crowdint</strong>.com</cite>&nbsp;&#0183;&#32;<a href="http://cc.bingj.com/cache.aspx?q=crowdint&amp;d=5066352129804547&amp;mkt=en-US&amp;setlang=en-US&amp;w=94079465,182a9090" onmousedown="return si_T('&amp;ID=SERP,5056.1')">Cached page</a></div></div></li><li><div class="sa_cc"><div class="sb_tlst"><h3><a href="http://en.wikipedia.org/wiki/Crowding_out_(economics)" onmousedown="return si_T('&amp;ID=SERP,5082.1')"><strong>Crowding</strong> out (economics) - Wikipedia, the free encyclopedia</a></h3></div><a class="sa_cpt" u="2|1002|4971901505373824|744b5a5a,756e8821"></a><p>In economics, <strong>crowding</strong> out is any reduction in private consumption or investment that occurs because of an increase in government spending. If the increase in government spending ...</p><div class="sb_meta"><cite>en.wikipedia.org/wiki/<strong>Crowding</strong>_out_(economics)</cite>&nbsp;&#0183;&#32;<a href="http://cc.bingj.com/cache.aspx?q=crowdint&amp;d=4971901505373824&amp;mkt=en-US&amp;setlang=en-US&amp;w=744b5a5a,756e8821" onmousedown="return si_T('&amp;ID=SERP,5084.1')">Cached page</a></div></div></li><li><div class="sa_cc"><div class="sb_tlst"><h3><a href="http://en.wikipedia.org/wiki/Crowding_out" onmousedown="return si_T('&amp;ID=SERP,5109.1')"><strong>Crowding</strong> out - Wikipedia, the free encyclopedia</a></h3></div><a class="sa_cpt" u="3|1003|4896374504031390|9d0272c8,ac7e9caf"></a><p><strong>Crowding</strong> out can refer to: <strong>Crowding</strong> out (biology) <strong>Crowding</strong> out (economics) Motivation <strong>crowding</strong> theory</p><div class="sb_meta"><cite>en.wikipedia.org/wiki/<strong>Crowding</strong>_out</cite>&nbsp;&#0183;&#32;<a href="http://cc.bingj.com/cache.aspx?q=crowdint&amp;d=4896374504031390&amp;mkt=en-US&amp;setlang=en-US&amp;w=9d0272c8,ac7e9caf" onmousedown="return si_T('&amp;ID=SERP,5111.1')">Cached page</a></div></div></li><li><div class="sa_cc"><div class="sb_tlst"><h3><a href="http://www.merriam-webster.com/dictionary/crowding" onmousedown="return si_T('&amp;ID=SERP,5136.1')"><strong>Crowding</strong> - Definition and More from the Free Merriam-Webster ...</a></h3></div><a class="sa_cpt" u="4|1004|5025979438990532|a90e27ef,f58e791"></a><p>Definition of crowd from the Merriam-Webster Online Dictionary with audio pronunciations, thesaurus, Word of the Day, and word games.</p><div class="sb_meta"><cite>www.merriam-webster.com/dictionary/<strong>crowding</strong></cite>&nbsp;&#0183;&#32;<a href="http://cc.bingj.com/cache.aspx?q=crowdint&amp;d=5025979438990532&amp;mkt=en-US&amp;setlang=en-US&amp;w=a90e27ef,f58e791" onmousedown="return si_T('&amp;ID=SERP,5138.1')">Cached page</a></div></div></li><li class="sb_ans"><script type="text/javascript">//<![CDATA[
45
+ _G.KPT=new Date
46
+ //]]></script></li><li><div class="sa_cc"><div class="sb_tlst"><h3><a href="http://www.investorwords.com/6470/crowding_in.html" onmousedown="return si_T('&amp;ID=SERP,5153.1')"><strong>crowding</strong> in Definition</a></h3></div><a class="sa_cpt" u="5|1005|4806304746702344|2e190ee1,10c6fe82"></a><p><strong>crowding</strong> in - definition of <strong>crowding</strong> in - An economic principle in which private investment increases as debt-financed government spending increases. This is caused by government ...</p><div class="sb_meta"><cite>www.investorwords.com/6470/<strong>crowding</strong>_in.html</cite>&nbsp;&#0183;&#32;<a href="http://cc.bingj.com/cache.aspx?q=crowdint&amp;d=4806304746702344&amp;mkt=en-US&amp;setlang=en-US&amp;w=2e190ee1,10c6fe82" onmousedown="return si_T('&amp;ID=SERP,5155.1')">Cached page</a></div></div></li><li><div class="sa_cc"><div class="sb_tlst"><h3><a href="http://thesaurus.com/browse/crowding" onmousedown="return si_T('&amp;ID=SERP,5179.1')"><strong>Crowding</strong> Synonyms, <strong>Crowding</strong> Antonyms | Thesaurus.com</a></h3></div><a class="sa_cpt" u="6|1006|4697371490256397|59a47bca,36747603"></a><p>Find <strong>crowding</strong> synonyms and <strong>crowding</strong> antonyms at Thesaurus.com, a free online Thesaurus and Synonym Dictionary.</p><div class="sb_meta"><cite>thesaurus.com/browse/<strong>crowding</strong></cite>&nbsp;&#0183;&#32;<a href="http://cc.bingj.com/cache.aspx?q=crowdint&amp;d=4697371490256397&amp;mkt=en-US&amp;setlang=en-US&amp;w=59a47bca,36747603" onmousedown="return si_T('&amp;ID=SERP,5181.1')">Cached page</a></div></div></li><li><div class="sa_cc"><div class="sb_tlst"><h3><a href="http://medical-dictionary.thefreedictionary.com/crowding" onmousedown="return si_T('&amp;ID=SERP,5206.1')"><strong>crowding</strong> - definition of <strong>crowding</strong> in the Medical dictionary - by the ...</a></h3></div><a class="sa_cpt" u="7|1007|4757458081218607|2e675803,b43256d2"></a><p>crowd&#183;ing (krou d ng) n. A condition in which the teeth are crowded in the dental arch, assuming altered positions, as by overlapping and twisting.</p><div class="sb_meta"><cite>medical-dictionary.thefreedictionary.com/<strong>crowding</strong></cite>&nbsp;&#0183;&#32;<a href="http://cc.bingj.com/cache.aspx?q=crowdint&amp;d=4757458081218607&amp;mkt=en-US&amp;setlang=en-US&amp;w=2e675803,b43256d2" onmousedown="return si_T('&amp;ID=SERP,5208.1')">Cached page</a></div></div></li><li><div class="sa_cc"><div class="sb_tlst"><h3><a href="http://nature.com/embor/journal/v5/n1/full/7400056.html" onmousedown="return si_T('&amp;ID=SERP,5223.1')">Life in a crowded world</a></h3></div><a class="sa_cpt" u="8|1008|4853321755133136|215204e3,ed6bbb8f"></a><p>Moreover, <strong>crowding</strong> must also be considered in total genome and proteome analyses to develop quantitative global models of intracellular processes.</p><div class="sb_meta"><cite>nature.com/embor/journal/v5/n1/full/7400056.html</cite></div></div></li><li><div class="sa_cc"><div class="sb_tlst"><h3><a href="http://ebody-specialist.com/orthodontics/crowding.html" onmousedown="return si_T('&amp;ID=SERP,5248.1')">eBody.com: <strong>Crowding</strong></a></h3></div><a class="sa_cpt" u="9|1009|4845277279029856|cb9f601b,f9ca4bb2"></a><p><strong>Crowding</strong> can be inherited and teeth may shift as one ages. Individuals that had perfect teeth as a teenager may find that they have crowded teeth as an adult.</p><div class="sb_meta"><cite>ebody-specialist.com/orthodontics/<strong>crowding</strong>.html</cite>&nbsp;&#0183;&#32;<a href="http://cc.bingj.com/cache.aspx?q=crowdint&amp;d=4845277279029856&amp;mkt=en-US&amp;setlang=en-US&amp;w=cb9f601b,f9ca4bb2" onmousedown="return si_T('&amp;ID=SERP,5250.1')">Cached page</a></div></div></li></ul></div><div class="qscontainer"><div><h2>Related Searches</h2></div><div style="width: 100%;"><div class="qscolumn"><ul class="sc_hl1"><li><a href="/search?q=Prison+Crowding&amp;FORM=QSRE" onmousedown="return si_T('&amp;ID=SERP,157.1')"><strong>Prison</strong> Crowding</a> </li><li><a href="/search?q=Mouth+Crowding&amp;FORM=QSRE1" onmousedown="return si_T('&amp;ID=SERP,159.1')"><strong>Mouth</strong> Crowding</a> </li><li><a href="/search?q=Dental+Crowding&amp;FORM=QSRE2" onmousedown="return si_T('&amp;ID=SERP,161.1')"><strong>Dental</strong> Crowding</a></li></ul></div><div class="qscolumn"><ul class="sc_hl1"><li><a href="/search?q=Emergency+Department+Crowding&amp;FORM=QSRE3" onmousedown="return si_T('&amp;ID=SERP,163.1')"><strong>Emergency</strong> <strong>Department</strong> Crowding</a> </li><li><a href="/search?q=Overcrowding&amp;FORM=QSRE4" onmousedown="return si_T('&amp;ID=SERP,165.1')"><strong>Overcrowding</strong></a> </li><li><a href="/search?q=Crowding+Teeth&amp;FORM=QSRE5" onmousedown="return si_T('&amp;ID=SERP,167.1')">Crowding <strong>Teeth</strong></a></li></ul></div><div class="qscolumn"><ul class="sc_hl1"><li><a href="/search?q=Crowding+out+Effect&amp;FORM=QSRE6" onmousedown="return si_T('&amp;ID=SERP,169.1')">Crowding <strong>out</strong> <strong>Effect</strong></a> </li><li><a href="/search?q=Crowding+in+School+Setting&amp;FORM=QSRE7" onmousedown="return si_T('&amp;ID=SERP,171.1')">Crowding <strong>in</strong> <strong>School</strong> <strong>Setting</strong></a></li></ul></div></div></div><div class="sb_alert autospell">We're including results for <a href="/search?q=crowding&amp;FORM=AWRE1" onmousedown="return si_T('&amp;ID=SERP,5275.2')"><strong>crowding</strong></a>. Do you want results only for <a href="/search?q=%2bcrowdint&amp;FORM=RCRE1" onmousedown="return si_T('&amp;ID=SERP,5276.2')">crowdint</a>?</div><div class="sb_pag"><h4>Pagination</h4><ul><li><a class="sb_pagS">1</a></li><li><a href="/search?q=crowdint&amp;count=&amp;first=11&amp;FORM=PERE" onmousedown="return si_T('&amp;ID=SERP,5278.1')">2</a></li><li><a href="/search?q=crowdint&amp;count=&amp;first=21&amp;FORM=PERE1" onmousedown="return si_T('&amp;ID=SERP,5279.1')">3</a></li><li><a href="/search?q=crowdint&amp;count=&amp;first=31&amp;FORM=PERE2" onmousedown="return si_T('&amp;ID=SERP,5280.1')">4</a></li><li><a href="/search?q=crowdint&amp;count=&amp;first=41&amp;FORM=PERE3" onmousedown="return si_T('&amp;ID=SERP,5281.1')">5</a></li><li><a href="/search?q=crowdint&amp;count=&amp;first=11&amp;FORM=PORE" class="sb_pagN" onmousedown="return si_T('&amp;ID=SERP,5282.1')">Next</a></li></ul></div><form action="/search" id="sb_form2" class="sw_box" ><div class="sw_bd"><div class="sw_b"><input type="text" value="crowdint" title="Enter your search term" name="q" id="sb_form2_q" class="sw_qbox"/><input type="submit" value="" title="Search" tabindex="0" name="go" id="sb_form2_go" class="sw_qbtn"/></div></div><input type="hidden" value="QBRE3" name="form"/></form></div></div><div id="sidebar"></div></div></div></div></div></div><div id="sb_foot" onmouseover="si_fb.loadCard()"><ul id="sw_footL"><li><a href="http://g.live.com/9uxp9en-us/ftr1" onmousedown="return si_T('&amp;ID=FD,87.1')">&#169; 2010 Microsoft</a> | </li><li><a href="http://go.microsoft.com/fwlink/?LinkId=74170" onmousedown="return si_T('&amp;ID=FD,89.1')">Privacy</a> | </li><li><a href="http://help.live.com/help.aspx?project=searchtou&amp;market=en-us" onmousedown="return si_T('&amp;ID=FD,91.1')">Legal</a> | </li><li><a href="http://advertising.microsoft.com/advertise-on-bing" onmousedown="return si_T('&amp;ID=FD,93.1')">Advertise</a> | </li><li><a href="http://g.msn.com/AIPRIV/en-us" target="_blank" onmousedown="return si_T('&amp;ID=FD,95.1')">About our ads</a> | </li><li><a href="http://help.live.com/help.aspx?project=wl_searchv1&amp;market=en-US&amp;querytype=keyword&amp;query=hcraesbew&amp;domain=www.bing.com:80" id="sb_help" target="_blank" onmousedown="return si_T('&amp;ID=FD,97.1')">Help</a> | </li><li><a href="https://feedback.live.com/default.aspx?locale=en-US&amp;productkey=wlsearchweb&amp;P1=dsatweb&amp;P2=crowdint&amp;P3=0&amp;P4=NOFORM&amp;P5=89C611984B7442A7BF123A5B3692AC59&amp;P6=San+Diego%2c+California&amp;P7=Original&amp;P8=&amp;P9=32.78%2f-117.146&amp;P10=24902&amp;P11=&amp;P12=&amp;searchtype=Web+Search&amp;optl1=1&amp;backurl=http%3a%2f%2fwww.bing.com%3a80%2fsearch%3fq%3dcrowdint%26count%3d%26first%3d0%26FORM%3dFEEDTU" id="sb_feedback" onclick="si_fb.openCard(this);return false" onfocus="si_fb.loadCard()" onmousedown="return si_T('&amp;ID=FD,99.1')">Tell us what you think</a></li></ul></div></div></div><div id="sb_fb"></div><script type="text/javascript">//<![CDATA[
47
+ _G.BST=new Date
48
+ //]]></script><script type="text/javascript">//<![CDATA[
49
+ sj_cook=new function(){var a=this;a.get=function(d,c){var a=_d.cookie.match(new RegExp("\\b"+d+"=[^;]+"));if(c&&a){var b=a[0].match(new RegExp("\\b"+c+"=([^&]*)"));return b?b[1]:null}return a?a[0]:null};a.set=function(c,d,k,j,i){var e,f=d+"="+k,b=a.get(c);if(b){var g=a.get(c,d);e=g?b.replace(d+"="+g,f):b+"&"+f}else e=c+"="+f;var h=location.hostname.match(/([^.]+\.[^.]*)$/);_d.cookie=e+(h?";domain="+h[0]:"")+(j?";expires="+(new Date((new Date).getTime()+6.3072e10)).toGMTString():"")+(i?";path="+i:"")}};sc_fadeCb=function(){};function sc_bgL(){var a=g_img,b=_ge(a.id),d=sj_evt,c=d.bind,f=d.unbind,i=d.fire,e="onBgLoad",g="onSbBusy",h="onSbIdle";c("onP1",j,1,500);function j(){var d=new Image,o=sj_fader(),m=0,p=0,j;c("onSearch",function(){a.x=true;d=null;o.stop();sb_ct(j)});function l(){f(g,l);if(!m){sb_ct(j);f(e,n);c(h,k)}}function k(){c(e,n,1);f(h,k);c(g,l)}k();function n(e){m=1;function c(){b.style.backgroundImage="url('"+d.src+"')";b.className+=" sw_imLd";i("onBgSet")}d.onerror=d.onload=null;if(e[2]>a.d){sj_so(b,0);c();j=sb_st(sj_wf(o.init,b,0,100,10,sc_fadeCb),500)}else{c();sj_so(b,100);sc_fadeCb()}sj_cook.set(a.cN,a.crN,a.hash,0,"/")}d.onload=function(){p=sb_gt()-q;i(e,d,p)};var q=sb_gt();d.src=a.url}}sj_evt.bind("onP1",function(){!(_w.g_img&&g_img.cN)&&sj_evt.fire("onBgSet")},1);g_img={url:'\/fd\/hpk2\/Avignon_EN-US1110758464o.jpg',id:'sw_im',d:10,cN:'_SS',crN:'hIm',hash:'464'};sc_bgL();;sj_evt.bind('onASConfig',function(e){sa_config=e[1]});sj_evt.fire('onASConfig',{r:'AutoSugOR33',l:['Turn history off','\/historyHandler?oma=toggle_off&sig=0E476447B7AF42A6B6F86DDDFB53E6FB&rp=%2fsearch%3fq%3dcrowdint%26count%3d%26first%3d0',0,'Manage history','\/profile\/history?q=crowdint',0],o:'s+a+p+',tPN:'Popular now',h:1,k:0,m:8,d:50,u:'http:\/\/api.bing.com\/qsonhs.aspx?FORM=ASAPIW&f=OR3',f:'sb_form',i:'sb_form_q',eHS:1,cHS:3,sid:'0E476447B7AF42A6B6F86DDDFB53E6FB',eHO:1});;function sj_ic(b){var a=sj_ce("style");_d.getElementsByTagName("head")[0].appendChild(a);if(sb_ie)a.styleSheet.cssText=b;else a.appendChild(_d.createTextNode(b))};sj_evt.bind("onASConfig",function(d){var b=d[1],a=_ge(b.i),c=sj_evt.fire;a.setAttribute("autocomplete","off");sj_be(a,"keyup",function(a){c("onASKeyup",a.keyCode)});sj_be(a,"click",sj_wf(c,"onASClick"));sj_jb.apply(null,[b.r,1,a,"mousedown",a,"keydown"].concat(b.ol?[_w,"load"]:[]))},1);sj_evt.bind("onP1",function(){(new Image).src=sa_config.u},1,5);sj_evt.fire("onHTML");function si_sendCReq(){_G.muidI=new Image;_G.muidI.onload=function(){var d=_d.cookie;if(/\bTUID\b/i.test(d))return 1;_G.muidI2=new Image;_G.muidI2.src=_G.gpUrl+"CM=TMF&IG="+_G.IG+(_G.CID?"&CID="+_G.CID:"");_G.muidI3=new Image;var b="MUID",a=sj_cook.get(b),c=a.substring(b.length+1,a.length);_G.muidI3.src=_G.akamaiSyncUrl.replace(/&amp;/g,"&")+c;return 1};_G.muidI.src=_G.cUrl};RMS=RMS2=new function(){var a=[],l=5e3,d="",g="readyState",e="onreadystatechange",h="concat",f,c=[];this.RegisterResources=function(g,j,b,e){if(!b){b="noop";e=[]}d=_d.domain;if(!!a[b]){a[b].u=a[b].u[h](g);a[b].c=a[b].c[h](e)}else{a[b]={u:g,c:e};c.push(b)}if(!f){f=true;sj_evt.bind("onHTML",i,1)}};function i(){sj_evt.bind("onP1",j,1,1e3)}function k(g,b){if("noop"==b||!a[b]||g>=a[b].c.length)return;var c=Math.pow(2,a[b].c[g]),f=c,d=sj_cook.get("RMS",b);if(d){var e=parseInt(d);e+=c;f=e}sj_cook.set("RMS",b,f,0,"/")}function j(){if(_d.domain!=d)return;b(0,0)}function b(h,f){if(f<c.length){var i=c[f];if(h<a[i].u.length){var d=sj_gx();if(!d)return;d.open("get",a[i].u[h],true);var j=sb_st(function(){if(d[g]!=4){d[e]=function(){};d.abort();b(h+1,f)}},l);d[e]=function(){if(d[g]==4){sb_ct(j);k(h,i);b(h+1,f)}};d.send(null)}else b(0,f+1)}}};RMS2.RegisterResources(['\/fd\/sa\/0703010603\/brand4_c.css','\/fd\/sa\/0322165410\/Shared.js','\/fd\/sa\/0322165410\/PostContent.js'],[],'T',[9,18,5]);;
50
+ //]]></script><script type="text/javascript">//<![CDATA[
51
+ sa_CPAConfig={name:"hpvR3",v:"R3",sLoad:"Just a moment...",sFto:"We're still looking for more info. Try again later.",sTrig:"More info",uBase:"\/captionHandler.aspx?q=crowdint"};CPA_Init=new function(){sj_jb(sa_CPAConfig.name,0,_w,"load")};RMS2.RegisterResources(['\/sa\/0630074639\/serpAll6_c.css'],[],'SERP',[8]);;sk_merge('_UR=OMW=1; expires=Sat, 18-Aug-2012 01:05:35 GMT; domain=.bing.com; path=\/');;
52
+ //]]></script><script type="text/javascript">//<![CDATA[
53
+ (function(){function a(){!_w.sb_ppCPL&&sb_st(function(){si_PP(new Date)},0)}var b=_w.onload||function(){};onload=function(c){_G.BPT=new Date;b(c);a()};_G.HT=new Date})()
54
+ //]]></script></body></html>
55
+ }
56
+ end
57
+
58
+ def google_not_found
59
+ %{
60
+ <!doctype html><head><title>something irrational - Google Search</title><script>window.google={kEI:"QaxsTN6yF46ksQPI0eHzBw",kEXPI:"0",kCSI:{e:"0",ei:"QaxsTN6yF46ksQPI0eHzBw",expi:"0"},ml:function(){},kHL:"en",time:function(){return(new Date).getTime()},log:function(b,d,c){var a=new Image,e=google,g=e.lc,f=e.li;a.onerror=(a.onload=(a.onabort=function(){delete g[f]}));g[f]=a;c=c||"/gen_204?atyp=i&ct="+b+"&cad="+d+"&zx="+google.time();a.src=c;e.li=f+1},lc:[],li:0,Toolbelt:{}};
61
+ window.google.sn="web";window.google.timers={load:{t:{start:(new Date).getTime()}}};try{}catch(u){}window.google.jsrt_kill=1;
62
+ window._gjp && _gjp()</script><style id=gstyle>body{color:#000;margin:3px 0}body,#leftnav,#tbd,#atd,#tsf,#hidden_modes,#hmp{background:#fff}#gog{background:#fff}#gbar,#guser{font-size:13px;padding-top:1px !important}#gbar{float:left;height:22px}#guser{padding-bottom:7px !important;text-align:right}.gbh,.gbd{border-top:1px solid #c9d7f1;font-size:1px}.gbh{height:0;position:absolute;top:24px;width:100%}#gbs,.gbm{background:#fff;left:0;position:absolute;text-align:left;visibility:hidden;z-index:1000}.gbm{border:1px solid;border-color:#c9d7f1 #36c #36c #a2bae7;z-index:1001}.gb1{margin-right:.5em}.gb1,.gb3{zoom:1}.gb2{display:block;padding:.2em .5em}.gb2,.gb3{text-decoration:none;border-bottom:none}a.gb1,a.gb2,a.gb3,a.gb4{color:#00c !important}a.gb2:hover{background:#36c;color:#fff !important}a.gb1,a.gb2,a.gb3,.link{color:#11c!important}.ts{border-collapse:collapse}.ts td{padding:0}.ti,.bl,form,#res h3{display:inline}.ti{display:inline-table}#tads a.mblink,#tads a.mblink b,#rhs a.mblink,#rhs a.mblink b{color:#1100CC!important}a:link,.w,#prs a:visited,#prs a:active,.q:active,.q:visited{color:#11c}.mblink:visited,a:visited{color:#551a8b}.vst:link{color:#551a8b}.cur,.b{font-weight:bold}.j{width:42em;font-size:82%}.s{max-width:42em}.sl{font-size:82%}#gb{text-align:right;padding:1px 0 7px;margin:0}.hd{position:absolute;width:1px;height:1px;top:-1000em;overflow:hidden}.gl,.f,.m,.c h2,#mbEnd h2,#tads h2,.descbox{color:#767676}.a,cite,cite a:link,cite a:visited,.cite,.cite:link,#mbEnd cite b,#tads cite b{color:#0e774a;font-style:normal}.ng{color:#c11}h1,ol,ul,li{margin:0;padding:0}li.g,body,html,.std,.c h2,#mbEnd h2,h1{font-size:small;font-family:arial,sans-serif}.c h2,#mbEnd h2,h1{font-weight:normal}.clr{clear:both;margin:0 8px}.blk a{color:#000}#nav a{display:block}#nav .i{color:#a90a08;font-weight:bold}.csb,.ss,#logo span,.play_icon,.mini_play_icon,.micon,.licon,.close_btn,#tbp,.lsb,.mbi{background:url(/images/srpr/nav_logo14.png) no-repeat;overflow:hidden}.csb,.ss{background-position:0 0;height:40px;display:block}.ss{background-position:0 -91px;position:absolute;left:0;top:0}.cps{height:18px;overflow:hidden;width:114px}.mbi{background-position:-153px -70px;display:inline-block;float:left;height:13px;margin-right:3px;margin-top:1px;width:13px}#nav td{padding:0;text-align:center}#logo{display:block;overflow:hidden;position:relative;width:137px;height:49px;margin:9px 0 0}#logo img{border:none;position:absolute;left:-0px;top:-41px}#logo span,.ch{cursor:pointer}h3,.med{font-size:medium;font-weight:normal;padding:0;margin:0}.e{margin:2px 0 .75em}.slk div{padding-left:12px;text-indent:-10px}.fc{margin-top:.5em;padding-left:16px}#mbEnd cite{display:block;text-align:left}#rhs_block{margin-bottom:-20px}#bsf,.blk{border-top:1px solid #6b90da;background:#f0f7f9}#bsf{border-bottom:1px solid #6b90da}#cnt{clear:both}#res{padding-right:1em;margin:0 16px}.c{background:#fbf0fa;margin:0 8px}.c li{padding:0 3px 0 8px;margin:0}#mbEnd li{margin:1em 0;padding:0}.xsm{font-size:x-small}ol li{list-style:none}#ncm ul li{list-style-type:disc}.sm li{margin:0}.gl,#foot a,.nobr{white-space:nowrap}#mbEnd .med{white-space:normal}.sl,.r{display:inline;font-weight:normal;margin:0}.r{font-size:medium}h4.r{font-size:small}.mr{margin-top:6px}h3.tbpr{margin-top:.4em;margin-bottom:1.2em}img.tbpr{border:0px;width:15px;height:15px;margin-right:3px}.jsb{display:block}.nojsb{display:none}.nwd{font-size:10px;padding:16px;text-align:center}.rt1{background:transparent url(/images/bubble1.png) no-repeat}.rt2{background:transparent url(/images/bubble2.png) repeat 0 0 scroll}.sb{background:url(/images/scrollbar.png) repeat scroll 0 0;cursor:pointer;width:14px}.rtdm:hover{text-decoration:underline}#rtr .g{margin:1em 0}#ss-box{background:#fff;border:1px solid;border-color:#c9d7f1 #36c #36c #a2bae7;left:0;margin-top:.1em;position:absolute;visibility:hidden;z-index:101}#ss-box a{display:block;padding:.2em .31em;text-decoration:none}#ss-box a:hover{background:#558be3;color:#fff!important}a.ss-selected{color:#000!important;font-weight:bold}a.ss-unselected{color:#4273db!important}.ss-selected .mark{display:inline}.ss-unselected .mark{visibility:hidden}#ss-barframe{background:#fff;left:0;position:absolute;visibility:hidden;z-index:100}.ri_cb{left:0;margin:6px;position:absolute;top:0;z-index:1}.ri_sp{display:-moz-inline-box;display:inline-block;text-align:center;vertical-align:top;margin-bottom:6px}.ri_sp img{vertical-align:bottom}.mbl{margin:1em 0 0}em{font-weight:bold;font-style:normal}li.w0 .ws,td.w0 .ws{opacity:0.5}li.w0:hover .ws,td.w0:hover .ws{opacity:1}ol,ul,li{border:0;margin:0;padding:0}li{line-height:1.2}li.g{margin-top:0;margin-bottom:14px}.ibk,#productbox .fmg{display:-moz-inline-box;display:inline-block;*display:inline;vertical-align:top;zoom:1}.tsw{width:595px}#cnt{min-width:780px;max-width:1144px;padding-top:17px;}.gbh{top:24px}#gbar{margin-left:8px;height:20px}#guser{margin-right:8px;padding-bottom:5px!important}.lst-b,.lst{border:1px solid #ccc;border-bottom:none;height:26px;padding:4px 0 0}.tia input{border-right:none;padding-right:0px}.lst-b{border-right:none}.lst{-moz-box-sizing:content-box;background:#fff;color:#000;font:18px arial,sans-serif;float:left;padding-left:6px;padding-right:10px;vertical-align:top;width:100%}.lst-td{border-bottom:1px solid #999;padding-right:16px}.ds{border-right:1px solid #e7e7e7;position:relative;height:32px;z-index:100}.lsbb{background:#eee;border:1px solid #999;border-top-color:#ccc;border-left-color:#ccc;height:30px}.lsb{font:15px arial,sans-serif;background-position:bottom;border:none;color:#000;cursor:pointer;height:30px;margin:0;vertical-align:top}.lsb:active{background:#ccc}.lst:focus{outline:none}.lsd{font-size:11px;position:absolute;top:3px;left:16px;width:256px}.mbi{margin-bottom:-1px}.tsf-p{margin-right:272px;margin-left:168px;max-width:711px}.uc{margin-left:159px}#center_col,#foot{margin-left:159px;margin-right:264px;padding:0 8px}#subform_ctrl{font-size:11px;margin-left:176px;margin-right:272px;max-width:695px;min-height:26px;padding-top:3px;position:relative;z-index:11}#center_col{border-left:1px solid #d3e1f9;clear:both}#brs p{margin:0;padding-top:5px}.brs_col{display:inline-block;float:left;font-size:small;white-space:nowrap;padding-right:16px;margin-top:-1px;padding-bottom:1px}#tads{margin-bottom:8px!important}#tads li{padding:1px 0}#tads li.taf{padding:1px 0 0}#tads li.tam{padding:14px 0 0}#tads li.tal{padding:14px 0 1px}#res{border:0;margin:0;padding:4px 8px 0}#ires{padding-top:1px}.mbl{margin-top:5px}.play_icon{background-position:;height:px;margin-left:64px;margin-top:44px;width:px}#leftnav li{display:block}.micon,.licon,.close_btn{border:0}#leftnav h2{font-size:small;color:#767676;font-weight:normal;margin:8px 0 0;padding-left:8px;width:143px}#tbbc dfn{padding:4px}.close_btn{background-position:-138px -84px;float:right;height:14px;width:14px}.videobox{padding-bottom:3px}#leftnav a{text-decoration:none}#leftnav a:hover{text-decoration:underline}.mitem,#showmodes{font-size:15px;line-height:24px;padding-left:8px}.mitem{margin-bottom:2px}.mitem .q{display:block}.msel{height:22px;padding-bottom:2px;margin-bottom:0;font-weight:bold}.micon{float:left;height:19px;margin-top:2px;margin-right:5px;outline:none;padding-right:1px;width:19px}#showmodes .micon{background-position:-150px -114px;height:17px;margin-left:1px;margin-right:5px;width:17px}.licon{background-position:-153px -99px;float:left;height:14px;margin-right:3px;width:14px}.open #showmodes .micon{background-position:-132px -114px}.open .msm,.msl{display:none}.open .msl{display:inline}.open #hidden_modes,.open #hmp{display:block}#swr li{border:0;font-size:13px;line-height:1.2;margin:0 0 4px;margin-right:8px;padding-left:1px}#tbd,#atd{display:block;margin-top:8px;min-height:1px}.tbt{font-size:13px;line-height:1.2}.tbou,.tbos,.tbots,.tbotu{margin-right:8px;padding-left:16px;padding-bottom:3px;text-indent:-8px}.tbos,.tbots{font-weight:bold}#leftnav .tbots a{color:#000!important;cursor:default;text-decoration:none}.tbfo .tbt,.tbpd{margin-bottom:8px}#season_{margin-top:8px}.tbpc,.tbpo,.lcsc,.lcso{font-size:13px}.tbpc,.tbo .tbpo,.lco .lcsc{display:inline}.tbo .tbpc,.tbpo,.lco .lcso,.lcsc{display:none}.lco #set_location_section{display:block}.tbo #tbp,.lco .licon{background-position:-138px -99px!important}#prc_opt label,#prc_ttl{display:block;font-weight:normal;margin-right:2px;white-space:nowrap}#cdr_opt,#loc_opt,#prc_opt{padding-left:8px;text-indent:0}.tbou #cdr_frm,.tbou #cloc_frm {display:none}#cdr_frm,#cdr_min,#cdr_max{width:88%}#cdr_opt label{display:block;font-weight:normal;margin-right:2px;white-space:nowrap}.bksg {font-size:82%;line-height:130%;padding:2px;vertical-align:top;}.bkst div {background-color:#f9f9f9;border:1px solid #e0e0e0;color: #666;font-size:small;text-align:center;}#mbEnd,.rhss{margin:0 0 32px;margin-left:8px}#mbEnd h2{color:#767676}#mbEnd li{margin:12px 0 0}a:link,.w,.q:active,.q:visited,.tbotu{color:#11c;cursor:pointer}a.fl:link,.fl a,.flt,a.flt,.gl a:link,a.mblink,.mblink b{color:#4272db}.osl a,.gl a,#tsf a,a.mblink,a.gl,a.fl,.slk a,.bc a,.flt,a.flt u,.oslk a{text-decoration:none}.osl a:hover,.gl a:hover,#tsf a:hover,a.mblink:hover,a.gl:hover,a.fl:hover,.slk a:hover,.bc a:hover,.flt:hover,a.flt:hover u,.oslk a:hover,.tbotu:hover{text-decoration:underline}#ss-box a:hover{text-decoration:none}#tads .mblink,#rhs .mblink{text-decoration:underline}.hpn,.osl{color:#767676}div#gbi,div#gbg{border-color:#a2bff0 #558be3 #558be3 #a2bff0}div#gbi a.gb2:hover,div#gbg a.gb2:hover,.mi:hover{background-color:#558be3}#guser a.gb2:hover,.mi:hover,.mi:hover *{color:#fff!important}#guser{color:#000}#imagebox_big img{padding:2px!important}#productbox table.ts{color:#767676}#productbox table.ts a{text-decoration:underline}#productbox .fmg{margin-top:7px;padding-right:8px;text-align:left}#foot .ftl{margin-right:12px}#foot a.slink{text-decoration:none;color:#4272db}#fll a,#bfl a{color:#4272db;margin:0 12px;text-decoration:none}#foot a:hover{text-decoration:underline}#foot a.slink:visited{color:#551a8b}#blurbbox_bottom{color:#767676}.nvs a{text-decoration:underline}.stp{margin:7px 0 17px}.ssp{margin:.33em 0 17px}#gsr a:active,a.fl:active,.fl a:active,.gl a:active{color:#c11}</style><noscript><style>.jsb{display:none}.nojsb{display:block}</style></noscript><script>google.y={};google.x=function(e,g){google.y[e.id]=[e,g];return false};window.gbar={qs:function(){},tg:function(e){var o={id:'gbar'};for(i in e)o[i]=e[i];google.x(o,function(){gbar.tg(o)})}};</script></head><body id=gsr topmargin=3 marginheight=3><textarea id=csi style=display:none></textarea><textarea id=wwcache style=display:none></textarea><div id=gog><div id=gbar><nobr><b class=gb1>Web</b> <a href="http://www.google.com/images?q=something+irrational&num=100&um=1&ie=UTF-8&source=og&sa=N&hl=en&tab=wi" onclick=gbar.qs(this) class=gb1>Images</a> <a href="http://www.google.com/search?q=something+irrational&num=100&um=1&ie=UTF-8&tbo=u&tbs=vid:1&source=og&sa=N&hl=en&tab=wv" onclick=gbar.qs(this) class=gb1>Videos</a> <a href="http://maps.google.com/maps?q=something+irrational&num=100&um=1&ie=UTF-8&sa=N&hl=en&tab=wl" onclick=gbar.qs(this) class=gb1>Maps</a> <a href="http://www.google.com/search?q=something+irrational&num=100&um=1&ie=UTF-8&tbo=u&tbs=nws:1&source=og&sa=N&hl=en&tab=wn" onclick=gbar.qs(this) class=gb1>News</a> <a href="http://www.google.com/products?q=something+irrational&num=100&um=1&ie=UTF-8&sa=N&hl=en&tab=wf" onclick=gbar.qs(this) class=gb1>Shopping</a> <a href="http://mail.google.com/mail/?hl=en&tab=wm" class=gb1>Gmail</a> <a href="http://www.google.com/intl/en/options/" onclick="this.blur();gbar.tg(event);return !1" aria-haspopup=true class=gb3><u>more</u> <small>&#9660;</small></a><div class=gbm id=gbi><a href="http://www.google.com/search?q=something+irrational&num=100&um=1&ie=UTF-8&tbo=u&tbs=bks:1&source=og&sa=N&hl=en&tab=wp" onclick=gbar.qs(this) class=gb2>Books</a> <a href="http://www.google.com/finance?q=something+irrational&num=100&um=1&ie=UTF-8&sa=N&hl=en&tab=we" onclick=gbar.qs(this) class=gb2>Finance</a> <a href="http://translate.google.com/translate_t?q=something+irrational&num=100&um=1&ie=UTF-8&sa=N&hl=en&tab=wT" onclick=gbar.qs(this) class=gb2>Translate</a> <a href="http://scholar.google.com/scholar?q=something+irrational&num=100&um=1&ie=UTF-8&sa=N&hl=en&tab=ws" onclick=gbar.qs(this) class=gb2>Scholar</a> <a href="http://www.google.com/search?q=something+irrational&num=100&um=1&ie=UTF-8&tbo=u&tbs=blg:1&source=og&sa=N&hl=en&tab=wb" onclick=gbar.qs(this) class=gb2>Blogs</a> <div class=gb2><div class=gbd></div></div><a href="http://www.youtube.com/results?q=something+irrational&num=100&um=1&ie=UTF-8&sa=N&hl=en&tab=w1" onclick=gbar.qs(this) class=gb2>YouTube</a> <a href="http://www.google.com/calendar/render?hl=en&tab=wc" class=gb2>Calendar</a> <a href="http://picasaweb.google.com/lh/view?q=something+irrational&num=100&um=1&ie=UTF-8&sa=N&hl=en&tab=wq" onclick=gbar.qs(this) class=gb2>Photos</a> <a href="http://docs.google.com/?hl=en&tab=wo" class=gb2>Documents</a> <a href="http://www.google.com/reader/view/?hl=en&tab=wy" class=gb2>Reader</a> <a href="http://sites.google.com/?hl=en&tab=w3" class=gb2>Sites</a> <a href="http://groups.google.com/groups?q=something+irrational&num=100&um=1&ie=UTF-8&sa=N&hl=en&tab=wg" onclick=gbar.qs(this) class=gb2>Groups</a> <div class=gb2><div class=gbd></div></div><a href="http://www.google.com/intl/en/options/" class=gb2>even more &raquo;</a> </div></nobr></div><div id=guser width=100%><nobr><span id=gbn class=gbi></span><span id=gbf class=gbf></span><span id=gbe></span><a href="/preferences?hl=en" class=gb4>Search settings</a> | <a href="https://www.google.com/accounts/Login?hl=en&continue=http://www.google.com/search%3Fq%3Dsomething%2Birrational%26num%3D100%26start%3D400" class=gb4>Sign in</a></nobr></div><div class=gbh style=left:0></div><div class=gbh style=right:0></div></div><div id=cnt style="margin-left:0px"><div id=sfcnt><form action="/search" id=tsf method=GET name=gs onsubmit="return q.value!=''" role=search style="display:block;margin:0;background:none"><input type=hidden name=num value="100"><input type=hidden name=hl value="en"><input type=hidden name=ie value="ISO-8859-1"><div><div style="float:left;margin-top:-7px;padding:0 18px 0 12px"><h1><a id=logo href="http://www.google.com/webhp?hl=en" title="Go to Google Home">Google<img width=167 height=222 src="/images/srpr/nav_logo14.png" alt=""></a></h1></div><div class=tsf-p style=padding-bottom:2px><table border=0 cellpadding=0 cellspacing=0 style="border-bottom:1px solid #e7e7e7;padding:8px 0 0;position:relative;z-index:2"><tr><td class="lst-td" width=100%><div style=position:relative;zoom:1><input autocomplete="off" class=lst type=text name=q maxlength=2048 value="something irrational" title="Search"><span id=tsf-oq style="display:none">something irrational</span></div> <td><div class=ds><div class=lsbb><input type=submit name="btnG" class=lsb value="Search"></div></div><td><div style="position:relative;height:30px;z-index:2"><div class=lsd></div></div></table></div></div></form></div><style>#center_col,#footerbox{min-width:562px}</style><noscript><style>.bl{display:none !important}</style></noscript><div id=subform_ctrl><div style="float:right"><a href="/advanced_search?q=something+irrational&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b" class="gl nobr" style="color:#4373db">Advanced search</a></div><div><div id=resultStats>Page 5 of about 5,210,000 results<nobr> (0.21 seconds)&nbsp;</nobr></div></div></div><div style="position:relative;zoom:1"><div id=center_col><div id=res class=med role=main><h2 class=hd>Search Results</h2><div id=ires><ol><li class=g><h3 class="r"><a href="http://www.depressionforums.org/forums/topic/12788-irrational-thoughts-why-do-they-cause-so-much-anxiety/" class=l><em>Irrational</em> Thoughts - Why Do They Cause So Much Anxiety?? - The <b>...</b></a></h3><div class="s"><div class="f">29 posts&nbsp;-&nbsp;14 authors&nbsp;-&nbsp;Last post:&nbsp;Nov 4, 2009</div>She told me the reason we have <em>irrational</em> thoughts (and everyone has them to a certain extent) is usually a fear of <em>something</em> happening <b>...</b><br><span class=f><cite>www.depressionforums.org/.../12788-<b>irrational</b>-thoughts-why-do-they-cause- so-much-anxiety/</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:_2heGEN3l7oJ:www.depressionforums.org/forums/topic/12788-irrational-thoughts-why-do-they-cause-so-much-anxiety/+something+irrational&amp;cd=401&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><h3 id="tbpr_1" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=dsc:1&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CBMQmAcwADiQAw" ><span class=micon style="background-position:0 -172px"></span>Get more discussion results</a></h3><li class=g><h3 class=r><a href="http://books.google.com/books?id=k8mVZYSrchQC&amp;pg=PA127&amp;lpg=PA127&amp;dq=something+irrational&amp;source=bl&amp;ots=_PFWxyG97V&amp;sig=t5SmxHMfJUSzuOVd2KMyP95gFE0&amp;hl=en&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;sa=X&amp;oi=book_result&amp;ct=result&amp;resnum=2&amp;ved=0CBUQ6AEwATiQAw">Deliberative policy analysis: understanding governance in the ... - Google Books Result</a></h3><div class=s><span class=gl style="white-space:normal"><a href="/search?start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;q=inauthor:&quot;Maarten+A.+Hajer&quot;&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CBYQ9Ag4kAM">Maarten A. Hajer</a><span class=hpn>,</span> <a href="/search?start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;q=inauthor:&quot;H.+Wagenaar&quot;&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CBcQ9Ag4kAM">H. Wagenaar</a> - 2003 - Political Science - 307 pages</span><br>When a joke reveals the arbitrary, ridiculous character of this language, the prevailing rationality is exposed as <em>something irrational</em> and is suddenly made <b>...</b><br><cite>books.google.com/books?isbn=0521530709<b>...</b></cite></div><li class=g><h3 class=r><a href="http://books.google.com/books?id=x1PaZY_KtBEC&amp;pg=PA2&amp;lpg=PA2&amp;dq=something+irrational&amp;source=bl&amp;ots=CQrme-DAxL&amp;sig=ciMMIgZ2x9c19OWMl0OPj_efNLc&amp;hl=en&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;sa=X&amp;oi=book_result&amp;ct=result&amp;resnum=3&amp;ved=0CBkQ6AEwAjiQAw"><em>Irrational</em> Exuberance - Google Books Result</a></h3><div class=s><span class=gl style="white-space:normal"><a href="/search?start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;q=inauthor:&quot;Robert+J.+Shiller&quot;&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CBoQ9Ag4kAM">Robert J. Shiller</a> - 2006 - Business & Economics - 304 pages</span><br>Many perceptive people were remarking, as the great surge in the stock market of the 1990s continued, that there was <em>something</em> palpably <em>irrational</em> in the <b>...</b><br><cite>books.google.com/books?isbn=0767923634<b>...</b></cite></div><li class=g><h3 class="r"><a href="http://www.blaghag.com/2009/12/irrational-reactions-to-clothes.html" class=l>Blag Hag: <em>Irrational</em> reactions to clothes shopping</a></h3><div class="s">Dec 31, 2009 <b>...</b> The worst part is that if <em>something</em> seems fashionable, trendy, <b>...</b> I hate being so <em>irrational</em> about my appearance mainly because I know it&#39;s <b>...</b><br><span class=f><cite>www.blaghag.com/2009/12/<b>irrational</b>-reactions-to-clothes.html</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:nOhdjsmCx4QJ:www.blaghag.com/2009/12/irrational-reactions-to-clothes.html+something+irrational&amp;cd=404&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://answers.yahoo.com/question/index?qid=20100805112653AA66rZ1" class=l>Can thoughts like <em>irrational</em> feelings of being &quot;called&quot; to do <b>...</b></a></h3><div class="s">Aug 5, 2010 <b>...</b> be a symptom present in a bi polar individual as well? <b>...</b> Yes. Delusions are common in the manic episodes of Bipolar 1. <b>...</b> No, in my opinion, <b>...</b><br><span class=f><cite>answers.yahoo.com/question/index?qid=20100805112653AA66rZ1</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:OMBK9bKtJJMJ:answers.yahoo.com/question/index%3Fqid%3D20100805112653AA66rZ1+something+irrational&amp;cd=405&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><h3 id="tbpr_5" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=dsc:1&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CCEQmAcwBDiQAw" ><span class=micon style="background-position:0 -172px"></span>Get more discussion results</a></h3><li class=g style="margin-left:16px"><h3 class="r hcw"><a href="http://answers.yahoo.com/question/index?qid=20071202070729AAyv8ca" class=l>Are Women More <em>Irrational</em> than Men? - Yahoo! Answers</a></h3><div class="s hc" id=mbb406 valign=top>Dec 12, 2006 <b>...</b> Their emotions are what gives women a mothering instinct. Their emotions also make them want to kill us when we do <em>something irrational</em>. <b>...</b><br><span class=f><cite><span class=bc>answers.yahoo.com &rsaquo; <a href="/url?q=http://answers.yahoo.com/dir/index%3Fsid%3D396545454%26link%3Dlist&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CCYQ6QUoADiQAw&amp;usg=AFQjCNF1CQXrI_w5ja8s8M_kDvsoWD1F8Q">Society &amp; Culture</a> &rsaquo; <a href="/url?q=http://answers.yahoo.com/dir/index%3Fsid%3D396545165%26link%3Dlist&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CCcQ6QUoATiQAw&amp;usg=AFQjCNGCHf9retyTttFhGxtHY0XIseJymw">Etiquette</a></span></cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:yVytXXZh8xoJ:answers.yahoo.com/question/index%3Fqid%3D20071202070729AAyv8ca+something+irrational&amp;cd=406&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a> - <a href="/search?hl=en&amp;ie=UTF-8&amp;q=related:answers.yahoo.com/question/index%3Fqid%3D20071202070729AAyv8ca+something+irrational&amp;tbo=1&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CCoQHzCVAziQAw">Similar</a></span></span><div class=mbl><div class=bl><span class=ch id=mbl406 onclick="google.x(this)" style="display:inline-block"><div class=mbi></div><a href=# onclick="return false" class=mblink>Show more results from answers.yahoo.com</a></span></div></div><div id=mbf406><span/></div></div><h3 id="tbpr_6" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=dsc:1&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CCUQmAcwBTiQAw" ><span class=micon style="background-position:0 -172px"></span>Get more discussion results</a></h3><li class=g><h3 class="r"><a href="http://www.jstor.org/stable/2653711" class=l>Against Internalism about Reasons-Gert&#39;s Rational Options&lt;product <b>...</b></a></h3><div class="s"><span class=f><i>Your browser may not have a PDF reader available. Google recommends visiting our <a href="">text version</a> of this document.</i></span><br><span class=f>by D Copp</span> - <span class=f>2001</span> - <a class=fl href="http://scholar.google.com/scholar?hl=en&amp;lr=&amp;cites=896684852152725303&amp;um=1&amp;ie=UTF-8&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;sa=X&amp;oi=science_links&amp;ct=sl-citedby&amp;resnum=7&amp;ved=0CC4QzgIwBjiQAw">Cited by 4</a> - <a class=fl href="http://scholar.google.com/scholar?hl=en&amp;lr=&amp;q=related:N28JSB-qcQwJ:scholar.google.com/&amp;um=1&amp;ie=UTF-8&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;sa=X&amp;oi=science_links&amp;ct=sl-related&amp;resnum=7&amp;ved=0CC8QzwIwBjiQAw">Related articles</a><br>rational to want that my friend do <em>something irrational</em>. Indeed, if I could get a message to her, I might have good reason to advocate that she do something <b>...</b><br><span class=f><cite>www.jstor.org/stable/2653711</cite><span class=gl></span></span></div><li class=g><h3 class="r"><a href="http://www.theaccidentalpm.com/pricing/how-product-managers-price-products-for-irrational-customers" class=l>How Product Managers Price Products For <em>Irrational</em> Customers</a></h3><div class="s">Jan 30, 2009 <b>...</b> Just what do you price <em>something</em> like this at? His suggestion? <b>...</b> criteria are stable, you can price rationally and avoid the <em>irrational</em>. <b>...</b><br><span class=f><cite>www.theaccidentalpm.com/.../how-product-managers-price-products-for- <b>irrational</b>-customers</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:kTEWZyJlg5YJ:www.theaccidentalpm.com/pricing/how-product-managers-price-products-for-irrational-customers+something+irrational&amp;cd=408&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://distributedrepublic.net/archives/2009/04/19/the-blind-leading-the-rationally-irrational" class=l>The Blind Leading The Rationally <em>Irrational</em> | The Distributed Republic</a></h3><div class="s">Apr 19, 2009 <b>...</b> <em>Something</em> relating to the ultimate meaning of this blog. <b>...</b> holds that it is often instrumentally rational to be epistemically <em>irrational</em>. <b>...</b><br><span class=f><cite>distributedrepublic.net/.../the-blind-leading-the-rationally-<b>irrational</b></cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:S8_IBiORzAAJ:distributedrepublic.net/archives/2009/04/19/the-blind-leading-the-rationally-irrational+something+irrational&amp;cd=409&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.youtube.com/watch?v=d1ttxpiehzc" class=l>YouTube - Hindvir - Hymn of the Black Legions</a></h3><div class="s">Oct 3, 2008 <b>...</b> i&#39;m not afraid of jesvs. would you be afraid of something that <b>...</b> use and do many other things in the name of &quot;<em>something irrational</em>&quot;. yeah <b>...</b><br><span class=f><cite>www.youtube.com/watch?v=d1ttxpiehzc</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:t4dIV_d-PX0J:www.youtube.com/watch%3Fv%3Dd1ttxpiehzc+something+irrational&amp;cd=410&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.ttlg.com/forums/showthread.php?t=115626&amp;p=1623992&amp;viewfull=1" class=l><em>Irrational</em> Games is now 2K Boston and 2K Australia</a></h3><div class="s"><div class="f">25 posts&nbsp;-&nbsp;20 authors&nbsp;-&nbsp;Last post:&nbsp;Aug 10, 2007</div>?Irrational Games is widely recognized as one of the most innovative <b>...</b> producing cookie-cutter games - not <em>something Irrational</em> deserves. <b>...</b><br><span class=f><cite>www.ttlg.com/forums/showthread.php?t=115626&amp;p=1623992...1</cite><span class=gl></span></span></div><h3 id="tbpr_11" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=dsc:1&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CD0QmAcwCjiQAw" ><span class=micon style="background-position:0 -172px"></span>Get more discussion results</a></h3><li class=g><h3 class="r"><a href="http://changingminds.org/articles/articles10/resistance_change.htm" class=l>Resistance To Change: inexplicable, <em>irrational</em>, and real</a></h3><div class="s">Jun 20, 2010 <b>...</b> What happened during our meeting is <em>something</em> that occasionally happens when <b>...</b> Are they being <em>irrational</em>? We generally think our prospects <b>...</b><br><span class=f><cite>changingminds.org/articles/articles10/resistance_change.htm</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:mOp92PTowY4J:changingminds.org/articles/articles10/resistance_change.htm+something+irrational&amp;cd=412&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://xboxblips.dailyradar.com/story/irrational-games-launches-teaser-site-for-project/" class=l><em>Irrational</em> Games Launches Teaser Site for &quot;Project Icarus&quot; - Xbox</a></h3><div class="s">multiplayerblog.mtv.com ? Nintendo&#39;s reviving &quot;Kid Icarus&quot; for the Wii , but <em>Irrational</em> Games is apparently creating <em>something</em> else that... leverages the <b>...</b><br><span class=f><cite>xboxblips.dailyradar.com/.../<b>irrational</b>-games-launches-teaser-site-for-project/</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:W5ndpbL9MWQJ:xboxblips.dailyradar.com/story/irrational-games-launches-teaser-site-for-project/+something+irrational&amp;cd=413&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://planetnj.net/nats/?tag=irrational-exuberance" class=l>Planetary Nats Blog ? <em>irrational</em> exuberance</a></h3><div class="s">Aug 27, 2008 <b>...</b> I was the one that stole the term, ?<em>Irrational</em> Exuberance? from Alan <b>...</b> As it turned out, what we&#39;ve gotten is <em>something</em> we hadn&#39;t <b>...</b><br><span class=f><cite>planetnj.net/nats/?tag=<b>irrational</b>-exuberance</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:wiQBf1v2wl0J:planetnj.net/nats/%3Ftag%3Dirrational-exuberance+something+irrational&amp;cd=414&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.philly.com/philly/blogs/attytood/Irrational_exuberance_Indeed.html" class=l>&quot;<em>Irrational</em> exuberance&quot;? Indeed! | Philly | 03/02/2009</a></h3><div class="s">Mar 2, 2009 <b>...</b> &quot;<em>Irrational</em> exuberance&quot;? Indeed! Here&#39;s a news article about the Dow <b>...</b> Because they need to do <em>something</em> about the banks, and they need to <b>...</b><br><span class=f><cite>www.philly.com/philly/blogs/.../<b>Irrational</b>_exuberance_Indeed.html</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:zBxFexDoEu4J:www.philly.com/philly/blogs/attytood/Irrational_exuberance_Indeed.html+something+irrational&amp;cd=415&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.digitpress.com/forum/showthread.php?t=129964" class=l><em>Irrational</em> Feelings Toward Classic Titles - Retrogaming Roundtable</a></h3><div class="s"><div class="f">12 posts&nbsp;-&nbsp;11 authors&nbsp;-&nbsp;Last post:&nbsp;Apr 5, 2009</div>I just haven&#39;t ever been interested in playing it much. I don&#39;t hate it though. I do have <em>something</em> of an <em>irrational</em> love for old computers. <b>...</b><br><span class=f><cite>www.digitpress.com/forum/showthread.php?t=129964</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:e2931WYffFcJ:www.digitpress.com/forum/showthread.php%3Ft%3D129964+something+irrational&amp;cd=416&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><h3 id="tbpr_16" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=dsc:1&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CE0QmAcwDziQAw" ><span class=micon style="background-position:0 -172px"></span>Get more discussion results</a></h3><li class=g><h3 class=r><a href="http://books.google.com/books?id=HqeoWPsIH6EC&amp;pg=PA44&amp;lpg=PA44&amp;dq=something+irrational&amp;source=bl&amp;ots=3xSa4TTNYr&amp;sig=7kG9tmnJdFySxCfXARDicMo3rlY&amp;hl=en&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;sa=X&amp;oi=book_result&amp;ct=result&amp;resnum=17&amp;ved=0CE8Q6AEwEDiQAw">Mathematical cranks - Google Books Result</a></h3><div class=s><span class=gl style="white-space:normal"><a href="/search?start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;q=inauthor:&quot;Underwood+Dudley&quot;&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CFAQ9Ag4kAM">Underwood Dudley</a> - 1992 - Mathematics - 372 pages</span><br>The infinite represents <em>something irrational</em>, and only the rational is denumerable. The set of integers is rational as far as it is countable. <b>...</b><br><cite>books.google.com/books?isbn=0883855070<b>...</b></cite></div><li class=g><h3 class="r"><a href="http://www.thefastlanetomillions.com/general-business-discussion/27334-notes-predictably-irrational.html" class=l>Notes from Predictably <em>Irrational</em> - Millionaire Entrepreneur Forum</a></h3><div class="s">Notes from Predictably <em>Irrational</em> Today, 04:12 PM My notes from one of the <b>...</b> Higher chances people select <em>something</em> that is better than it&#39;s own thing. <b>...</b><br><span class=f><cite>www.thefastlanetomillions.com/.../27334-notes-predictably-<b>irrational</b>.html</cite><span class=gl></span></span></div><h3 id="tbpr_18" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=qdr:d&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CFQQmAcwETiQAw" ><span class=micon style="background-position:-51px -112px"></span>Get more results from the past 24 hours</a></h3><li class=g><h3 class="r"><a href="http://sunsetboba.tumblr.com/post/337325022/abortion-is-fucking-wrong" class=l>&#23665;&#65291;&#39080;&#65309;&#23888;, Abortion is fucking wrong.</a></h3><div class="s">?Nope doesn&#39;t matter have the kid and then kill it or <em>something</em>.? <em>Irrational</em> reasoning is <em>irrational</em>. Poorly thought out. [Probably didn&#39;t even think about <b>...</b><br><span class=f><cite>sunsetboba.tumblr.com/post/337325022/abortion-is-fucking-wrong</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:9Zthm38CZTcJ:sunsetboba.tumblr.com/post/337325022/abortion-is-fucking-wrong+something+irrational&amp;cd=419&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.mamapedia.com/article/toddler-with-irrational-fears" class=l>Toddler with <em>Irrational</em> Fears? - Mamapedia?</a></h3><div class="s">I wouldn&#39;t say that these are <em>irrational</em> fears, these are normal for that age. Have you seen the book on &quot;What To Expect With 2 Year Olds&quot;? <em>Something</em> like <b>...</b><br><span class=f><cite>www.mamapedia.com/article/toddler-with-<b>irrational</b>-fears</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:y88hepZD8rwJ:www.mamapedia.com/article/toddler-with-irrational-fears+something+irrational&amp;cd=420&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.livestrong.com/irrational-fears/" class=l><em>Irrational</em> Fears | LIVESTRONG.COM</a></h3><div class="s">...o HelpGuide.org, phobias are <em>irrational</em> fears of <em>something</em> that actually causes little or no danger. According to the Diagnostic and Statistical Manual <b>...</b><br><span class=f><cite>www.livestrong.com/<b>irrational</b>-fears/</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:dCmeqJuQjbwJ:www.livestrong.com/irrational-fears/+something+irrational&amp;cd=421&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.integratedsociopsychology.net/Anxiety_Disorders-Evolutionary/strong&amp;irrationalfearofsomething.html" class=l>strong &amp; <em>irrational</em> fear of <em>something</em></a></h3><div class="s">Mar 15, 2010 <b>...</b> Phobias &gt; strong &amp; <em>irrational</em> fear of <em>something</em>. strong &amp; <em>irrational</em> fear of <em>something</em>. Click house symbol at top of pane above to return to <b>...</b><br><span class=f><cite>www.integratedsociopsychology.net/.../strong&amp;<b>irrational</b>fearof<b>something</b>. html</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:HXdp3bpflWwJ:www.integratedsociopsychology.net/Anxiety_Disorders-Evolutionary/strong%26irrationalfearofsomething.html+something+irrational&amp;cd=422&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.helium.com/items/1089708-irrational-behavior-in-the-stock-market-irrational-share-prices-irrational-stock-price" class=l><em>Irrational</em> behavior in the share market - by Dave Coker - Helium</a></h3><div class="s">Know <em>something</em> about <em>Irrational</em> behavior in the share market? We want to hear your view. Write_pen Write now! Related Titles: <b>...</b><br><span class=f><cite>www.helium.com/.../1089708-<b>irrational</b>-behavior-in-the-stock-market- <b>irrational</b>-share-prices-<b>irrational</b>-stock-price</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:Ja_4vKeiQm8J:www.helium.com/items/1089708-irrational-behavior-in-the-stock-market-irrational-share-prices-irrational-stock-price+something+irrational&amp;cd=423&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a> - <a href="/search?hl=en&amp;ie=UTF-8&amp;q=related:www.helium.com/items/1089708-irrational-behavior-in-the-stock-market-irrational-share-prices-irrational-stock-price+something+irrational&amp;tbo=1&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CGQQHzCmAziQAw">Similar</a></span></span></div><li class=g><h3 class="r"><a href="http://www.technologyreview.com/blog/post.aspx?bid=355&amp;bpid=23401" class=l>Technology Review: Blogs: Predictably <em>Irrational</em>: Why Bankers <b>...</b></a></h3><div class="s">Apr 17, 2009 <b>...</b> Sometimes asking someone to do <em>something</em> for nothing is more powerful than paying them <b>....</b> Subscribe to the Predictably <em>Irrational</em> RSS Feed <b>...</b><br><span class=f><cite>www.technologyreview.com/blog/post.aspx?bid=355&amp;bpid=23401</cite><span class=gl></span></span></div><li class=g><h3 class=r><a href="http://books.google.com/books?id=G4qpnvoautgC&amp;pg=PA106&amp;lpg=PA106&amp;dq=something+irrational&amp;source=bl&amp;ots=At3XpJnnN1&amp;sig=-f3CBEf63H7p3KZT-J3AhujKX64&amp;hl=en&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;sa=X&amp;oi=book_result&amp;ct=result&amp;resnum=25&amp;ved=0CGcQ6AEwGDiQAw">Jesus remembered - Google Books Result</a></h3><div class=s><span class=gl style="white-space:normal"><a href="/search?start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;q=inauthor:&quot;James+D.+G.+Dunn&quot;&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CGgQ9Ag4kAM">James D. G. Dunn</a> - 2003 - Religion - 1019 pages</span><br><b>...</b> Hermeneutics Reader 149-64, particularly 159-61; Dilthey recognized that &#39; all understanding contains <em>something irrational</em> because life is irrational; <b>...</b><br><cite>books.google.com/books?isbn=0802839312<b>...</b></cite></div><li class=g><h3 class="r"><a href="http://forum.mind-energy.net/skeptiko-podcast/1455-rational-irrational-thought-thinking-iq-tests-miss.html" class=l>Rational and <em>Irrational</em> Thought: The Thinking That IQ Tests Miss <b>...</b></a></h3><div class="s"><div class="f">10 posts&nbsp;-&nbsp;7 authors&nbsp;-&nbsp;Last post:&nbsp;Jul 28</div><em>Something</em> to consider I think By Keith E. Stanovich We assume <b>...</b> can look very stupid and make <em>irrational</em> decisions in the everyday life. <b>...</b><br><span class=f><cite>forum.mind-energy.net/.../1455-rational-<b>irrational</b>-thought-thinking-iq-tests- miss.html</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:IOpmsqyngBYJ:forum.mind-energy.net/skeptiko-podcast/1455-rational-irrational-thought-thinking-iq-tests-miss.html+something+irrational&amp;cd=426&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><h3 id="tbpr_26" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=dsc:1&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CG0QmAcwGTiQAw" ><span class=micon style="background-position:0 -172px"></span>Get more discussion results</a></h3><li class=g><h3 class="r"><a href="http://articles.vp.ly/how-to-identify-a-negative-relationship-and-get-out-with-a-positive-attitude/" class=l>Articles.vp.ly ? How to Identify a Negative Relationship and Get <b>...</b></a></h3><div class="s">Aug 18, 2010 <b>...</b> If they do <em>something irrational</em> is it really your fault? Are you expected to just keep putting up with a relationship that is making you <b>...</b><br><span class=f><cite>articles.vp.ly/how-to-identify-a-negative-relationship-and-get-out-with-a- positive-attitude/</cite><span class=gl></span></span></div><h3 id="tbpr_27" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=qdr:d&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CHEQmAcwGjiQAw" ><span class=micon style="background-position:-51px -112px"></span>Get more results from the past 24 hours</a></h3><li class=g><h3 class="r"><a href="http://www.dailyillini.com/opinions/letters-to-the-editor/2010/01/14/health-care-proposal-reads-unbelievable-even-irrational" class=l>Health care proposal reads unbelievable, even <em>irrational</em> | The <b>...</b></a></h3><div class="s">Jan 14, 2010 <b>...</b> When we scour the bill, however, we find <em>something</em> missing from this <b>....</b> Republicans, Unbelievable and <em>Irrational</em> over Health Care Reform <b>...</b><br><span class=f><cite>www.dailyillini.com/.../health-care-proposal-reads-unbelievable-even- <b>irrational</b></cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:oR6vgoTmjFMJ:www.dailyillini.com/opinions/letters-to-the-editor/2010/01/14/health-care-proposal-reads-unbelievable-even-irrational+something+irrational&amp;cd=428&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://codohfounder.com/the-irrational-vocabulary-of-the-american-professorial-class-with-regard-to-the-holocaust-question" class=l>(IRAN) ?The <em>Irrational</em> Vocabulary of the American Professorial <b>...</b></a></h3><div class="s">I had read only a few words of his commentary when I found <em>something</em> odd. <b>....</b> Using this <em>irrational</em> vocabulary the American professoriate has contributed <b>...</b><br><span class=f><cite>codohfounder.com/the-<b>irrational</b>-vocabulary-of-the-american-professorial- class-with-regard-to-the-holocaust-question</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:BiFtYuamtxsJ:codohfounder.com/the-irrational-vocabulary-of-the-american-professorial-class-with-regard-to-the-holocaust-question+something+irrational&amp;cd=429&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://ieet.org/index.php/IEET/comments/bebergal20090328" class=l>Comments on Reclaiming the <em>Irrational</em> from the Religious</a></h3><div class="s">Mar 28, 2009 <b>...</b> That essential <em>something</em> is the <em>irrational</em>. ... Complete entry <b>...</b> and while we certainly need the arational, we don&#39;t need the <em>irrational</em>. <b>...</b><br><span class=f><cite>ieet.org/index.php/IEET/comments/bebergal20090328</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:Dhxa_p6cPhEJ:ieet.org/index.php/IEET/comments/bebergal20090328+something+irrational&amp;cd=430&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.uncommonforum.com/viewtopic.php?t=32238" class=l>Strange, <em>Irrational</em> Freak Outs -- OCD/Anxiety Related?</a></h3><div class="s">Sep 28, 2007 <b>...</b> It&#39;s essentially a linguistic vestige that managed to creep into <em>something</em> I said today. For the record, I have a far more <em>irrational</em> fear: <b>...</b><br><span class=f><cite>www.uncommonforum.com/viewtopic.php?t=32238</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:DhV-82WmhLUJ:www.uncommonforum.com/viewtopic.php%3Ft%3D32238+something+irrational&amp;cd=431&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://seekingalpha.com/article/114172-looking-for-opportunities-in-an-irrational-market-place" class=l>Looking for Opportunities in an <em>Irrational</em> Market Place -- Seeking <b>...</b></a></h3><div class="s">Jan 11, 2009 <b>...</b> How do you deal with an extremely <em>irrational</em> and volatile market, with stocks routinely <b>...</b> On Friday, I noticed <em>something</em> that shocked me. <b>...</b><br><span class=f><cite>seekingalpha.com/.../114172-looking-for-opportunities-in-an-<b>irrational</b>- market-place</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:aS8zdePxfzAJ:seekingalpha.com/article/114172-looking-for-opportunities-in-an-irrational-market-place+something+irrational&amp;cd=432&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://healthnew.biz/2010/07/atwt-8-25-kiss-14-luke-is-a-rude-and-irrational-suspicious-of-brian-his-hair-looks-great-though/" class=l>ATWT 8-25: Kiss #14; Luke is a rude and <em>irrational</em>, suspicious of <b>...</b></a></h3><div class="s">Jul 25, 2010 <b>...</b> Luke is definitely cute but he is also incredibly <em>irrational</em> here. <b>...</b> ?Unless I do <em>something</em> inadvertently super-gay.? <b>...</b><br><span class=f><cite>healthnew.biz/.../atwt-8-25-kiss-14-luke-is-a-rude-and-<b>irrational</b>-suspicious- of-brian-his-hair-looks-great-though/</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:NbZofOfY2kUJ:healthnew.biz/2010/07/atwt-8-25-kiss-14-luke-is-a-rude-and-irrational-suspicious-of-brian-his-hair-looks-great-though/+something+irrational&amp;cd=433&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.experienceproject.com/question-answer/Is-Love-Rational-Or-Irrational-Accrdng-To-U-N-Y/221171" class=l>Is Love Rational Or <em>Irrational</em> Accrdng To U? N Y? - Find Answers <b>...</b></a></h3><div class="s">Jul 2, 2010 <b>...</b> Robiette - 26-30 years old - female &middot; Do you have any <em>irrational</em> fears? Afraid of <em>something</em> a little silly maybe? What? <b>...</b><br><span class=f><cite>www.experienceproject.com/question.../Is...<b>Irrational</b>.../221171</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:HZFFeYjHJ_kJ:www.experienceproject.com/question-answer/Is-Love-Rational-Or-Irrational-Accrdng-To-U-N-Y/221171+something+irrational&amp;cd=434&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.pushsquare.com/tag/irrational-games/" class=l><em>Irrational</em> Games - PushSquare.com</a></h3><div class="s"><em>Irrational&#39;s</em> Ken Levine Is Working On <em>Something</em> &quot;Original&quot;. Duh. Ken Levine created Bioshock. But over the last few years he&#39;s been working on a new project <b>...</b><br><span class=f><cite>www.pushsquare.com/tag/<b>irrational</b>-games/</cite><span class=gl></span></span></div><h3 id="tbpr_35" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=qdr:d&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CIkBEJgHMCI4kAM" ><span class=micon style="background-position:-51px -112px"></span>Get more results from the past 24 hours</a></h3><li class=g><h3 class="r"><a href="http://www.iguama.com/comentarios/predictably-irrational-revised-expanded-edition-hidden.0061353248/pagina,9" class=l>Libros - comentarios de Predictably <em>Irrational</em>, Revised and <b>...</b></a></h3><div class="s">Aug 8, 2009 <b>...</b> Ariely when suffering as a patient understood that there was <em>something irrational</em> in their behavior. He devised a whole different way of <b>...</b><br><span class=f><cite>www.iguama.com/comentarios/predictably-<b>irrational</b>.../pagina,9</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:ynvSDYyU9DYJ:www.iguama.com/comentarios/predictably-irrational-revised-expanded-edition-hidden.0061353248/pagina,9+something+irrational&amp;cd=436&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://sabermetricresearch.blogspot.com/2009/07/is-tiger-woods-irrational.html" class=l>Sabermetric Research: Is Tiger Woods <em>Irrational</em>?</a></h3><div class="s">Jul 4, 2009 <b>...</b> This is <em>irrational</em>; if it takes three hours to save a loss of $20, <b>...</b> Either way, that&#39;s <em>something</em> that you&#39;d think pros would be able to <b>...</b><br><span class=f><cite>sabermetricresearch.blogspot.com/.../is-tiger-woods-<b>irrational</b>.html</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:Hgh6nK6oQ4QJ:sabermetricresearch.blogspot.com/2009/07/is-tiger-woods-irrational.html+something+irrational&amp;cd=437&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://worthwhile.typepad.com/worthwhile_canadian_initi/2009/01/buy-domestic-policies-are-individually-irrational-too.html" class=l>Worthwhile Canadian Initiative: &quot;Buy domestic&quot; policies are <b>...</b></a></h3><div class="s">Jan 30, 2009 <b>...</b> It&#39;s not just collectively <em>irrational</em>, but individually <em>irrational</em> as <b>...</b> But I do have <em>something</em> to say about the benefits to an individual <b>...</b><br><span class=f><cite>worthwhile.typepad.com/.../buy-domestic-policies-are-individually-<b>irrational</b>- too.html</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:qc98Q0Emon8J:worthwhile.typepad.com/worthwhile_canadian_initi/2009/01/buy-domestic-policies-are-individually-irrational-too.html+something+irrational&amp;cd=438&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a> - <a href="/search?hl=en&amp;ie=UTF-8&amp;q=related:worthwhile.typepad.com/worthwhile_canadian_initi/2009/01/buy-domestic-policies-are-individually-irrational-too.html+something+irrational&amp;tbo=1&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CJMBEB8wtQM4kAM">Similar</a></span></span></div><li class=g><h3 class="r"><a href="http://www.sodahead.com/living/do-you-have-an-irrational-fear/question-1077165/?page=9" class=l>Do You Have An <em>Irrational</em> Fear? - Page 9</a></h3><div class="s"><div class="f">41 posts&nbsp;-&nbsp;28 authors&nbsp;-&nbsp;Last post:&nbsp;Jun 26</div>But it is not <em>irrational</em>. It is <em>something</em> that could become a reality at any point. And reality can be very cruel. It usually is. <b>...</b><br><span class=f><cite>www.sodahead.com/living/do...an-<b>irrational</b>.../question-1077165/?...</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:cskVMRBsqYMJ:www.sodahead.com/living/do-you-have-an-irrational-fear/question-1077165/%3Fpage%3D9+something+irrational&amp;cd=439&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><h3 id="tbpr_39" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=dsc:1&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CJcBEJgHMCY4kAM" ><span class=micon style="background-position:0 -172px"></span>Get more discussion results</a></h3><li class=g><h3 class="r"><a href="http://blog.networksolutions.com/2008/book-review-predictably-irrational-by-dan-ariely/" class=l>Book Review: Predictably <em>Irrational</em>, by Dan Ariely | Small <b>...</b></a></h3><div class="s">Dec 29, 2008 <b>...</b> Okay, so, strictly speaking, Dan Ariely&#39;s Predictably <em>Irrational</em> isn&#39;t what I would <b>...</b> If you&#39;re ever bought <em>something</em> you couldn&#39;t afford, <b>...</b><br><span class=f><cite>blog.networksolutions.com/.../book-review-predictably-<b>irrational</b>-by-dan- ariely/</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:VmUOeoP0qiMJ:blog.networksolutions.com/2008/book-review-predictably-irrational-by-dan-ariely/+something+irrational&amp;cd=440&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://nadav.worldmate.com/2009/06/iphone-users-are-predictably-irrational.html" class=l>iPhone Users Are Predictably <em>Irrational</em> - WorldMate&#39;s Founder Blog <b>...</b></a></h3><div class="s">Jun 16, 2009 <b>...</b> There&#39;s a great book in the field called Predictably <em>Irrational</em>, <b>....</b> (I&#39;m sure this is <em>something</em> you&#39;re already planning on, <b>...</b><br><span class=f><cite>nadav.worldmate.com/.../iphone-users-are-predictably-<b>irrational</b>.html</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:YrpfAjPb52UJ:nadav.worldmate.com/2009/06/iphone-users-are-predictably-irrational.html+something+irrational&amp;cd=441&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://upcoming.current.com/topics/irrational+fun?view=list" class=l><em>irrational</em> fun</a></h3><div class="s">http://www.youtube.com/watch?v=-iqVyjOv8X0 If you feel like you got to do <em>something irrational</em> Like learning a skill you can never apply We can sing you a <b>...</b><br><span class=f><cite>upcoming.current.com/topics/<b>irrational</b>+fun?view=list</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:XLE8V14ZIFUJ:upcoming.current.com/topics/irrational%2Bfun%3Fview%3Dlist+something+irrational&amp;cd=442&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><span class="b w xsm">[PDF]</span> <h3 class="r"><a href="http://people.brandeis.edu/~yanzp/Study%20Notes/Irrational%20Exuberance_Shiller.pdf" class=l><em>Irrational</em> Exuberance</a></h3><div class="s"><span class=f>File Format:</span> PDF/Adobe Acrobat - <a href="http://docs.google.com/viewer?a=v&q=cache:mPAHWH_XfTEJ:people.brandeis.edu/~yanzp/Study%2520Notes/Irrational%2520Exuberance_Shiller.pdf+something+irrational&hl=en&gl=us&pid=bl&srcid=ADGEESjbGtjXv2AEjbUMLU3vp1k51jcXGIzi0WwjYM1RUq-ZePbupKvNyz2cZK0UDmTkMQ5civDMZ-SF2hNwHSfOgy_Fp0xMFVTn3fHTnwPCT6RPs31w11a7mVHcBJkqsaQvDWZwm5LH&sig=AHIEtbRE1iUacVt9Ho_80o_dRI8Qirdi8A" class=fl>Quick View</a><br><span class=f><i>Your browser may not have a PDF reader available. Google recommends visiting our <a href="http://webcache.googleusercontent.com/search?q=cache:mPAHWH_XfTEJ:people.brandeis.edu/~yanzp/Study%2520Notes/Irrational%2520Exuberance_Shiller.pdf+something+irrational&amp;cd=443&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">text version</a> of this document.</i></span><br><span class=f>by RJ Shiller</span> - <a class=fl href="http://scholar.google.com/scholar?hl=en&amp;lr=&amp;cites=2801157350399012647&amp;um=1&amp;ie=UTF-8&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;sa=X&amp;oi=science_links&amp;ct=sl-citedby&amp;resnum=43&amp;ved=0CKYBEM4CMCo4kAM">Cited by 2861</a> - <a class=fl href="http://scholar.google.com/scholar?hl=en&amp;lr=&amp;q=related:J--B3sS13yYJ:scholar.google.com/&amp;um=1&amp;ie=UTF-8&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;sa=X&amp;oi=science_links&amp;ct=sl-related&amp;resnum=43&amp;ved=0CKcBEM8CMCo4kAM">Related articles</a><br>it makes it hard for people to recognize when <em>something</em> truly and importantly <b>....</b> 1. if less-than-mechanistic or <em>irrational</em> thinking is in fact similar <b>...</b><br><span class=f><cite>people.brandeis.edu/~yanzp/.../<b>Irrational</b>%20Exuberance_Shiller.pdf</cite> - <span class=gl><a href="/search?hl=en&amp;ie=UTF-8&amp;q=related:people.brandeis.edu/~yanzp/Study%2520Notes/Irrational%2520Exuberance_Shiller.pdf+something+irrational&amp;tbo=1&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CKUBEB8wugM4kAM">Similar</a></span></span></div><li class=g><h3 class="r"><a href="http://www.kpbs.org/news/2009/dec/03/why-we-ignore-science-favor-irrational-thinking/" class=l>Why We Ignore Science In Favor Of <em>Irrational</em> Thinking | KPBS.org</a></h3><div class="s">Dec 3, 2009 <b>...</b> Is this kind of fear or <em>irrational</em> fear of science <em>something</em> you see as a cyclical thing? SPECTER: Well, I think we&#39;ve ? I don&#39;t know if it <b>...</b><br><span class=f><cite>www.kpbs.org/.../why-we-ignore-science-favor-<b>irrational</b>-thinking/</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:IRm1PfMTKSQJ:www.kpbs.org/news/2009/dec/03/why-we-ignore-science-favor-irrational-thinking/+something+irrational&amp;cd=444&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.vidnewz.com/next-from-irrational-games-bioshock-infinite" class=l>Next From <em>Irrational</em> Games: &#39;BioShock: Infinite&#39; - Video News</a></h3><div class="s">Aug 18, 2010 <b>...</b> This next big thing from Ken Levine&#39;s <em>Irrational</em> Games is <em>something</em> - kotaku.com &middot; BioShock Infinite <em>Irrational</em> Games has announced BioShock <b>...</b><br><span class=f><cite>www.vidnewz.com/next-from-<b>irrational</b>-games-bioshock-infinite</cite><span class=gl></span></span></div><h3 id="tbpr_45" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=qdr:d&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CK4BEJgHMCw4kAM" ><span class=micon style="background-position:-51px -112px"></span>Get more results from the past 24 hours</a></h3><li class=g><h3 class=r><a href="http://books.google.com/books?id=495Bl1_hMr8C&amp;pg=PA168&amp;lpg=PA168&amp;dq=something+irrational&amp;source=bl&amp;ots=mpg_gcE8C9&amp;sig=9E8bGyyl9HdHs9Pnsj8wtEmQmLg&amp;hl=en&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;sa=X&amp;oi=book_result&amp;ct=result&amp;resnum=46&amp;ved=0CK8BEOgBMC04kAM">SPIN - Apr 1995 - Google Books Result</a></h3><div class=s><span class=gl style="white-space:normal">Vol. 11, No. 1 - 222 pages - Magazine</span><br>I am interested in religion because violence is so often irrational that we may well require <em>something irrational</em> to control it, and of ail the irrational <b>...</b><br><cite>books.google.com/books?id=495Bl1_hMr8C<b>...</b></cite> - <span class=gl><a href="http://books.google.com/books?q=something+irrational&amp;num=100&amp;um=1&amp;ie=UTF-8&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;sa=X&amp;oi=book_result&amp;ct=more-books-link&amp;cad=blended-magazine&amp;resnum=46&amp;ved=0CLABEOkBMC04kAM" class=fl >More book results&nbsp;&raquo;</a></span></div><li class=g><h3 class="r"><a href="http://www.atheistfoundation.org.au/forums/showthread.php?t=6562" class=l>The Periodic Table of <em>Irrational</em> Nonsense - AFA Forums</a></h3><div class="s"><div class="f">10 posts&nbsp;-&nbsp;7 authors&nbsp;-&nbsp;Last post:&nbsp;Jul 24</div>Cool!, <em>something</em> to print out and put on my wall next to my David <b>...</b> I get the feeling (yes, <em>irrational</em> feelings) that the beliefs that are <b>...</b><br><span class=f><cite>www.atheistfoundation.org.au/forums/showthread.php?t=6562</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:KV6gUdRj9TwJ:www.atheistfoundation.org.au/forums/showthread.php%3Ft%3D6562+something+irrational&amp;cd=447&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><h3 id="tbpr_47" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=dsc:1&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CLUBEJgHMC44kAM" ><span class=micon style="background-position:0 -172px"></span>Get more discussion results</a></h3><li class=g><h3 class="r"><a href="http://baselinescenario.com/2010/06/14/theyre-just-irrational/" class=l>They&#39;re Just <em>Irrational</em>? ? The Baseline Scenario</a></h3><div class="s">Jun 14, 2010 <b>...</b> Moreover, you cannot quantify the risk of <em>something</em> happening where <b>.....</b> IOW, they&#39;re not <em>irrational</em>, they&#39;re just operating on a short <b>...</b><br><span class=f><cite>baselinescenario.com/2010/06/14/theyre-just-<b>irrational</b>/</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:7_-D7NSq5FgJ:baselinescenario.com/2010/06/14/theyre-just-irrational/+something+irrational&amp;cd=448&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.wwnewsflash.com/irrational-games" class=l>[World Wide News Flash] <em>Irrational</em> Games</a></h3><div class="s">Aug 12, 2010 <b>...</b> <em>Irrational</em> Games was up to <em>something</em>, we\ holmesjnt (janet holmes): <em>Irrational</em> Games was up to <em>something</em>, we&#39;ve known that for quite a while <b>...</b><br><span class=f><cite>www.wwnewsflash.com/<b>irrational</b>-games</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:UmjjLLBtc3gJ:www.wwnewsflash.com/irrational-games+something+irrational&amp;cd=449&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://irrationalbasis.wordpress.com/" class=l><em>Irrational</em> Basis</a></h3><div class="s"><em>Irrational</em> Basis. my brutally honest account of taking the California Bar, <b>.....</b> I was feeling incredibly lost and desperate for <em>something</em> wonderful to <b>...</b><br><span class=f><cite><b>irrational</b>basis.wordpress.com/</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:98BuB2YVoQ8J:irrationalbasis.wordpress.com/+something+irrational&amp;cd=450&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a> - <a href="/search?hl=en&amp;ie=UTF-8&amp;q=related:irrationalbasis.wordpress.com/+something+irrational&amp;tbo=1&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CMABEB8wwQM4kAM">Similar</a></span></span></div><li class=g><h3 class="r"><a href="http://www.tressugar.com/You-Asked-I-Have-Irrational-Fear-Getting-Pregnant-2512438" class=l>You Asked: I Have an <em>Irrational</em> Fear of Getting Pregnant</a></h3><div class="s">Nov 19, 2008 <b>...</b> Dear Sugar, I have a rather strange <em>irrational</em> fear. <b>...</b> So, <em>something</em> needs to change. I am ashamed of this, amd I think that a lot of you <b>...</b><br><span class=f><cite>www.tressugar.com/You-Asked-I-Have-<b>Irrational</b>-Fear-Getting-Pregnant- 2512438</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:7jNPhv3e5IEJ:www.tressugar.com/You-Asked-I-Have-Irrational-Fear-Getting-Pregnant-2512438+something+irrational&amp;cd=451&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a> - <a href="/search?hl=en&amp;ie=UTF-8&amp;q=related:www.tressugar.com/You-Asked-I-Have-Irrational-Fear-Getting-Pregnant-2512438+something+irrational&amp;tbo=1&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CMQBEB8wwgM4kAM">Similar</a></span></span></div><li class=g><h3 class="r"><a href="http://www.nakedcapitalism.com/2009/02/is-treasury-planning-on-near-term.html" class=l>Is the Treasury Planning on a Near Term Recovery in Bank Stocks <b>...</b></a></h3><div class="s">Feb 25, 2009 <b>...</b> How is it that Bernanke can see ?<em>irrational</em> despondency? but he claims not to <b>....</b> Am I missing <em>something</em>? As far as I can tell this is just <b>...</b><br><span class=f><cite>www.nakedcapitalism.com/.../is-treasury-planning-on-near-term.html</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:M9NIz2wTchgJ:www.nakedcapitalism.com/2009/02/is-treasury-planning-on-near-term.html+something+irrational&amp;cd=452&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a> - <a href="/search?hl=en&amp;ie=UTF-8&amp;q=related:www.nakedcapitalism.com/2009/02/is-treasury-planning-on-near-term.html+something+irrational&amp;tbo=1&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CMgBEB8wwwM4kAM">Similar</a></span></span></div><li class=g><h3 class="r"><a href="http://community.dooce.com/family-relationships/what-your-irrational-ridiculous-fear" class=l>What is your <em>irrational</em>, ridiculous fear? | dooce? community</a></h3><div class="s"><div class="f">50 posts&nbsp;-&nbsp;47 authors</div>It&#39;s not really <em>irrational</em>, but I&#39;m terrified of <em>something</em> happening to my son. And cockroaches. If I was the heroine in that Indiana Jones movie where she <b>...</b><br><span class=f><cite><span class=bc>community.dooce.com &rsaquo; <a href="/url?q=http://community.dooce.com/topics/family-relationships&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CM0BEOkFKAA4kAM&amp;usg=AFQjCNGq687yzQSAjO_NmPm9uVH0Pr40Uw">Family &amp; Relationships</a></span></cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:PBtJ9oZaascJ:community.dooce.com/family-relationships/what-your-irrational-ridiculous-fear+something+irrational&amp;cd=453&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a> - <a href="/search?hl=en&amp;ie=UTF-8&amp;q=related:community.dooce.com/family-relationships/what-your-irrational-ridiculous-fear+something+irrational&amp;tbo=1&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CNABEB8wxAM4kAM">Similar</a></span></span></div><h3 id="tbpr_53" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=dsc:1&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CMwBEJgHMDQ4kAM" ><span class=micon style="background-position:0 -172px"></span>Get more discussion results</a></h3><li class=g><h3 class="r"><a href="http://www.soulcast.com/post/show/422507/Got-any-completely-ridiculous-irrational-fears%3F" class=l>SoulCast - Got any completely ridiculous <em>irrational</em> fears?</a></h3><div class="s">May 18, 2010 <b>...</b> <em>Irrational</em> fear number one, blood. My own, not other peoples (well, <b>...</b> When I see my own blood <em>something</em> in my brain goes &quot;YOUR DYING, <b>...</b><br><span class=f><cite>www.soulcast.com/.../Got-any-completely-ridiculous-<b>irrational</b>-fears%3F</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:ca6Sr76WuOQJ:www.soulcast.com/post/show/422507/Got-any-completely-ridiculous-irrational-fears%253F+something+irrational&amp;cd=454&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.irrationaldad.com/2010/03/the-fight-or-flight-response.html" class=l>The Fight or Flight Response | <em>Irrational</em> Dad</a></h3><div class="s">Mar 30, 2010 <b>...</b> If <em>something</em> were to happen that put the lives of your loved <b>...</b> Filed under: Sarah, Tyler, family, <em>irrational</em> dad, joe, learning, scared <b>...</b><br><span class=f><cite>www.<b>irrational</b>dad.com/2010/03/the-fight-or-flight-response.html</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:qiblz4yM2KkJ:www.irrationaldad.com/2010/03/the-fight-or-flight-response.html+something+irrational&amp;cd=455&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.onewheeldrive.net/2009/02/05/irrational-adoration-best-western-and-harley-davidson-press-tour/" class=l>OneWheelDrive.Net ? <em>Irrational</em> Adoration: Best Western and Harley <b>...</b></a></h3><div class="s">Feb 5, 2009 <b>...</b> And yet, as <em>irrational</em> as it sounds, I adore this bike. <em>Something</em> I&#39;ll refuse to let on to my fellow journos? in person at least. <b>...</b><br><span class=f><cite><span class=bc>www.onewheeldrive.net &rsaquo; <a href="/url?q=http://www.onewheeldrive.net/category/the-guide/accommodations/&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CNkBEOkFKAA4kAM&amp;usg=AFQjCNFhwp9a0BQ987ZTtbI7fXhqaN6pag">Accommodations</a></span></cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:oGiGHuSSG5QJ:www.onewheeldrive.net/2009/02/05/irrational-adoration-best-western-and-harley-davidson-press-tour/+something+irrational&amp;cd=456&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a> - <a href="/search?hl=en&amp;ie=UTF-8&amp;q=related:www.onewheeldrive.net/2009/02/05/irrational-adoration-best-western-and-harley-davidson-press-tour/+something+irrational&amp;tbo=1&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CNwBEB8wxwM4kAM">Similar</a></span></span></div><li class=g><h3 class="r"><a href="http://www.north-africa.com/naj_news/news_na/5noveighteen09.html" class=l>The North Africa Journal - <em>Irrational</em> Behavior</a></h3><div class="s">North Africans are accustomed to emotional stances, often <em>irrational</em> ones, <b>...</b> Sadly, there is some collateral damage and may be <em>something</em> to learn. <b>...</b><br><span class=f><cite>www.north-africa.com/naj_news/.../5noveighteen09.html</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:43egA-61w4MJ:www.north-africa.com/naj_news/news_na/5noveighteen09.html+something+irrational&amp;cd=457&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a> - <a href="/search?hl=en&amp;ie=UTF-8&amp;q=related:www.north-africa.com/naj_news/news_na/5noveighteen09.html+something+irrational&amp;tbo=1&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0COABEB8wyAM4kAM">Similar</a></span></span></div><li class=g><h3 class="r"><a href="http://volokh.com/2010/02/09/republican-voters-often-have-ignorant-and-irrational-views-and-so-do-democrats/" class=l>The Volokh Conspiracy ? Republican Voters Often Have Ignorant and <b>...</b></a></h3><div class="s">Feb 9, 2010 <b>...</b> This seems more like a case of <em>irrational</em> ignorance. <b>.....</b> At any rate, whether <em>something</em> is legal or politically viable at any given moment <b>...</b><br><span class=f><cite>volokh.com/.../republican-voters-often-have-ignorant-and-<b>irrational</b>-views- and-so-do-democrats/</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:k_X7GCp7XTMJ:volokh.com/2010/02/09/republican-voters-often-have-ignorant-and-irrational-views-and-so-do-democrats/+something+irrational&amp;cd=458&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a> - <a href="/search?hl=en&amp;ie=UTF-8&amp;q=related:volokh.com/2010/02/09/republican-voters-often-have-ignorant-and-irrational-views-and-so-do-democrats/+something+irrational&amp;tbo=1&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0COQBEB8wyQM4kAM">Similar</a></span></span></div><li class=g><span class="b w xsm">[PDF]</span> <h3 class="r"><a href="http://econ-www.mit.edu/files/5428" class=l>Beauty Contests and <em>Irrational</em> Exuberance: a Neoclassical Approach</a></h3><div class="s"><span class=f>File Format:</span> PDF/Adobe Acrobat - <a href="http://docs.google.com/viewer?a=v&q=cache:SB1Cxp3GrCQJ:econ-www.mit.edu/files/5428+something+irrational&hl=en&gl=us&pid=bl&srcid=ADGEESiDzM2HXX-bk8xJftK1Wnxo3SU38wGfps5vBb2JbcH3_X2e8u5U3kW3R9YV5jlCgRp9Qg9D3ZWSpSp6krECP5VRkSRdzs1WTNV2JH31vRmhBS2vS3GOHTiXoW-HnDvI3aLOgeTH&sig=AHIEtbQFyjZLOAxzXQKc9SLqp2GROMLI4w" class=fl>Quick View</a><br><span class=f><i>Your browser may not have a PDF reader available. Google recommends visiting our <a href="http://webcache.googleusercontent.com/search?q=cache:SB1Cxp3GrCQJ:econ-www.mit.edu/files/5428+something+irrational&amp;cd=459&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">text version</a> of this document.</i></span><br>the beliefs and the behavior of <em>irrational</em> agents.2 We do not go in that <b>....</b> that <em>something</em> is going ?wrong? in the market and that the government should <b>...</b><br><span class=f><cite>econ-www.mit.edu/files/5428</cite><span class=gl></span></span></div><li class=g><h3 class="r"><a href="http://www.nytimes.com/2008/03/16/books/review/Berreby-t.html" class=l>Predictably <em>Irrational</em> - Dan Ariely - Book Review - New York Times</a></h3><div class="s">Mar 16, 2008 <b>...</b> Another sign that times are changing is ?Predictably <em>Irrational</em>,? a <b>...</b> to buy <em>something</em> we don&#39;t really want or need in order to collect a <b>...</b><br><span class=f><cite>www.nytimes.com/2008/03/16/.../Berreby-t.html</cite> - <span class=gl><a href="/search?hl=en&amp;ie=UTF-8&amp;q=related:www.nytimes.com/2008/03/16/books/review/Berreby-t.html+something+irrational&amp;tbo=1&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0COsBEB8wywM4kAM">Similar</a> - <a href="/url?sa=p&amp;pref=ig&amp;pval=3&amp;q=/ig/setp%3Fss%3D1%26et%3D4c6cac42Wz2UdIhV%26source%3Dgwli%26ae%3Dgwli%26pid%3D%26n_32%3Durl%253Dhttp://widgets.nytimes.com/packages/html/igoogle/topstories.xml%2526name%253DNYTimes%2526hl%253Den%26url%3D/ig%253Fhl%253Den%2526referrer%253Dgwli&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0COoBEPkHMMsDOJAD&amp;usg=AFQjCNGa5gzwylu8jfw-Lhfq7u-ZfGIWYA">Add to iGoogle</a></span></span></div><li class=g><h3 class="r"><a href="http://baseballanalysts.com/archives/2006/03/the_irrational_1.php" class=l>The Baseball Analysts: The <em>Irrational</em> Market</a></h3><div class="s">Mar 23, 2006 <b>...</b> The <em>Irrational</em> Market. By Derek Zumsteg <b>...</b> This illustrates <em>something</em> interesting, which I&#39;ll come back to in a second. <b>...</b><br><span class=f><cite>baseballanalysts.com/archives/2006/03/the_<b>irrational</b>_1.php</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:pvmwX1wFXZcJ:baseballanalysts.com/archives/2006/03/the_irrational_1.php+something+irrational&amp;cd=461&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.automaticfinances.com/irrational-stock-market/" class=l>The Market May Be <em>Irrational</em>, But You Shouldn&#39;t Be ? Automatic <b>...</b></a></h3><div class="s">Apr 15, 2010 <b>...</b> The Market May Be <em>Irrational</em>, But You Shouldn&#39;t Be <b>...</b> to print off the screen and go take out a loan ? I knew <em>something</em> was wrong. <b>...</b><br><span class=f><cite>www.automaticfinances.com/<b>irrational</b>-stock-market/</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:ko0Yzo9Y0MwJ:www.automaticfinances.com/irrational-stock-market/+something+irrational&amp;cd=462&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://thornyc.livejournal.com/222985.html" class=l>&quot;I didn&#39;t make him for you!&quot; - A good example of <em>Irrational</em> Exuberance</a></h3><div class="s"><div class="f">31 posts&nbsp;-&nbsp;16 authors&nbsp;-&nbsp;Last post:&nbsp;Jul 2, 2007</div>It&#39;s a little tricky calling <em>something</em> &quot;<em>irrational</em>&quot; when those involved are putting real money on the line, often for reasons that aren&#39;t <b>...</b><br><span class=f><cite>thornyc.livejournal.com/222985.html</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:9zm15wTiTdAJ:thornyc.livejournal.com/222985.html+something+irrational&amp;cd=463&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><h3 id="tbpr_63" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=dsc:1&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CPUBEJgHMD44kAM" ><span class=micon style="background-position:0 -172px"></span>Get more discussion results</a></h3><li class=g><h3 class="r"><a href="http://www.healthbeatblog.com/2009/01/the-amenities-race-are-patients-irrational.html" class=l>Health Beat: The Amenities Race: Are Patients <em>Irrational</em>?</a></h3><div class="s">Jan 28, 2009 <b>...</b> If <em>something</em> had gone wrong during the delivery, I would have wanted <b>...</b> Until then, it&#39;s not really helpful to describe them as <em>irrational</em>. <b>...</b><br><span class=f><cite>www.healthbeatblog.com/.../the-amenities-race-are-patients-<b>irrational</b>.html</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:_4Jr-lE_0KMJ:www.healthbeatblog.com/2009/01/the-amenities-race-are-patients-irrational.html+something+irrational&amp;cd=464&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.gamespot.com/news/6258428.html" class=l>Levine&#39;s <em>Irrational</em> at work on &#39;original title&#39; - News at GameSpot</a></h3><div class="s">Apr 15, 2010 <b>...</b> He also said that while the game is the only one <em>Irrational</em> is <b>....</b> Seriously, can we get creative and put out <em>something</em> other then a FPS? <b>...</b><br><span class=f><cite>www.gamespot.com/news/6258428.html</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:x4OFsJTsxQgJ:www.gamespot.com/news/6258428.html+something+irrational&amp;cd=465&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><span class="b w xsm">[PDF]</span> <h3 class="r"><a href="http://www.math.hawaii.edu/~lee/elementary/Lazy7.pdf" class=l>The Lazy Man Explains the <em>Irrational</em> EL Lady ?I&#39;ve been thinking <b>...</b></a></h3><div class="s"><span class=f>File Format:</span> PDF/Adobe Acrobat - <a href="http://docs.google.com/viewer?a=v&q=cache:pZvKQ4QMbQgJ:www.math.hawaii.edu/~lee/elementary/Lazy7.pdf+something+irrational&hl=en&gl=us&pid=bl&srcid=ADGEESjmNqp08njylnhIg8KNuZNmWSeAH7-XfC6nHKf_myp9aJqYwQIGDcfZQoazUVnIigJDRgHDrDhysNVQ5Q8NiyVj4OXydX3mGzln6dSwdjR-j_K4sw0AFlPy0mKG41AlPaakOHBB&sig=AHIEtbTya0GhYi4BmvZA1i9D2NdYzHEVvg" class=fl>Quick View</a><br><span class=f><i>Your browser may not have a PDF reader available. Google recommends visiting our <a href="http://webcache.googleusercontent.com/search?q=cache:pZvKQ4QMbQgJ:www.math.hawaii.edu/~lee/elementary/Lazy7.pdf+something+irrational&amp;cd=466&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">text version</a> of this document.</i></span><br>If it repeated, it would be rational instead of <em>irrational</em>. For instance, the <b>...</b> ?<em>Something</em> like. 3.975757575 ... ? The Lazy Man wrote down the following: <b>...</b><br><span class=f><cite>www.math.hawaii.edu/~lee/elementary/Lazy7.pdf</cite><span class=gl></span></span></div><li class=g><h3 class="r"><a href="http://article.nationalreview.com/355144/irrational-green-exuberance/the-editors" class=l><em>Irrational</em> Green Exuberance - The Editors - National Review Online</a></h3><div class="s">Apr 22, 2008 <b>...</b> <em>Irrational</em> Green Exuberance. The last few years have witnessed an <b>...</b> blas? performance of the media on this matter is telling us <em>something</em>. <b>...</b><br><span class=f><cite>article.nationalreview.com/355144/<b>irrational</b>-green.../the-editors</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:Lga8UMHwTkIJ:article.nationalreview.com/355144/irrational-green-exuberance/the-editors+something+irrational&amp;cd=467&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://proteinwisdom.com/?p=13293" class=l>?Look Who&#39;s <em>Irrational</em> Now?</a></h3><div class="s">Sep 21, 2008 <b>...</b> The closest a true atheist can come to saying <em>something</em> is ?good? <b>......</b> that existences is an <em>irrational</em> chaos, with which he&#39;s unable to <b>...</b><br><span class=f><cite>proteinwisdom.com/?p=13293</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:F8HoEQdL8j0J:proteinwisdom.com/%3Fp%3D13293+something+irrational&amp;cd=468&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="https://nrich.maths.org/discus/messages/117730/143322.html?1203332912" class=l>Ask NRICH: <em>Irrational</em> number proofs</a></h3><div class="s"><div class="f">8 posts&nbsp;-&nbsp;5 authors&nbsp;-&nbsp;Last post:&nbsp;Feb 18, 2008</div>Besides, if we have to prove that (2/7)1/3 is <em>irrational</em>, would the Euclid method of proving root 2 <em>irrational</em> work? To prove <em>something</em> like <b>...</b><br><span class=f><cite>https://nrich.maths.org/discus/messages/117730/143322.html?...</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:mY1ivX_AdMsJ:https://nrich.maths.org/discus/messages/117730/143322.html%3F1203332912+something+irrational&amp;cd=469&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><h3 id="tbpr_69" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=dsc:1&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CIkCEJgHMEQ4kAM" ><span class=micon style="background-position:0 -172px"></span>Get more discussion results</a></h3><li class=g><h3 class="r"><a href="http://askville.amazon.com/SimilarQuestions.do?req=Pi+irrational+number+pi+expressed+fraction+product" class=l>Similar questions with Pi <em>irrational</em> number pi expressed fraction <b>...</b></a></h3><div class="s">See, not <em>irrational</em>. ow for pi, it can be shown to be the sum of an infinite number of fractions. One of the simplest is <em>something</em> like: 4 times 1/1 - 1/3 + <b>...</b><br><span class=f><cite>askville.amazon.com/SimilarQuestions.do?...<b>irrational</b>...</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:uQm9B5G9P54J:askville.amazon.com/SimilarQuestions.do%3Freq%3DPi%2Birrational%2Bnumber%2Bpi%2Bexpressed%2Bfraction%2Bproduct+something+irrational&amp;cd=470&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a> - <a href="/search?hl=en&amp;ie=UTF-8&amp;q=related:askville.amazon.com/SimilarQuestions.do%3Freq%3DPi%2Birrational%2Bnumber%2Bpi%2Bexpressed%2Bfraction%2Bproduct+something+irrational&amp;tbo=1&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CI8CEB8w1QM4kAM">Similar</a></span></span></div><h3 id="tbpr_70" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=dsc:1&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CI0CEJgHMEU4kAM" ><span class=micon style="background-position:0 -172px"></span>Get more discussion results</a></h3><li class=g><h3 class="r"><a href="http://www.scribd.com/doc/26002532/Predictably-Irrational-The-Hidden-Forces-That-Shape-Our-Decisions-Harper-2008" class=l>Predictably <em>Irrational</em>; The Hidden Forces That Shape Our Decisions <b>...</b></a></h3><div class="s">What if we make a mistake and do <em>something irrational</em>? Here, too, traditional economics has an answer: &quot;market forces&quot; will sweep down on us and swiftly set <b>...</b><br><span class=f><cite>www.scribd.com/.../Predictably-<b>Irrational</b>-The-Hidden-Forces-That-Shape- Our-Decisions-Harper-2008</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:boKcmbW9PqQJ:www.scribd.com/doc/26002532/Predictably-Irrational-The-Hidden-Forces-That-Shape-Our-Decisions-Harper-2008+something+irrational&amp;cd=471&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://blogs.discovermagazine.com/notrocketscience/2010/08/10/brainless-slime-mould-makes-decisions-like-humans/" class=l>Brainless slime mould makes decisions like humans | Not Exactly <b>...</b></a></h3><div class="s">Aug 10, 2010 <b>...</b> Add <em>something</em> new into the mix, and its decisions change. <b>....</b> &#39;<em>Irrational</em>&#39; implies that there is a flaw in the decision making process, <b>...</b><br><span class=f><cite>blogs.discovermagazine.com/.../brainless-slime-mould-makes-decisions-like- humans/</cite><span class=gl></span></span></div><li class=g><h3 class="r"><a href="http://www.politicsforum.org/forum/viewtopic.php?f=71&amp;t=106966&amp;p=13071512" class=l>Politics Forum .org - View topic - People Are <em>Irrational</em> Argument</a></h3><div class="s"><div class="f">4 posts&nbsp;-&nbsp;3 authors&nbsp;-&nbsp;Last post:&nbsp;Jun 23, 2009</div>I have been told constantly that people are <em>irrational</em>, almost as if the only thing keeping them from and from not buying <em>something</em> is that <b>...</b><br><span class=f><cite>www.politicsforum.org/forum/viewtopic.php?f=71&amp;t...p...</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:fFSUQWbk5hMJ:www.politicsforum.org/forum/viewtopic.php%3Ff%3D71%26t%3D106966%26p%3D13071512+something+irrational&amp;cd=473&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><h3 id="tbpr_73" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=dsc:1&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CJgCEJgHMEg4kAM" ><span class=micon style="background-position:0 -172px"></span>Get more discussion results</a></h3><li class=g><h3 class="r"><a href="http://www.amazon.co.uk/product-reviews/0753516829" class=l>Amazon.co.uk: Customer Reviews: Sway: The Irresistible Pull of <b>...</b></a></h3><div class="s">The authors talk about a scenario, <em>something irrational</em> that happened but shouldn&#39;t have happened. The authors then explain it, referencing research into <b>...</b><br><span class=f><cite>www.amazon.co.uk/product-reviews/0753516829</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:0zqVnqdM2FQJ:www.amazon.co.uk/product-reviews/0753516829+something+irrational&amp;cd=474&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><span class="b w xsm">[PDF]</span> <h3 class="r"><a href="http://psy.ucsd.edu/~pwinkiel/winkielman-berridge_political-psychology-2003.pdf" class=l>pdf - <em>Irrational</em> Wanting and Subrational Liking: How Rudimentary <b>...</b></a></h3><div class="s"><span class=f>File Format:</span> PDF/Adobe Acrobat<br><span class=f><i>Your browser may not have a PDF reader available. Google recommends visiting our <a href="">text version</a> of this document.</i></span><br><span class=f>by P Winkielman</span> - <span class=f>2003</span> - <a class=fl href="http://scholar.google.com/scholar?hl=en&amp;lr=&amp;cites=17321876184284428579&amp;um=1&amp;ie=UTF-8&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;sa=X&amp;oi=science_links&amp;ct=sl-citedby&amp;resnum=75&amp;ved=0CJ8CEM4CMEo4kAM">Cited by 21</a> - <a class=fl href="http://scholar.google.com/scholar?hl=en&amp;lr=&amp;q=related:I3mSR52qY_AJ:scholar.google.com/&amp;um=1&amp;ie=UTF-8&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;sa=X&amp;oi=science_links&amp;ct=sl-related&amp;resnum=75&amp;ved=0CKACEM8CMEo4kAM">Related articles</a><br><em>Irrational</em> wanting occurs when an organism wants <em>something</em> that it does not like and does not expect to like. Is this possibility so bizarre that political <b>...</b><br><span class=f><cite>psy.ucsd.edu/~pwinkiel/winkielman-berridge_political-psychology-2003.pdf</cite><span class=gl></span></span></div><li class=g><h3 class="r"><a href="http://itunes.apple.com/us/podcast/ipr-irrational-public-radio/id152488184" class=l>IPR : <em>Irrational</em> Public Radio - Download free podcast episodes by <b>...</b></a></h3><div class="s">Download or subscribe to free podcast episodes from IPR : <em>Irrational</em> Public Radio by <b>...</b> Episode 1 - Sweet Pickles, Questionable Financial Advice, <em>Something</em> <b>...</b><br><span class=f><cite>itunes.apple.com/us/podcast/ipr-<b>irrational</b>-public.../id152488184</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:-6je5oXeRFQJ:itunes.apple.com/us/podcast/ipr-irrational-public-radio/id152488184+something+irrational&amp;cd=476&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.winnipegfreepress.com/opinion/editorials/mr-martins-outburst-irrational-84764497.html" class=l>Mr. Martin&#39;s outburst <em>irrational</em> - Winnipeg Free Press</a></h3><div class="s">Feb 19, 2010 <b>...</b> It&#39;s not clear if it was an act of faith or <em>something</em> else that led MP Pat Martin to <b>...</b> Mr. Martin&#39;s outburst <em>irrational</em>. By: Editorial <b>...</b><br><span class=f><cite>www.winnipegfreepress.com/.../mr-martins-outburst-<b>irrational</b>-84764497. html</cite> - <cite>Canada</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:U00mMN8bxUAJ:www.winnipegfreepress.com/opinion/editorials/mr-martins-outburst-irrational-84764497.html+something+irrational&amp;cd=477&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.prospect.org/web/page.ww?section=root&amp;name=ViewWeb&amp;articleId=12585" class=l>throws cold water - Article | The American Prospect</a></h3><div class="s">Mar 20, 2007 <b>...</b> <em>Irrational</em> Exuberance. Progressives seem unduly optimistic about an era <b>...</b> the institutional groundwork for <em>something</em> bigger in the future. <b>...</b><br><span class=f><cite>www.prospect.org/web/page.ww?section=root&amp;name...12585</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:v7NvCjYKapkJ:www.prospect.org/web/page.ww%3Fsection%3Droot%26name%3DViewWeb%26articleId%3D12585+something+irrational&amp;cd=478&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.thejuliagroup.com/blog/?m=200901" class=l>2009 January : AnnMaria&#39;s Blog</a></h3><div class="s">This is probably completely <em>irrational</em>, like that guy I turned down for a date <b>....</b> ?I always thought <em>something</em> was fundamentally wrong with the universe. <b>...</b><br><span class=f><cite>www.thejuliagroup.com/blog/?m=200901</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:oLea5a_E6W8J:www.thejuliagroup.com/blog/%3Fm%3D200901+something+irrational&amp;cd=479&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://bloggingheads.tv/forum/archive/index.php/t-1677.html" class=l>Free Will: Predictably <em>Irrational</em> [Archive] - Bloggingheads Community</a></h3><div class="s"><div class="f">16 posts&nbsp;-&nbsp;12 authors&nbsp;-&nbsp;Last post:&nbsp;Mar 12, 2008</div>[Archive] Free Will: Predictably <em>Irrational</em> Diavlog comments. <b>...</b> One school tries <em>something</em> new and gets better results, but there is a <b>...</b><br><span class=f><cite>bloggingheads.tv/forum/archive/index.php/t-1677.html</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:_ECFNve5tJkJ:bloggingheads.tv/forum/archive/index.php/t-1677.html+something+irrational&amp;cd=480&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><h3 id="tbpr_80" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=dsc:1&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CLECEJgHME84kAM" ><span class=micon style="background-position:0 -172px"></span>Get more discussion results</a></h3><li class=g><h3 class="r"><a href="http://www.totalvideogames.com/Bioshock-Infinite/news/Irrational-Games-Revealing-Next-Project-In-Two-Days-15529.html" class=l><em>Irrational</em> Games Revealing Next Project In Two Days News</a></h3><div class="s">Aug 10, 2010 <b>...</b> Ken Levine&#39;s <em>Irrational</em> Games, the developer behind BioShock, <b>....</b> <em>Something</em> specific involving PS3, maybe even PS3 exclusive. <b>...</b><br><span class=f><cite>www.totalvideogames.com/.../<b>Irrational</b>-Games-Revealing-Next-Project-In- Two-Days-15529.html</cite> - <cite>United Kingdom</cite><span class=gl></span></span></div><li class=g><h3 class="r"><a href="http://www.rockpapershotgun.com/2010/08/12/irrational-anthem-their-new-game-unveiled/" class=l><em>Irrational</em> Anthem: Their New Game, Unveiled | Rock, Paper, Shotgun</a></h3><div class="s">Aug 12, 2010 <b>...</b> The only thing that I have a bigger <em>irrational</em> fear of than the deep open <b>...</b> I&#39; m not sure what ? perhaps <em>something</em> along the lines of a <b>...</b><br><span class=f><cite>www.rockpapershotgun.com/.../<b>irrational</b>-anthem-their-new-game-unveiled/</cite><span class=gl></span></span></div><li class=g><h3 class="r"><a href="http://www.flipkart.com/predictably-irrational-dan-ariely-book-0007256531" class=l>Predictably <em>Irrational</em>: Dan Ariely: Books | Flipkart</a></h3><div class="s">The book shows why we are predictably &quot;<em>irrational</em>&quot;. Or why, our actions are actually justified by <em>something</em> more than just simple cost-benefit analysis. <b>...</b><br><span class=f><cite>www.flipkart.com/predictably-<b>irrational</b>-dan-ariely-book-0007256531</cite> - <cite>India</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:aedfARBWelsJ:www.flipkart.com/predictably-irrational-dan-ariely-book-0007256531+something+irrational&amp;cd=483&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class=r><a href="http://books.google.com/books?id=1nO4yTads-0C&amp;pg=PA74&amp;lpg=PA74&amp;dq=something+irrational&amp;source=bl&amp;ots=dy8eUVrOfQ&amp;sig=a5vy_waB4jXgrjvBjyzjr1RSaPo&amp;hl=en&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;sa=X&amp;oi=book_result&amp;ct=result&amp;resnum=84&amp;ved=0CLoCEOgBMFM4kAM">The pig that wants to be eaten: 100 experiments for the armchair ... - Google Books Result</a></h3><div class=s><span class=gl style="white-space:normal"><a href="/search?start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;q=inauthor:&quot;Julian+Baggini&quot;&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CLsCEPQIOJAD">Julian Baggini</a> - 2006 - Philosophy - 306 pages</span><br>Buridan seems to have thought his way to something that sounds equally paradoxical: sometimes it is rational to do <em>something irrational</em>. <b>...</b><br><cite>books.google.com/books?isbn=0452287448<b>...</b></cite></div><li class=g><h3 class="r"><a href="http://www.marxists.org/archive/brinton/1970/irrational-politics.htm" class=l>The <em>Irrational</em> In Politics</a></h3><div class="s">Jun 13, 2009 <b>...</b> For anyone interested in politics the &quot;<em>irrational</em>&quot; behaviour of <b>.....</b> The exploited cease to perceive it as <em>something</em> imposed on them from <b>...</b><br><span class=f><cite>www.marxists.org/archive/brinton/1970/<b>irrational</b>-politics.htm</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:UdxV5mrSEGIJ:www.marxists.org/archive/brinton/1970/irrational-politics.htm+something+irrational&amp;cd=485&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://math.uoregon.edu/alumni/theses/itzaortiz.pdf" class=l>THE C*-ALGEBRAS ASSOCIATED WITH <em>IRRATIONAL</em> TIME HOMEOMORPHISMS OF <b>...</b></a></h3><div class="s"><span class=f><i>Your browser may not have a PDF reader available. Google recommends visiting our <a href="">text version</a> of this document.</i></span><br><span class=f>by NC Phillips</span> - <span class=f>2003</span> - <a class=fl href="http://scholar.google.com/scholar?hl=en&amp;lr=&amp;q=related:rwjkWk1-dZUJ:scholar.google.com/&amp;um=1&amp;ie=UTF-8&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;sa=X&amp;oi=science_links&amp;ct=sl-related&amp;resnum=86&amp;ved=0CMICEM8CMFU4kAM">Related articles</a><br>formula will rely on the work of [6] and so what we get is <em>something</em> more general <b>......</b> riodic points and let &#946; be the <em>irrational</em> rotation number of h. <b>...</b><br><span class=f><cite>math.uoregon.edu/alumni/theses/itzaortiz.pdf</cite><span class=gl></span></span></div><li class=g><h3 class="r"><a href="http://cbtrecovery.org/interviewalbertellis.htm" class=l>Interview with Albert Ellis</a></h3><div class="s">AE: If <em>something</em> is <em>irrational</em>, that means it won&#39;t work. It&#39;s usually unrealistic. People are terrified of other people or difficult projects because they <b>...</b><br><span class=f><cite>cbtrecovery.org/interviewalbertellis.htm</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:SL9Zhmcwh6IJ:cbtrecovery.org/interviewalbertellis.htm+something+irrational&amp;cd=487&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.mediabistro.com/fishbowlny/media_people/rupert_murdoch_irrational_in_quest_to_gut_the_times_153469.asp" class=l>Rupert Murdoch &#39;<em>Irrational</em>&#39; in Quest to Gut the &lt;em&gt;Times&lt;/em <b>...</b></a></h3><div class="s">Mar 1, 2010 <b>...</b> Rupert Murdoch &#39;<em>Irrational</em>&#39; in Quest to Gut the Times <b>...</b> sinking ship is <em>something</em> they fantasize about at night,&#39;&quot; says the senior Journal <b>...</b><br><span class=f><cite>www.mediabistro.com/.../rupert_murdoch_<b>irrational</b>_in_quest_to_gut_the_ times_153469.asp</cite><span class=gl></span></span></div><li class=g><h3 class="r"><a href="http://www.learnoutloud.com/Podcast-Directory/Arts-and-Entertainment/Comedy/IPR-Irrational-Public-Radio-Podcast/18365" class=l>IPR: <em>Irrational</em> Public Radio Podcast by Joe Smith - Free Podcast <b>...</b></a></h3><div class="s">...Where other news sources leave off, <em>Irrational</em> Public Radio starts, <b>...</b> Episode 1 - Sweet Pickles, Questionable Financial Advice, <em>Something</em> Shocking <b>...</b><br><span class=f><cite>www.learnoutloud.com/Podcast-Directory/...<b>Irrational</b>.../18365</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:IDPOnro5rzYJ:www.learnoutloud.com/Podcast-Directory/Arts-and-Entertainment/Comedy/IPR-Irrational-Public-Radio-Podcast/18365+something+irrational&amp;cd=489&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://wire.vg/post/36458/Irrational-Games-Close-To-Revealing-Something-New" class=l><em>Irrational</em> Games Close To Revealing <em>Something</em> New - Wire.vg</a></h3><div class="s"><em>Irrational</em> Games, the masterminds behind 2007&#39;s hit Bioshock, have been teasing about an unannounced project for a bit now. But it looks like they are <b>...</b><br><span class=f><cite>wire.vg/post/.../<b>Irrational</b>-Games-Close-To-Revealing-<b>Something</b>-New</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:uL1pxmcIh-cJ:wire.vg/post/36458/Irrational-Games-Close-To-Revealing-Something-New+something+irrational&amp;cd=490&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://community.eu.playstation.com/t5/PlayStation-3-General-Discussion/Irrational-Games-Next-Project-Coming-To-PS3-First-Video-And-Ken/m-p/11337376;jsessionid=C0E118DDD2D8534305DF9EBFF9B1DF08" class=l><em>Irrational</em> Games&#39; Next Project Coming To PS3, Firs...&amp;A - Official <b>...</b></a></h3><div class="s"><div class="f">1 post&nbsp;-&nbsp;1 author&nbsp;-&nbsp;Last post:&nbsp;2 days ago</div>We&#39;re pleased and excited to welcome <em>Irrational</em> Games to the PlayStation. <b>...</b> We wanted to make sure we had <em>something</em> that felt familiar in <b>...</b><br><span class=f><cite>community.eu.playstation.com/t5/.../<b>Irrational</b>.../11337376;...</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:S5ZaB0Hn6hsJ:community.eu.playstation.com/t5/PlayStation-3-General-Discussion/Irrational-Games-Next-Project-Coming-To-PS3-First-Video-And-Ken/m-p/11337376%3Bjsessionid%3DC0E118DDD2D8534305DF9EBFF9B1DF08+something+irrational&amp;cd=491&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><h3 id="tbpr_91" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=dsc:1&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CNICEJgHMFo4kAM" ><span class=micon style="background-position:0 -172px"></span>Get more discussion results</a></h3><li class=g><h3 class="r"><a href="http://dotsub.com/view/4835a99e-e4e9-4f1e-b628-497a13b60cbd" class=l>Laurie Santos: A monkey economy as <em>irrational</em> as ours - 5 <b>...</b></a></h3><div class="s">Jul 26, 2010 <b>...</b> The first observation is <em>something</em> that you might think is quite obvious, <b>.....</b> But they also do some of the <em>irrational</em> things we do. <b>...</b><br><span class=f><cite>dotsub.com/view/4835a99e-e4e9-4f1e-b628-497a13b60cbd</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:Yh9hFcRoTYUJ:dotsub.com/view/4835a99e-e4e9-4f1e-b628-497a13b60cbd+something+irrational&amp;cd=492&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.bitmob.com/articles/the-bioshock-backlash-negative-responses-to-bioshock-infinite" class=l>The BioShock Backlash: Negative Responses to BioShock Infinite</a></h3><div class="s">Aug 17, 2010 <b>...</b> I would like <em>something</em> refreshingly new out of [<em>Irrational</em>] instead of a game I feel I have already played and gotten sick of.&quot; <b>...</b><br><span class=f><cite>www.bitmob.com/.../the-bioshock-backlash-negative-responses-to-bioshock- infinite</cite><span class=gl></span></span></div><h3 id="tbpr_93" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=qdr:d&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CNkCEJgHMFw4kAM" ><span class=micon style="background-position:-51px -112px"></span>Get more results from the past 24 hours</a></h3><li class=g><span class="b w xsm">[PDF]</span> <h3 class="r"><a href="http://www.e-reading.org.ua/bookreader.php/138702/Ariely_-_Predictably_Irrational%3B_The_Hidden_Forces_That_Shape_Our_Decisions.html" class=l>Predictably <em>Irrational</em>: The Hidden Forces That Shape Our Decisions <b>...</b></a></h3><div class="s"><span class=f>File Format:</span> PDF/Adobe Acrobat<br><span class=f><i>Your browser may not have a PDF reader available. Google recommends visiting our <a href="">text version</a> of this document.</i></span><br>do <em>something irrational</em>? Here, too, traditional economics has an answer: &quot;market forces&quot; will sweep down on us and swiftly set us back on the path of <b>...</b><br><span class=f><cite>www.e-reading.org.ua/.../Ariely_-_Predictably_<b>Irrational</b>%3B_The_Hidden_ Forces_That_Shape_Our_Decisions.html</cite><span class=gl></span></span></div><li class=g><h3 class="r"><a href="http://beyondthetrestle.com/blog/addressing-irrational-fear" class=l>Addressing the &#39;<em>irrational</em> fear&#39; | Beyond the Trestle</a></h3><div class="s">Aug 18, 2010 <b>...</b> Jason Pye thinks there&#39;s some <em>irrational</em> fear going on regarding Roy Barnes . <b>...</b> It boils down to <em>something</em> much simpler: <b>...</b><br><span class=f><cite>beyondthetrestle.com/blog/addressing-<b>irrational</b>-fear</cite><span class=gl></span></span></div><h3 id="tbpr_95" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=qdr:d&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CN4CEJgHMF44kAM" ><span class=micon style="background-position:-51px -112px"></span>Get more results from the past 24 hours</a></h3><li class=g><h3 class="r"><a href="http://forums.randi.org/showthread.php?p=6241623" class=l><em>Irrational</em> explanation for the existence of ghosts. - JREF Forum</a></h3><div class="s"><div class="f">20 posts&nbsp;-&nbsp;13 authors&nbsp;-&nbsp;Last post:&nbsp;5 hours ago</div><em>Irrational</em> explanation for the existence of ghosts. <b>...</b> synonymous with &quot; reasonable&quot; but only <em>something</em> like &quot;logically consistent&quot; (or &quot;lacking an internal <b>...</b><br><span class=f><cite>forums.randi.org/showthread.php?p=6241623</cite><span class=gl></span></span></div><h3 id="tbpr_96" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=dsc:1&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0COICEJgHMF84kAM" ><span class=micon style="background-position:0 -172px"></span>Get more discussion results</a></h3><li class=g><h3 class="r"><a href="http://ask.metafilter.com/33652/List-some-specific-widely-held-possibly-irrational-turnons" class=l>List some specific, widely held, possibly <em>irrational</em> turn-ons <b>...</b></a></h3><div class="s">Mar 2, 2006 <b>...</b> I dunno. Maybe when chicks were 17 or <em>something</em>. Or as pure fantasy. Certainly that IS <em>irrational</em>. I know. This was one of my experiments. <b>...</b><br><span class=f><cite>ask.metafilter.com/.../List-some-specific-widely-held-possibly-<b>irrational</b>- turnons</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:MCStXidTQuwJ:ask.metafilter.com/33652/List-some-specific-widely-held-possibly-irrational-turnons+something+irrational&amp;cd=497&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a> - <a href="/search?hl=en&amp;ie=UTF-8&amp;q=related:ask.metafilter.com/33652/List-some-specific-widely-held-possibly-irrational-turnons+something+irrational&amp;tbo=1&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0COcCEB8w8AM4kAM">Similar</a></span></span></div><h3 id="tbpr_97" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=dsc:1&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0COUCEJgHMGA4kAM" ><span class=micon style="background-position:0 -172px"></span>Get more discussion results</a></h3><li class=g><h3 class="r"><a href="http://paul.kedrosky.com/archives/2007/02/irrational_inat.html" class=l><em>Irrational</em> Inattention, or Why Traders Can&#39;t Read, Part XXXIV</a></h3><div class="s"><em>Irrational</em> Inattention, or Why Traders Can&#39;t Read, Part XXXIV <b>...</b> data release seems to be <em>something</em> that should be extraordinarily easy for the markets. <b>...</b><br><span class=f><cite>paul.kedrosky.com/archives/2007/02/<b>irrational</b>_inat.html</cite> - <span class=gl><a href="http://webcache.googleusercontent.com/search?q=cache:frH26Tzmng0J:paul.kedrosky.com/archives/2007/02/irrational_inat.html+something+irrational&amp;cd=498&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;ie=UTF-8">Cached</a></span></span></div><li class=g><h3 class="r"><a href="http://www.bogleheads.org/forum/viewtopic.php?t=58877&amp;mrr=1282180180&amp;start=50" class=l>Bogleheads :: View topic - anyone play the lottery?</a></h3><div class="s"><div class="f">18 posts&nbsp;-&nbsp;15 authors&nbsp;-&nbsp;Last post:&nbsp;2 hours ago</div>If someone does <em>something</em> &#39;<em>irrational</em>&#39; then they must be &#39;stupid&#39;. If you have no chance of climbing out of the muck in life, <b>...</b><br><span class=f><cite>www.bogleheads.org/forum/viewtopic.php?t=58877&amp;mrr...start=50</cite><span class=gl></span></span></div><h3 id="tbpr_99" class=tbpr style="display:none"><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbs=dsc:1&amp;tbo=u&amp;sa=X&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;ved=0CO4CEJgHMGI4kAM" ><span class=micon style="background-position:0 -172px"></span>Get more discussion results</a></h3><li class=g><h3 class="r"><a href="http://infomotions.com/etexts/gutenberg/dirs/1/1/3/5/11354/11354.htm" class=l>The <em>Irrational</em> Knot Being the Second Novel of His Nonage / Shaw <b>...</b></a></h3><div class="s">It is true that if a man called on me now and asked me to write <em>something</em> like The <em>Irrational</em> Knot I should have to exercise great self-control. <b>...</b><br><span class=f><cite>infomotions.com/etexts/gutenberg/dirs/1/1/3/5/11354/11354.htm</cite><span class=gl></span></span></div></ol></div></div> </div> <div id=leftnav role=navigation style="padding-top:3px;padding-left:4px;position:absolute;top:0;width:151px" onclick="google.srp&&google.srp.qs(event)"><div id=ms><ul><li class="mitem msel"><span class=micon style="background-position:-20px -132px"></span>Everything<li class="mitem"><a href="/search?q=something+irrational&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;source=lnms&amp;tbs=bks:1&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;sa=X&amp;oi=mode_link&amp;ct=mode&amp;ved=0CAYQ_AU4kAM" class="q qs"><span class=micon style="background-position:-40px -152px"></span>Books</a></ul><ul class=nojsb id="hidden_modes"><li class="mitem"><a href="/images?q=something+irrational&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;source=lnms&amp;tbs=isch:1&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;sa=X&amp;oi=mode_link&amp;ct=mode&amp;ved=0CAcQ_AU4kAM" class="q qs"><span class=micon style="background-position:-40px -132px"></span>Images</a><li class="mitem"><a href="/search?q=something+irrational&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;source=lnms&amp;tbs=vid:1&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;sa=X&amp;oi=mode_link&amp;ct=mode&amp;ved=0CAgQ_AU4kAM" class="q qs"><span class=micon style="background-position:-80px -132px"></span>Videos</a><li class="mitem"><a href="http://maps.google.com/maps?q=something+irrational&amp;num=100&amp;um=1&amp;ie=UTF-8&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;sa=X&amp;oi=mode_link&amp;ct=mode&amp;ved=0CAkQ_AU4kAM" class="q qs"><span class=micon style="background-position:-80px -152px"></span>Maps</a><li class="mitem"><a href="/search?q=something+irrational&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;source=lnms&amp;tbs=nws:1&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;sa=X&amp;oi=mode_link&amp;ct=mode&amp;ved=0CAoQ_AU4kAM" class="q qs"><span class=micon style="background-position:-120px -132px"></span>News</a><li class="mitem"><a href="http://www.google.com/products?q=something+irrational&amp;num=100&amp;um=1&amp;ie=UTF-8&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;sa=X&amp;oi=mode_link&amp;ct=mode&amp;ved=0CAsQ_AU4kAM" class="q qs"><span class=micon style="background-position:-120px -152px"></span>Shopping</a><li class="mitem"><a href="/search?q=something+irrational&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;source=lnms&amp;tbs=blg:1&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;sa=X&amp;oi=mode_link&amp;ct=mode&amp;ved=0CAwQ_AU4kAM" class="q qs"><span class=micon style="background-position:0 -152px"></span>Blogs</a><li class="mitem"><a href="/search?q=something+irrational&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;source=lnms&amp;tbs=mbl:1&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;sa=X&amp;oi=mode_link&amp;ct=mode&amp;ved=0CA0Q_AU4kAM" class="q qs"><span class=micon style="background-position:-40px -172px"></span>Updates</a><li class="mitem"><a href="/search?q=something+irrational&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;source=lnms&amp;tbs=dsc:1&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;sa=X&amp;oi=mode_link&amp;ct=mode&amp;ved=0CA4Q_AU4kAM" class="q qs"><span class=micon style="background-position:0 -172px"></span>Discussions</a></ul><a id=showmodes class="jsb q nj" href="#" onclick="google.x(this.id,google.srp.toggleModes);return false" style="border-bottom:1px solid #c9d7f1;padding-bottom:9px"><span class="micon"></span><span class="msm">More</span><span class="msl">Fewer</span></a></div><div style="clear:both;overflow:hidden"><h2 class=hd>Search Options</h2><ul id=tbd class="med"></ul><a href="/search?q=something+irrational&amp;start=400&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;tbo=1" class="nj q" id=tbpi onclick="return google.x(this,function(){return google.Toolbelt.togglePromotedTools(this, event)})" style="clear:both;display:block;margin:8px"><span id=tbp style="background-position:-153px -99px;border:0;display:block;float:left;height:14px;margin-right:3px;width:14px"></span><nobr class=tbpo>Hide search tools</nobr><nobr class=tbpc>Show search tools</nobr></a></div></div></div> <div id=foot class=tsf-p role=contentinfo><div id=navcnt><table id=nav style="border-collapse:collapse;text-align:left;direction:ltr;margin:17px auto 0"><tr valign=top><td class=b><a href="/search?q=something+irrational&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;start=300&amp;sa=N" class=pn><span class="csb ch" style="background-position:0 0;float:right;width:53px"></span><span style="display:block;margin-right:35px;clear:right">Previous</span></a><td><a href="/search?q=something+irrational&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;start=0&amp;sa=N" class=fl><span class="csb ch" style="background-position:-74px 0;width:20px"></span>1</a><td><a href="/search?q=something+irrational&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;start=100&amp;sa=N" class=fl><span class="csb ch" style="background-position:-74px 0;width:20px"></span>2</a><td><a href="/search?q=something+irrational&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;start=200&amp;sa=N" class=fl><span class="csb ch" style="background-position:-74px 0;width:20px"></span>3</a><td><a href="/search?q=something+irrational&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;start=300&amp;sa=N" class=fl><span class="csb ch" style="background-position:-74px 0;width:20px"></span>4</a><td class=cur><span class="csb" style="background-position:-53px 0;width:20px"></span>5<td><a href="/search?q=something+irrational&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;start=500&amp;sa=N" class=fl><span class="csb ch" style="background-position:-74px 0;width:20px"></span>6</a><td><a href="/search?q=something+irrational&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;start=600&amp;sa=N" class=fl><span class="csb ch" style="background-position:-74px 0;width:20px"></span>7</a><td><a href="/search?q=something+irrational&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;start=700&amp;sa=N" class=fl><span class="csb ch" style="background-position:-74px 0;width:20px"></span>8</a><td><a href="/search?q=something+irrational&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;start=800&amp;sa=N" class=fl><span class="csb ch" style="background-position:-74px 0;width:20px"></span>9</a><td class=b><a href="/search?q=something+irrational&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;ei=QaxsTN6yF46ksQPI0eHzBw&amp;start=500&amp;sa=N" class=pn style="text-align:left"><span class="csb ch" style="background-position:-96px 0;width:71px"></span><span style="display:block;margin-left:53px">Next</span></a></table></div><div style="height:1px;line-height:0"></div><div><div id=sftr style="margin-top:22px"><form method=get action="/search"><table border=0 cellpadding=0 cellspacing=0><tr><td class=lst-td width=100%><input class=lst type=text name=q maxlength=2048 value="something irrational" title="Search"><span id=tsf-oq style="display:none">something irrational</span><td><div class=ds><div class=lsbb><input type=submit name="btnG" class=lsb value="Search"></div></div></table><input type=hidden name=num value="100"><input type=hidden name=hl value="en"><input type=hidden name=ie value="ISO-8859-1"><input type=hidden name=sa value="2"></form></div><p id=bfl style="margin:6px 0 0;text-align:center"><a href="/swr?q=something+irrational&amp;hl=en&amp;ie=UTF-8&amp;prmd=b&amp;swrnum=5210000" class=fl>Search&nbsp;within&nbsp;results</a> <a href="/support/websearch/bin/answer.py?answer=134479&amp;hl=en" class=fl>Search Help</a> <a href="/quality_form?q=something+irrational&amp;num=100&amp;hl=en&amp;ie=UTF-8&amp;prmd=b" target=_blank class=fl>Give us feedback</a> </div><div id=fll style="margin:19px auto 19px auto;text-align:center"><a href="/">Google&nbsp;Home</a><a href="/intl/en/ads/">Advertising&nbsp;Programs</a><a href="/services/">Business Solutions</a><a href="/intl/en/privacy.html">Privacy</a><a href="/intl/en/about.html">About Google</a></div></div></div> <textarea style="display:none" id=hcache></textarea><div id=xjsd></div><div id=xjsi><script>if(google.y)google.y.first=[];if(google.y)google.y.first=[];google.dstr=[];google.rein=[];window.setTimeout(function(){var a=document.createElement("script");a.src="/extern_js/f/CgJlbhICdXMgACswRTgBLCswWjgDLCswDjgXLCswFzgHLCswJzgELCswPDgDLCswUTgCLCswCjhzQC8sKzAWOB0sKzAZOCAsKzAlOMqIASwrMDU4BCwrMEA4EiwrMEE4BSwrME44BiwrMFQ4ASwrMBg4BSwrMCY4DSyAAheQAhY/M35v6lP-Ioc.js";(document.getElementById("xjsd")||document.body).appendChild(a);if(google.timers&&google.timers.load.t)google.timers.load.t.xjsls=(new Date).getTime();},0);
63
+ ;window.mbtb1={tbs:"",docid:"5394383645062857771",usg:"e037",obd:false};google.base_href='/search?q\x3dsomething+irrational\x26start\x3d400\x26num\x3d100\x26hl\x3den\x26ie\x3dUTF-8\x26prmd\x3db';google.sn='web';google.Toolbelt.atg=[7,2,4,6];google.Toolbelt.pbt=[];google.Toolbelt.pti={};google.drhs=1;google.nolujs=1;var oldElement=document.getElementById('tbt3');if(oldElement){oldElement.parentNode.removeChild(oldElement);}delete google.ww;google.y.first.push(function(){google.Tbpr && google.Tbpr.init();google.tbpr && google.tbpr.init();google.Toolbelt.initializeToolElements &&google.Toolbelt.initializeToolElements();;window.mb406=ManyBox.register('406','yVytXXZh8xoJ','250d',32,'Hide more results from answers.yahoo.com');mb406.append(['mres=yVytXXZh8xoJ:OMBK9bKtJJMJ:']);mb406.append(['q=/search%3Fhl%3Den%26ie%3DUTF-8%26q%3D%2Bsite%3Aanswers.yahoo.com%2Bsomething%2Birrational']);mb406.append(['ved=0CPYCELMIOJAD']);var form=document.gs||document.f||document.gs;google.ac.i(form,form.q,'','something irrational','',{o:1,sw:1,l:1});google.riu={render:function(){window.setTimeout(function(){var a=document.createElement("script");a.src="/extern_js/f/CgJlbhICdXMgACswPzgDLIACF5ACFg/fpJ2E8bIc2s.js";(document.getElementById("xjsd")||document.body).appendChild(a);},0);
64
+ }};;ManyBox.init();google.History&&google.History.initialize('/search?q\x3dsomething+irrational\x26amp;num\x3d100\x26amp;start\x3d400')});if(google.j&&google.j.en&&google.j.xi){window.setTimeout(google.j.xi,0);google.fade=null;}</script></div><script>(function(){
65
+ var b,d,e,f;function g(a,c){if(a.removeEventListener){a.removeEventListener("load",c,false);a.removeEventListener("error",c,false)}else{a.detachEvent("onload",c);a.detachEvent("onerror",c)}}function h(a){f=(new Date).getTime();++d;a=a||window.event;var c=a.target||a.srcElement;g(c,h)}var i=document.getElementsByTagName("img");b=i.length;d=0;for(var j=0,k;j<b;++j){k=i[j];if(k.complete||typeof k.src!="string"||!k.src)++d;else if(k.addEventListener){k.addEventListener("load",h,false);k.addEventListener("error",
66
+ h,false)}else{k.attachEvent("onload",h);k.attachEvent("onerror",h)}}e=b-d;function l(){if(!google.timers.load.t)return;google.timers.load.t.ol=(new Date).getTime();google.timers.load.t.iml=f;google.kCSI.imc=d;google.kCSI.imn=b;google.kCSI.imp=e;google.report&&google.report(google.timers.load,google.kCSI)}if(window.addEventListener)window.addEventListener("load",l,false);else if(window.attachEvent)window.attachEvent("onload",l);google.timers.load.t.prt=(f=(new Date).getTime());
67
+ })();
68
+ </script>
69
+ }
70
+ end