-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
125 lines (99 loc) · 6.37 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
<!DOCTYPE HTML>
<html>
<head>
<title>Home</title>
<meta name="description" content="website description" />
<meta name="keywords" content="website keywords, website keywords" />
<meta http-equiv="content-type" content="text/html; charset=windows-1252" />
<link rel="stylesheet" type="text/css" href="Style/style.css" title="style" />
</head>
<body>
<div id="main">
<header>
<div id="background_img">
<div id="logo_text">
<a name="Top"><h1><a href="index.html"><i>Computational Environmental Science Lab</i></h1></a>
<img id="logo_img" src="Style/CESLAB.jpg"/>
</div>
<!----------------- Menu ------------------>
<div id="menubar">
<ul id="menu">
<li id="menu_headers"><a href="Opportunities.html">Opportunities</a> </li>
<li id="menu_headers"><a href="Publications.html">Publications</a>
<div class= "dropdown">
<ul id="smaller">
<li><a href="Publications.html#PeerArticles"> Peer Reviewed Articles </a></li>
<li><a href="Publications.html#Magazine"> Magazine Articles </a></li>
<li><a href="Publications.html#PeerBook"> Peer Reviewed Book Chapters </a></li>
<li><a href="Publications.html#Reports"> Reports </a></li>
</ul>
</div>
</li>
<li id="menu_headers" ><a href="People.html">People</a>
<div class="dropdown">
<ul>
<li><a href="People.html#Principal"> Principal Investigator </a></li>
<li><a href="People.html#Post"> Post-Doctoral Researchers </a></li>
<li><a href="People.html#Visit"> Visiting Scientists </a></li>
<li><a href="People.html#Grad"> Graduate Students </a></li>
<li><a href="People.html#Under"> Undergraduate Students </a></li>
<li><a href="People.html#High"> High School Students </a></li>
</ul>
</div>
</li>
<li id="menu_headers"><a href="Research.html">Research</a></li>
<li id="menu_headers"><a href="index.html"><span class="selected">Home</span></a></li>
</ul>
</div>
</div>
</div>
</header>
</div>
<!--------Content------------>
<img id="banner" src="Style/Group_small_2014.jpg"/>
<div id="site_content">
<div id="content">
<div class="home">
<article>
<h1> <b>Welcome</b> </h1>
<p>
Our research group investigates the various aspects of urban and global air quality through mathematical modeling. Development in computational sciences such as applied mathematics, numerical algorithms on massively parallel computers, and grid-based computations aid in modeling the atmosphere to test research findings. The models also help us understand how certain dynamics such as atmospheric aerosols and global climate change impact air quality. By merging computational and atmospheric sciences, we can foster a better understanding of air pollutions and the dynamics of global climate change.
</p>
</article>
<aside>
<img id="side_image" src="Style/Group_collage_small_2010.jpg"/>
<a id="caption" class="fadeOut" href="http://engineering.uci.edu/news/2016/4/professor-dabdub-wins-epa-grant"> Professor Dabdub Wins EPA Grant </a>
<script type="text/javascript">
var imgArray = ["Style/dabdub-group-for-web.jpg","Style/Group_collage_small_2010.jpg"];
var index = 0;
function slideit(){
document.getElementById("side_image").className = "fadeOut";
setTimeout(function(){
document.getElementById("side_image").src= imgArray[index];
document.getElementById("side_image").className = "";},1000);
index++;
if(index==1){
setTimeout(slideit,5000);
}
if(index==2){
setTimeout(function(){
document.getElementById("caption").className = "";},1000);
setTimeout(function(){
document.getElementById("caption").className = "fadeOut";
slideit();},7000);
index=0;
}
}
slideit();
</script>
</aside>
</div>
</div>
</div>
</body>
<!------------------Footer----------------->
<footer>
<p>
<b>Computational Environmental Science Lab</a></b> </br> Department of Mechanical & Aerospace Engineering, University of California, Irvine</p>
</footer>
</html>