-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (80 loc) · 5.22 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie home" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie home" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie home" lang="en"> <![endif]-->
<!--[if IE 9]> <html class="no-js ie9 oldie home" lang="en"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html class="no-js home" lang="en"> <!--<![endif]-->
<head>
<title>Trolley Dilemma | Homepage</title>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0, width=device-width" />
<!--Fonts-->
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=IM+Fell+DW+Pica">
<!--CSS-->
<link rel="stylesheet" href="css/reset.css" media="screen, projection">
<link rel="stylesheet" href="css/style.css" media="screen, projection">
<!--JS-->
<script src="js/modernizr.js"></script>
<!--Favicon-->
<link rel="shortcut icon" href="img/favicon.ico" />
<!--Google Adsense-->
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-3749059572567170",
enable_page_level_ads: true
});
</script>
</head>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-3749059572567170",
enable_page_level_ads: true
});
</script>
<body>
<div id="container">
<h1>
<a href="index.html">
<b>The Trolley Dilemma</b><br />
<i>and how it relates to ethical communication</i>
</a>
</h1>
<div class="wrapper">
<div class="content">
<h2>About The Trolley Dilemma</h2>
<p>The "Trolley Dilemma" (or the "Trolley Problem") consists of a series of hypothetical scenarios developed by British philosopher Philippa Foot in 1967. Each scenario presents an extreme environment that tests the subject's ethical prowess. In 1985, American philosopher Judith Jarvis Thomson scrutinized and expanded on Foot's ideas in <i>The Yale Law Journal</i>.</p>
<p>Below you will find one of the Trolley Dilemma scenarios as stated by Thomson, followed by a multiple choice question. Each answer describes a unique reaction to the dilemma, and correlates with one of the five ethical paradigms of Utilitarianism, Deontology, Divine Command Theory, Ethical Relativism, and Virtue Ethics. Clicking on an answer will send you to a page that describes the corresponding paradigm and offers insight into its meaning in relation to ethical communication.</p>
<h2>Scenario: Trolley Driver</h2>
<blockquote>"Suppose you are the driver of a trolley. The trolley rounds a bend, and there come into view ahead five track workmen, who have been repairing the track. The track goes through a bit of a valley at that point, and the sides are steep, so you must stop the trolley if you are to avoid running the five men down. You step on the brakes, but alas they don't work. Now you suddenly see a spur of track leading off to the right. You can turn the trolley onto it, and thus save the five men on the straight track ahead. Unfortunately,...there is one track workman on that spur of track. He can no more get off the track in time than the five can, so you will kill him if you turn the trolley onto him" (Thomson 1985, 1395).</blockquote>
<div class="wreck still">
<img src="img/number-1.png" alt="1 Track Workman" class="one">
<img src="img/trolley.png" alt="Cable Car" class="trolley">
<img src="img/number-5.png" alt="5 Track Workmen" class="five">
</div>
<h3>What would you do? <span>(click on your answer below)</span></h3>
<ol>
<li><a href="utilitarianism.html">Throw the switch in order to maximize well-being (five people surviving is greater than one).</a></li>
<li><a href="virtue-ethics.html">Throw the switch because you are a virtuous person, and saving five lives is the type of charitable and compassionate act a virtuous person performs.</a></li>
<li><a href="deontology.html">Do not throw the switch because that would be a form of killing, and killing is inherently wrong.</a></li>
<li><a href="divine-command.html">Do not throw the switch because you are a Christian, and the Ten Commandments teach that killing is against the will of God.</a></li>
<li><a href="ethical-relativism.html">Do not throw the switch because you feel aiding in a person's death would be culturally inappropriate and illegal.</a></li>
</ol>
</div>
</div>
</div>
<footer>
<span><a href="references.html" class="large">References</a></span>
<span class="info">Made by <a href="http://www.twitter.com/joshdean" target="_blank">Josh Dean</a></span>
</footer>
<!-- Google Analytics -->
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-51697326-1');ga('send','pageview');
</script>
</body>
</html>