-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
146 lines (126 loc) · 3.16 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
<html>
<head>
<title>cloudpower</title>
<link href='http://fonts.googleapis.com/css?family=Roboto+Condensed' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
</head>
<body>
<div class="wrapper">
<div id="topmenu">
<div id="logo">
C L O U D P O W E R
</div>
<table id="topmenutable">
<tr>
<td class="top" id="homebar">HOME</td>
<td class="top" id="problembar">PROBLEM</td>
<td class="top" id="solutionbar">SOLUTION</td>
<td class="top" id="documentsbar">DOCUMENTS</td>
<td class="top" id="teambar">THE TEAM</td>
<td class="top" id="contactbar">CONTACT</td>
</tr>
</table>
</div>
<!-- %%%%%%%%%HOME DIV%%%%%%%%%%% -->
<div id="home">
This is the home page
</div>
<!-- %%%%%%%%%PROBLEM DIV%%%%%%%%%%% -->
<div id="problem">
What is the problem
</div>
<!-- %%%%%%%%%SOLUTION DIV%%%%%%%%%%% -->
<div id="solution">
a + b = c
</div>
<!-- %%%%%%%%%DOCUMENTS DIV%%%%%%%%%%% -->
<div id="documents">
The following were the required deliverables for our project.</br></br>
<div id="documentsTable">
<table align=center>
<tr><td>
<ol>
<li> <a href="docs/ELEC499ProgressReport1.pdf"> Progress Report #1 </a></li>
<li> <a href="docs/ELEC499ProgressReport2.pdf"> Progress Report #2</a></li>
<li> <a href="docs/progresspresentation.pdf"> Mid semester Progress Presentation</a></li>
</ol>
</td></tr>
</table>
</div>
</div>
<!-- %%%%%%%%%TEAM DIV%%%%%%%%%%% -->
<div id="team">
<table >
<tr>
<td style="width:60%;" >
<a class="teamMember">Mike Anderson</a>
<p>
Computer engineering student.
</p>
<a class="teamMember">Drew Harris</a>
<p>
Electrical engineering student.
</p>
<a class="teamMember">Carl Stubens</a>
<p>
Software engineering student.
</p>
<a id="teamMember">Nathan Willson</a>
<p>
Electrical engineering student.
</p>
</td>
<td style="width:40%;">
<img src="teamphoto.jpg" ></img>
</td>
</tr>
</table>
</div>
<!-- %%%%%%%%%CONTACT DIV%%%%%%%%%%% -->
<div id="contact">
We can be contacted by email at:
<div id="email">
somename @ cloudpowered.com
<img src="http://www.itsecurityzone.com/wp-content/uploads/2012/05/Email-icon-square.png"></img>
</div>
</div>
</div> <!-- end of wrapper div-->
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script type="text/javascript">
pageNames = [ "home", "problem", "solution", "documents" ,"team","contact"]
$(document).ready(function()
{
$('#homebar').trigger('click');
});
function hideall(){
for(var i = 0; i<pageNames.length;i++){
$("#" + pageNames[i]).hide();
}
}
$("#homebar").on('click',function(){
hideall();
$("#home").show();
});
$("#problembar").on('click',function(){
hideall();
$("#problem").show();
});
$("#solutionbar").on('click',function(){
hideall();
$("#solution").show();
});
$("#documentsbar").on('click',function(){
hideall();
$("#documents").show();
});
$("#teambar").on('click',function(){
hideall();
$("#team").show();
});
$("#contactbar").on('click',function(){
hideall();
$("#contact").show();
});
</script>
</body>
</html>