﻿$(document).ready(function() {

    $("a.glossary-item").click(function(e) {
        e.preventDefault();
        $(this).nyroModalManual({
            forceType: "iframe",
            width: 450,
            height: 300,
            bgColor: '#333333',
            url: $(this).attr("href") + "&amp;modal=1",
            showContent: (function(elts, settings, callback) {
                elts.contentWrapper
				.css({
				    width: settings.width + 'px',
				    height: settings.height + 'px',
				    marginTop: settings.marginTop + 'px',
				    marginLeft: settings.marginLeft + 'px'
				})
				.show();
            }),
            hideContent: (function(elts, settings, callback) {
                elts.contentWrapper.hide();
                callback();
            })

        });
        return false;

    });

});



