Попробуйте изменить это:
$(function(){
$("input, textarea, select, button").uniform();
$("#show_image_error").load("adv_dell_img_err.html?id="+ Math.random());
});
на это:
$(function(){
$("#show_image_error").load(
"adv_dell_img_err.html?id="+ Math.random(),
function(responseText, textStatus, XMLHttpRequest) {
$("input, textarea, select, button").uniform();
}
);
});
Я думаю, что проблема в том, что при выполнении с равномерным содержимым еще не было загружено.