/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2010 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.js 243 2010-03-15 14:23:14Z emartin24 $
 *
 */
 
jQuery(function ($) {
    $('.modal').click(function (e) {
        //alert($(this).attr('title'));
        // todo: need to set the appropriate recipient email address in the contact form based on the title attrib for the clicked link; see commented alert.
        $('#basic-modal-content').modal();
        return false;
    });
});
