$(document).ready(function(){
	$('#loginLink').click(function(){$('body').append(login.form);$('#login').dialog({resizable: false, modal: true});});
	$('#mapsLink').click(function(){$('body').append(maps.form);$('#maps').dialog({resizable: false, modal: true});});
});

var login = {
form : '<form id="login" action="http://www.sigmachi-rpi.org/undergrad/index.php" method="post"><label for="username">Username</label><input type="text" name="username"><label for="password">Password</label><input type="password" name="password"><button type="submit">Log In</button><button type="submit" name="Reset" value="Reset">Forgot Password</button><input type="text" style="display:none" name="path" value="'+window.location.href+'"></form>'
}

var maps = {
form : '<form id="maps" action="http://maps.google.com/maps" method="get"><label for="saddr">Your location</label><input type="text" name="saddr" id="saddr" value="" /><input type="submit" value="Go" /><input type="hidden" name="daddr" value="58 Pinewoods Avenue, Troy, NY" /><input type="hidden" name="hl" value="en" /></form>'
}
