Так точно должно заработать:
function resizeImg(obj)
{
$(this).attr('src',$(this).attr('src'));
needWidth = 200;
needHeight = 200;
obj = $(obj);
imageOrientation = ((obj.height()>obj.width())?'vertical':'horizontal');
if (imageOrientation == 'vertical')
{
if (obj.height()>needHeight) obj.css('height',needHeight);
}
else
if (obj.width()>needWidth) obj.css('width',needWidth);
}
$(function(){
$('img').load(function(){
resizeImg(this);
});
$('.ui-accordion-header').click(function(){
$('img').each(function(){resizeImg(this)} );
})
});
Решение костылевое, но на первое время пойдет
Просто вставить перед закрытием head