﻿$(document).ready(function () {
    $(".btn_toggle_advanced_search").click(function () {
        $(this).fadeOut(100, function () {
            $(".toggle_advanced_search").slideDown();
        });
    });

    $(".media_image .delete_button").each(function () {
        $(this).hide();
        $(this).parent().hover(function () {
            $(this).children('.delete_button').show();
        },
        function () {
            $(this).children('.delete_button').hide();
        });
    });

    $(".avatar .delete_button").each(function () {
        $(this).hide();
        $(this).parent().hover(function () {
            $(this).children('.delete_button').show();
        },
        function () {
            $(this).children('.delete_button').hide();
        });
    });
});
