

$(document).ready(function() {

    $(".imageComponentAdminLink").click(function() {
    
        var id = $(this).attr("id");
        var imageName = id.replace("imageComponentAdminLink_", "");
        
        $.ajax({
            type: "POST",
            url: "index.php",
            data: ({
                    page        : 'image_component',
                    Action      : 'get_form',
                    image_name   : imageName
                  }),
            success: function(data)
            {
                $.facebox(data);
            }
        });
    });
    
});



function updateImageComponent(imageName)
{
    $.facebox.close();
    
    $.ajax({
            type: "POST",
            url: "index.php",
            data: ({
                    page        : 'image_component',
                    Action      : 'get_image',
                    image_name   : imageName
                  }),
            success: function(data)
            {
                $("#" + imageName + "_container").html(data);
            }
        });
}
