-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
145 lines (125 loc) · 5.72 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html>
<head>
<title>Joint Therapy Outreach</title>
<link rel="stylesheet" type="text/css" href="jto.css" />
<link rel="icon" href="icon.png" type="image/png" />
<meta name="description" content="Providing health and therapy services to people with disabilities and health challenges in impoverished circumstances" />
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?key=AIzaSyDSK88vc9vAJajS_tDac61ht6RzjBdaysk&sensor=false"></script>
<script type="text/javascript"
src="http://google-maps-utility-library-v3.googlecode.com/svn/tags/markerwithlabel/1.1.9/src/markerwithlabel.js"></script>
<script type="text/javascript">
function initialize() {
var vanuatuLatLng = new google.maps.LatLng(-17.75, 168.3);
var mapOptionsOverview = {
center: new google.maps.LatLng(-18, 150.644),
zoom: 2,
mapTypeId: google.maps.MapTypeId.ROADMAP,
streetViewControl: false
};
var mapOptionsDetail = {
center: vanuatuLatLng,
zoom: 5,
mapTypeId: google.maps.MapTypeId.ROADMAP,
streetViewControl: false
};
var map1 = new google.maps.Map(document.getElementById("map_overview"),
mapOptionsOverview);
var map2 = new google.maps.Map(document.getElementById("map_detail"),
mapOptionsDetail);
var vanuatuMarker = new MarkerWithLabel({
position: vanuatuLatLng,
map: map1,
labelContent: "Vanuatu",
labelClass: "mapLabel",
clickable: false
});
var santoMarker = new MarkerWithLabel({
position: new google.maps.LatLng(-15.3405, 166.9235),
map: map2,
labelContent: "Santo (2010/11/12/13/14)",
labelClass: "mapLabel",
clickable: false
});
var tannaMarker = new MarkerWithLabel({
position: new google.maps.LatLng(-19.5148, 169.3569),
map: map2,
labelContent: "Tanna (2013/14)",
labelClass: "mapLabel",
clickable: false
});
}
</script>
</head>
<body onload="initialize()">
<div class="wrapper">
<div class="toptitle">
<h1>Joint Therapy Outreach Inc.</h1>
</div>
<div class="topright">
<div class="toplogo">
<img src="logo.png" alt="JTO Logo" width="170" height="162" />
</div>
<div class="toptext">
<h2>Providing health and therapy support/services to people with
disabilities and health challenges in impoverished circumstances</h2>
</div>
</div>
<div class="clear"></div>
<div class="menu">
<p>
<a class="menuselected" href="index.html">Home</a>
<a class="menu" href="about.html">About Us</a>
<a class="menu" href="directors.html">Directors</a>
<a class="menu" href="volunteer.html">Volunteer</a>
<a class="menu" href="getinvolved.html">Get Involved</a>
<a class="menu" href="gallery.html">Photo Gallery</a>
<a class="menu" href="contact.html">Contact Us</a>
</p>
</div>
<div class="main">
<div id="slideshow">
<div><img src="slideshow/9.jpg" alt="Vanuatu" /></div>
<div><img src="slideshow/7.jpg" alt="Vanuatu" /></div>
<div><img src="slideshow/8.jpg" alt="Vanuatu" /></div>
<div><img src="slideshow/1.jpg" alt="Vanuatu" /></div>
<div><img src="slideshow/2.jpg" alt="Vanuatu" /></div>
<div><img src="slideshow/3.jpg" alt="Vanuatu" /></div>
<div><img src="slideshow/4.jpg" alt="Vanuatu" /></div>
<div><img src="slideshow/5.jpg" alt="Vanuatu" /></div>
<div><img src="slideshow/6.jpg" alt="Vanuatu" /></div>
</div>
<p>Joint Therapy Outreach Inc. is an Australian based not for profit
Christian charity.</p>
<p>Our aim is to make a difference to the lives of people in less
resourced communities who have disabilities and chronic health issues. To
achieve our aim we provide equipment, hands-on therapy and medical care
to meet immediate needs, and offer training to carers. We work with local
groups to enable development of skills and ongoing provision of
services.</p>
<p>Our focus to date has been the island nation of Vanuatu, located off
the East coast of Australia in the South Pacific. A team of professionals
has visited the island of Espiritu Santo in 2010, 2011, 2012 and 2013. We
also visited the island of Tanna in 2013. </p>
<p>In 2014 we are visiting both Tanna and Espiritu Santo. Our visits take place
in early July for about 2 weeks. </p>
<div id="map_overview" class="map"></div>
<div id="map_detail" class="map"></div>
<div class="clear"></div>
<p>JTO provides the opportunity for professionals, students and others to
experience a life changing short term volunteer opportunity, while
improving the health and wellbeing of people with disabilities living in
impoverished circumstances.</p>
<p><a href="http://www.wheelchairsforkids.org">Wheelchairs for Kids</a>
provide us with specially designed rough terrain
wheelchairs. These and other therapy materials such as adult wheel
chairs, commodes, walkers etc must then be freighted in advance to our
location. We are happy to receive donations of suitable equipment as
well as funds to pay for the cost of freight.</p>
</div>
<div class="footer"><p>Web design by Steven Cook</p></div>
</div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="slideshow.js"></script>
</body>
</html>