$(function(){
    $('.demo-dialog').dialog({
        width:700,
        height:500,
        autoOpen:false,
        modal:true,
        resizable:false
    });
    $('.demo-dialog-toggle').click(function(){
        $('#'+$(this).attr('rel')).dialog("open");
        return false;
    });
});
