jQuery(function ($) {
    $('a.basic').click(function (e) {
        e.preventDefault();
        $('#basic-modal-content').modal({
            opacity:40,
            overlayCss: {backgroundColor:"#023a04"},//Made green to match site
            containerCss: {
                height:350,
                width:390,
                backgroundColor:"#fff",
                border:"10px solid #e6e6e6"}
       });
    });

    $('a.register').click(function (e) {
        e.preventDefault();
    $('#signup-form').modal({
            opacity:40,
            overlayCss: {backgroundColor:"#023a04"},
            containerCss: {
                height:600,
                width:750,
                backgroundColor:"#fff",
                border:"10px solid #e6e6e6"}
        });
    });
   
    $('#subscribe a.subscribe').click(function (e) {
        e.preventDefault();
    $('#mail-subscribe').modal({
            opacity:40,
            overlayCss: {backgroundColor:"#023a04"},
            containerCss: {
                height:600,
                width:750,
                backgroundColor:"#fff",
                border:"10px solid #e6e6e6"}
        });
    });
   
});
