/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2008 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.js 132 2008-05-23 16:05:17Z emartin24 $
 *
 */

$(document).ready(function () {
	$('a#locationlink').click(function (e) {
		//e.preventDefault();
		$('#locationcontent').modal();
	});
	$('a#meetinglink').click(function (e) {
		//e.preventDefault();
		$('#meetingcontent').modal();
	});
	$('a#wholink').click(function (e) {
		//e.preventDefault();
		$('#whocontent').modal();
	});
});