$(document).ready(function(){
//add the width and height for each image
$('img').each(function(){
$(this).attr('width', $(this).width());
$(this).attr('height', $(this).height());
});
//copy alt to title
$('img').attr('title', function(){
$(this).attr('alt');
});
});