-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
114 lines (100 loc) · 4.98 KB
/
contact.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
<!DOCTYPE html>
<html lang="en"><!-- InstanceBegin template="/Templates/MainTemplate.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<!-- InstanceBeginEditable name="doctitle" -->
<meta name="description" content="Contact information for if help is needed to sign up for Brunswick Eruption (BE) or if there are problems with the website" />
<title>Contact - Brunswick Eruption 2012</title>
<link href="style.css" rel="stylesheet" type="text/css" media="screen" />
<link href="buttons/buttons.css" rel="stylesheet" type="text/css"/>
<script src="jquery1.6.2.js" type="text/javascript"></script>
<link rel="icon" type="image/png" href="images/favicon.png" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-6958956-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- jQuery code for sticky navigation from http://www.backslash.gr/content/blog/webdevelopment/6-navigation-menu-that-stays-on-top-with-jquery-->
<script type="text/javascript">
$(function() {
var sticky_navigation_offset_top = $('#sticky_navigation_wrapper').offset().top;
var sticky_navigation = function(){
var scroll_top = $(window).scrollTop();
if (scroll_top > sticky_navigation_offset_top) {
$('#sticky_navigation_wrapper').css({ 'position': 'fixed', 'top':0});
} else {
$('#sticky_navigation_wrapper').css({ 'position': 'relative' });
}
};
sticky_navigation();
$(window).scroll(function() {
sticky_navigation();
});
});
</script>
</head>
<body>
<!-- Facebook and Twitter scripts -->
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "http://connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="http://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
<!-- End Facebook and Twitter scripts -->
<div id="headerBackground">
<div id="header">
<img id="headerImage" src="./images/header.png" alt="" onDragStart="return false;"/>
</div>
</div>
<div id="sticky_navigation_wrapper">
<div id="sticky_navigation">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="volunteer.html">Volunteer</a></li>
<li><a href="teams.html">Team List</a></li>
<li><a href="awards.html">Awards</a></li>
<li><a href="agenda.html">Agenda</a></li>
<li><a href="local.html">Directions</a></li>
<li><a href="history.html">History</a></li>
<li><a href="subscribe.html">Subscribe</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
<div class="mainContent">
</br>
<h3 class="centered">Contact</h3>
<p>For general questions regarding the event, please contact brunswickeruption at gmail.com. For registration payment and related inquiries, contact
Wayne Cokeley at smwonder at comcast.net.</p>
<p>For any technical difficulties with this website, please contact Kristian Calhoun at kristiancalhoun at gmail.com or Bharat Nain at bharatnain at gmail.com.</p>
<p>For details on Team 25 - Raider Robotix, please visit <a href="http://www.raiderrobotix.org" target="_blank">www.raiderrobotix.org</a>.</p>
<p>For details about the RINOS Program, please visit <a href="http://www.raiderrobotix.org/rookie-resources/" target="_blank">raiderrobotix.org/rookie-resources/</a>.</p>
We look forward to seeing you at Brunswick Eruption.</p>
</div>
<img id="floral" src="./images/flower.png" alt=""/>
<div id="social">
<div class="fb-like" data-href="http://www.facebook.com/BrunswickEruption" data-send="false" data-layout="box_count" data-width="50" data-show-faces="false" data-font="lucida grande"></div>
<a href="https://twitter.com/BrunsEruption" class="twitter-follow-button" data-show-count="false" data-size="large" data-show-screen-name="false">Follow @BrunsEruption</a>
</div>
<div id="footer">
<div id="footerContent">
<a href="http://www.usfirst.org" target="_blank"> <img id="FIRSTlogo" src="images/FIRST_vert.gif" alt=""/></a>
<a href="http://www.raiderrobotix.org" target="_blank"> <img id="RaiderRobotixLogo" src="images/Team25Logo.png" alt=""/></a>
</div>
<div id="copyright">
Copyright Raider Robotix / Brunswick Eruption 2012
</div>
</div>
</body>
</html>