﻿
$(document).ready(function () {

    $(".att-icon").click(function () {
        $(this).css("box-shadow", "0 0 10px #fff;");
        $(".att-hide").hide("slow");
        var id = $(this).attr("id");
        $(id).slideDown("slow");
    });


    $(".attachs").mouseleave(function () { $(".att-hide").slideUp("slow"); })
});
