-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
196 lines (162 loc) · 6.58 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<!DOCTYPE html>
<link href="CSS/0_reset.css" rel="stylesheet" />
<link href="CSS/Style.css" rel="stylesheet" />
<!--[if IE 7]>
<link rel="stylesheet" type="text/css" href="CSS/IE7Style.css">
<![endif]-->
<link href="content/themes/base/minified/jquery-ui.min.css" rel="stylesheet" />
<script src="Scripts/jquery-1.9.1.min.js"></script>
<script src="Scripts/jquery-ui-1.10.1.min.js"></script>
<link rel="shortcut icon" href="Images/favicon.ico" />
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Grady County</title>
</head>
<body>
<div class="container">
<div class="header">
<div class="header-voidsquare">
</div>
<div class="header-text-frame">
<a class="header-text-link" href="index.html">
<img class="header-text-logo" src="Images/GradyHeader.png" />
</a>
</div>
<div class="header-pedament">
</div>
<div class="header-gradylogo">
<img class=" header-gradylogo-circle" src="Images/GradyLogo-circle.png" />
<img class=" header-gradylogo-ribbon" src="Images/GradyLogo_ribbon.png" />
</div>
</div>
<div class="content">
<div class="navigation">
<ul>
<li>
<a id="current" href="Home.html">
<span>Home</span>
</a>
</li>
<li>
<a href="Facilities.html">
<span>Facilities</span>
</a>
<ul>
<li><a href="NorthExhibitBuilding.html">
<span>North Exhibit Building</span>
</a>
</li>
<li>
<a href="CommunityBuildingAndActivityCenter.html">
<span>Community Building & Activity Center</span>
</a>
</li>
<li>
<a href="IndoorArenaAndLivestockPavilion.html">
<span>Indoor Arena & Livestock Pavilion</span>
</a>
</li>
<li>
<a href="JuniorArena.html">
<span>Junior Arena</span>
</a>
</li>
<li>
<a href="StallBarn.html">
<span>Stall Barn</span>
</a>
</li>
<li>
<a href="OutdoorArena.html">
<span>Outdoor Arena</span>
</a>
</li>
</ul>
</li>
<li>
<a href="Calendar.html">
<span>Calendar</span>
</a>
</li>
<!--Hey there, web developer!
Comment out the list item
that says "Livestock" and "Fair" when
the Fairgrounds doesn't need it.
Or if you'd like, just leave it
there all year round.
This way, you don't have to delete
the Livestock.html & Fair.html files.-->
<li>
<a href="JrLivestockShow.html">
<span>Jr. Livestock Show</span>
</a>
</li>
<li>
<a href="Fair.html">
<span>Fair</span>
</a>
</li>
<!--This ends the <li>'s section
where you'll comment it out.-->
<li>
<a href="ContactUs.html">
<span>Contact Us</span>
</a>
</li>
</ul>
</div>
<div class="content-article">
<div id="content-zone">
</div>
</div>
<div class="footer">
<div class="footer-location">500 East Choctaw, Chickasha, OK 73018. <a href="tel://1-405-224-2031">(405) 224-2031</a></div>
<div class="footer-copyright">Copyright © Grady County Fairgrounds <span id="currentyear"></span></div>
</div>
</div>
</div>
</body>
<script>
$(document).ready(function () {
var $headerGradylogoCircle = $('.header-gradylogo-circle');
var $headerGradylogoRibbon = $('.header-gradylogo-ribbon');
var $headerTextlogo = $('.header-text-logo');
var $contentZone = $('#content-zone');
var $footerLocation = $('.footer-location');
var $footerCopyright = $('.footer-copyright');
var $navigation = $('.navigation');
$headerGradylogoRibbon.css({
'top': '0px'
})
$("#currentyear").html((new Date).getFullYear());
$.get('content/Home.html', null, null, 'html').done(function (response, message, xhr) {
$contentZone.html(response)
});
var loadContentZone = function (e) {
e.stopPropagation();
e.preventDefault();
var zonetoLoad = $(this).attr('href');
$.get('content/' + zonetoLoad, null, null, 'html')
.done(function (response, message, xhr) {
$contentZone.html(response).hide().show('fade');
});
};
$navigation.find('a').on('click', loadContentZone);
//$headerGradylogoCircle.css({
// 'transform': 'rotate(-360deg) scale(1)'
//})
//$headerTextlogo.on('mouseenter', function () {
// $headerGradylogoCircle.css({
// 'transform': 'rotate(360deg) scale(0.8)'
// })
// })
// .on('mouseleave', function () {
// $headerGradylogoCircle.css({
// 'transform': 'rotate(0deg) scale(1.0)'
// })
// });
});
</script>
</html>