;$(document).ready(function(){
    $(".editor").each( function (i) {
        var blah_id = "#" + this.id;
        $(blah_id).wysiwyg({
            controls : {
                separator04 : { visible : true },
                html : { visible : true }
            }
        });
    });
    $(".editor_no_image").each(function (i) {
        $("#" + this.id).wysiwyg({
            controls : {
                html : { visible : true },
                insertImage : { visible : false }
            }
        });
    });
    if($("#id_content").length > 0){
        $("#id_content").wysiwyg({
            controls : {
                separator04 : { visible : true },
                html : { visible : true }
            }
        });
    }
});

