E che te l'ho pure reindentato... che ci vuole a vederlo? Segui le indentazioni e le relative aperture/chiusure di tonde e graffe.
codice:
var $j = jQuery.noConflict();
var doInteresting = function () { // Aperta graffa (1)
$j(document).ready( // Aperta tonda (2)
function () { // Aperta graffa (3)
$j('.ei-run-autoimport').click( // Aperta tonda (4)
function () { // Aperta graffa (5)
$j.blockUI({message: $j('#ei_waiting_products')});
} // Chiusa graffa (5)
); // Chiusa tonda (4)
} // Chiusa graffa (3)
setTimeout(doInteresting, 3000);
} // Chiusa graffa ??
); // Chiusa tonda ??