/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 *
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * 
 */

jQuery(function ($) {
    // Load dialog on page load
    //$('#basic-modal-content').modal();

    // Load dialog on click
    $('.modal_windows').click(function (e) {
        a = "#" + this.id + "_content";
        document.body.style.overflow = "hidden";
        document.body.scroll = "no";
        $(a).modal();
        return false;
    });
}
);


