
// site.js - account settings

$(document).ready(function() {

    var dialogOpts = {
        modal: true,
        autoOpen: false,
        height: 600,
        width: 800
    };

    $('#terms_dialog').dialog(dialogOpts);

    $('#terms_link').click(function (){
        $("#terms_dialog").dialog("open");
        $("#modalIframeId").attr("src","../../texts/terms.php");
    });

    $('#site_lang_selector').change(function() {

        var label_val = $('#site_lang_selector option:selected').val();

        var ts = (new Date()).getTime();

        $.post('sit_setlang.php',{
            lang_id : label_val,
            ts      : ts
        },function(){
            window.location = 'index.php?ts=' + ts;
        });

    });

});



