$(document).ready(function() {
	$(".zoomable").each(function() {
        $(this).before($(this).children());
        $(this).remove();
    });
});


