-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
331 lines (259 loc) · 12.7 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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
<!doctype html>
<html>
<head>
<title>Lindsey & Rodrigo's Wedding</title>
<link rel="stylesheet" type="text/css" href="styles/rl-html5.css" />
<!--[if IE]><link rel="stylesheet" type="text/css" href="/css/afge-html5-IE.css" /><![endif]-->
<!--[if IE]><link rel="stylesheet" type="text/css" href="/css/afge-html5-navigation-IE.css" /><![endif]-->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="icon" type="image/vnd.microsoft.icon" href="favicon.ico" />
<link href='https://fonts.googleapis.com/css?family=Josefin+Sans' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Raleway:100&v1' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Dancing+Script&v1' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Tangerine&v1' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Meddon&v2' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Buda:300&v2' rel='stylesheet' type='text/css'>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<!-- No meta data required. no idenxing -->
<meta name="keywords" content="" />
<meta name="description" content="" />
<script src="https://code.jquery.com/jquery-2.1.4.min.js" type="text/javascript"></script>
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js" type="text/javascript"></script>
<script type="text/javascript">
var GB_ROOT_DIR = "https://lindseyandrodrigo.com/AJAX/greybox/";
</script>
<script type="text/javascript" src="AJAX/greybox/AJS.js"></script>
<script type="text/javascript" src="AJAX/greybox/AJS_fx.js"></script>
<script type="text/javascript" src="AJAX/greybox/gb_scripts.js"></script>
<link href="AJAX/greybox/gb_styles.css" rel="stylesheet" type="text/css" />
<script language="JavaScript">
collapseGif = new Image();
collapseGif.src = "images/CollapsePlus.gif";
expandGif = new Image();
expandGif.src = "images/Collapseminus.gif";
function toggleDisplayIMG(ID,ImgID){
var obj = document.getElementById(ID);
var objImg = document.getElementById(ImgID);
if(obj.style.display != 'none'){
obj.style.display='none';
objImg.src = collapseGif.src;
} else {
obj.style.display='block';
objImg.src = expandGif.src;
}
}
function toggleDisplay(ID){
var obj = document.getElementById(ID);
if(obj.style.display != 'none'){
obj.style.display='none';
} else {
obj.style.display='block';
}
}
function toggleBoxOn(ID){
var obj = document.getElementById(ID);
obj.style.display='block';
}
function toggleBoxOff(ID){
var obj = document.getElementById(ID);
obj.style.display='none';
}
function toggleBoxOnIMG(ID,ImgID){
var obj = document.getElementById(ID);
var objImg = document.getElementById(ImgID);
obj.style.display='block';
objImg.src = expandGif.src;
}
function toggleBoxOffIMG(ID,ImgID){
var obj = document.getElementById(ID);
var objImg = document.getElementById(ImgID);
obj.style.display='none';
objImg.src = collapseGif.src;
}
</script>
<title>Home</title></head>
<body class="pix1">
<div id="container">
<div id="header"><h1>L <span> & </span> R</h1><p>Lindsey & Rodrigo</p></div>
<div class="bodyContainer">
<div id="navigation">
<ul>
<li id="OurStoryNav" class="navButton firstNavHover"><a href="#OurStory">Our Story</a></li>
<li id="AccomodationsNav" class="navButton"><a href="#Accomodations">Accomodations</a></li>
<li id="ScheduleNav" class="navButton"><a href="#Schedule">Schedule</a></li>
<li id="RSVPNav" class="navButton"><a href="#RSVP">RSVP</a></li>
<li id="RegistryNav" class="navButton"><a href="#Registry">Registry</a></li>
</ul>
</div>
<div id="body">
<div id="welcome">
<p>Mr. and Mrs. Richard Luedtke<br />
are proud to announce<br />
the Nuptial Mass uniting their daughter</p>
<p><strong>Dr. Lindsey Kristine</strong><br />
and<br />
<strong>Mr. Rodrigo José Múnera</strong></p>
<p>son of Mr. and Mrs. Diego Múnera<br />
in the sacrament of Holy Matrimony<br />
Saturday, the twenty-ninth of October<br />
two thousand and eleven</p>
</div>
<div id="OurStory">
<h2>Our Story</h2>
<p>In the fall of 2009, Rodrigo and Lindsey met through Match.com and had their first date at Ella's Wood-Fired Pizza. Rodrigo often comments on the way Lindsey hugged him at the end of that night - shoulder scrunched in a tight embrace. She recalls how attentive, charming, and communicative he was. It wasn't but a few days until the next date and the rest of their lives together. </p>
</div>
<div id="Accomodations">
<h2>Accomodations</h2>
<h3>Flight recommendations:</h3>
<p>It is easiest to fly into Regan International (DCA) in Washington DC, the airport is connected to DC's <a href="http://www.wmata.com/rail/maps/map.cfm" target="_blank">Metrorail</a>. Other options are Dulles International airport (IAD) and Baltimore Washington International (BWI). Taxi service from these other airports to DC will cost around $50</p>
<h3>Hotel Accommodations:</h3>
<h4>J.W. Marriott</h4>
<p>20 rooms available at the <a href="http://www.marriott.com/hotels/travel/wasjw?groupCode=lmwlmwa&app=resvlink&fromDate=10/28/11&toDate=10/30/11" target="_blank">JW Marriott Washington, DC</a> at $199 at night. The bride and groom will stay at this hotel before the wedding.</p>
<p>Phone: 1-800-393-2503<br />Website: <a href="http://www.marriott.com/hotels/travel/wasjw?groupCode=lmwlmwa&app=resvlink&fromDate=10/28/11&toDate=10/30/11" target="_blank">JW Marriott Washington, DC</a></p>
<h4>Embassy Suites</h4>
<p>10 rooms available at the <a href="http://embassysuites1.hilton.com/en_US/es/hotel/WASCCES-Embassy-Suites-Washington-D-C-Convention-Center-District-of-Columbia/index.do" target="_blank">Embassy Suites Washington DC</a> at $179 at night for a standard king and $199 a night for two double beds.</p>
<p>Phone: 1-800-HILTONS<br />Website: <a href="http://embassysuites1.hilton.com/en_US/es/hotel/WASCCES-Embassy-Suites-Washington-D-C-Convention-Center-District-of-Columbia/index.do" target="_blank">Embassy Suites Washington DC</a></p>
<h4>Hotel Rates</h4>
<p>To receive these special room rates, please let the reservations specialist know you are with the Luedtke/Munera Wedding Party. The special rate is for Oct. 28-30 but if you wish to stay longer ask the reservations specialist and they may extend the rate past the set days.</p>
</div>
<div id="Schedule">
<h2>Wedding Schedule</h2>
<ul>
<lh>Friday Oct 28</lh>
<li class="first"><strong>4:30-5:30 PM</strong> Rehearsal <span>Bridal Party & Parents</span> @ Saint Patrick Catholic Church</li>
<li><strong>5:30-8:00 PM</strong> Rehearsal Dinner <span>Bridal Party & Parents</span> @ <a href="http://www.zaytinya.com/" target="_blank">Zaytinya</a></li>
<li><strong>8:00 - 10:00 PM</strong> Drinks <span>guests are welcome to join us</span> @ J.W. Marriot Hotel 1331 Bar</li>
<lh>Saturday Oct 29</lh>
<li class="first"><strong>3:00 PM</strong> Wedding Ceremony @ Saint Patrick Catholic Church</li>
<li><strong>5:00 - 10:30</strong> PM Cocktails, dinner and dancing @ The Hay - Adams Hotel</li>
</ul>
<p>A bus tour of Washington DC will be offered to all guests after the wedding ceremony at St. Patrick's church. Guests are welcome to join the tour for free. The tour concludes at the historic Hay-Adams Hotel.
Cocktails begin at 5 p.m. at <a href="http://www.hayadams.com" target="_blank">The Hay-Adams Hotel</a> on the first floor. The reception dinner will follow on the Top of The Hay at the Hay-Adams Hotel.</p>
</div>
<div id="RSVP">
<h2>RSVP</h2>
<div id="RSVPSearchResults">
<p class="message"></p>
<form method="get" action="#RSVP">
<!--<input type="hidden" name="method" value="searchRSVP" />-->
<input type="text" id="qString" value="" placeholder="Type guest name" />
<button type="submit">Search Guest List</button>
</form>
<div id="RSVPWorkArea"></div>
</div>
</div>
<div id="Registry">
<h2>Registry</h2>
<p>The happy couple are registered at the following:
<ul>
<li><a href="http://www.bedbathandbeyond.com/regGiftRegistry.asp?wrn=-951876805&" target="_blank"><img src="images/bbb.png" /></a></li>
<li><a href="http://www.target.com/wedd/registry/lJoS1ITxl93kIIzMqmGvKg" target="_blank"><img src="images/target.png" /></a></li>
<li><a href="http://www.williams-sonoma.com/registry/2657900/registry-list.html" target="_blank"><img src="images/ws.png" /></a></li>
<li><a href="http://www.crateandbarrel.com/Gift-Registry/Guest/View-Registry.aspx?grid=4721174" target="_blank"><img src="images/crate.png" /></a></li>
<li><a href="http://www.honeyfund.com/wedding/lindseyandrodrigo" target="_blank"><img src="images/honeyfund2.png" /></a></li>
</ul>
*Registries will NOT be complete until August*
</p>
</div>
</div>
<div class="floatClearEmptyDiv"></div>
</div>
<div id="footer">
<p class="date">Saturday October 29, 2011</p>
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){
// hide all sections
$("#body > div").hide();
// get the current page by getting the hash (#) from the URL (in case of a direct link)
// Open the hashed content, otherwise, open the welcome hash
var anchor = $(location).attr('hash');
if(anchor.length>0){
$(anchor).show();
$(anchor + "Nav").addClass("navHover");
} else {
$("#welcome").show();
//$(".bodyContainer").hide();
//$("#footer").hide();
}
// Hover effect
$("#container").hover(function(){
$(".bodyContainer").fadeIn(800);
$("#footer").fadeIn(800);
},function(){
});
// Hide the page when you click on the header
$("#header").click(function(){
$(".bodyContainer").fadeToggle(800);
$("#footer").fadeToggle(800);
});
// click action for OurStory nav Item
$("#OurStoryNav").click(function(){
$("#body div").fadeOut(300);
$("#body").animate({height: "300px"}, 300, 'swing');
$("#OurStory").delay(350).fadeIn("slow");
$(".navButton").removeClass("navHover");
$("#OurStoryNav").addClass("navHover");
});
// click action for accomodations nav Item
$("#AccomodationsNav").click(function(){
$("#body > div").fadeOut(300);
$("#body").animate({height: "684px"}, 300, 'swing');
$("#Accomodations").delay(350).fadeIn("slow");
$(".navButton").removeClass("navHover");
$("#AccomodationsNav").addClass("navHover");
$("body").removeClass().addClass("pix1");
});
// click action for schedule nav Item
$("#ScheduleNav").click(function(){
$("#body > div").fadeOut(300);
$("#body").animate({height: "535px"}, 300, 'swing');
$("#Schedule").delay(350).fadeIn("slow");
$(".navButton").removeClass("navHover");
$("#ScheduleNav").addClass("navHover");
});
// click action for rsvp nav Item
$("#RSVPNav").click(function(){
$("#body > div").fadeOut(300);
$("#body").animate({height: "300px"}, 300, 'swing',function(){
$(this).attr("style","");
});
$("#RSVP").delay(350).fadeIn("slow");
$(".navButton").removeClass("navHover");
$("#RSVPNav").addClass("navHover");
});
// click action for registry nav Item
$("#RegistryNav").click(function(){
$("#body > div").fadeOut(300);
$("#body").animate({height: "550px"}, 300, 'swing');
$("#Registry").delay(350).fadeIn("slow");
$(".navButton").removeClass("navHover");
$("#RegistryNav").addClass("navHover");
});
// on type action for searching rsvp list
/*
$("#qString").bind("keyup", function(event) {
var formTarget = "/rl/rsvp.cfc?method=searchRSVP&q=" + $(this).attr("value");
$("#RSVPWorkArea").load(formTarget);
});
*/
// submit action for rsvp function
$("form").bind("submit", function(event) {
var formTarget = event.target.action + "?";
for(var i=0; i < event.target.elements.length; i++){
if(event.target.elements[i].name.length > 0){
if(i > 0){formTarget += "&"}
formTarget += event.target.elements[i].name + "=" + event.target.elements[i].value;
}
}
$("#RSVPWorkArea").load(formTarget);
event.stopPropagation();
event.preventDefault();
});
});
</script>
</body>
</html>