$(document).ready( function(){
    $('a.mostrar_box').toggle(function(){
        $(this).parent().nextAll('dd.contenedor_iframe').show();
        return false;
    },function(){
        $(this).parent().nextAll('dd.contenedor_iframe').hide();
        return false;
    });
    
    $('dl dd.contenedor_iframe img.cerrar').click(function(){
        $(this).parent().prev('dd.descargar').children('a.mostrar_box').click();
    });
});