function adjust_heights() {

$('#content * img, #content * object, #content * embed').each( function() {
	var r = $(this).height() % 15; // remainder 

	if (r != 0) {
	var nh = $(this).height() +15 - r; // new height
	$(this).css({'height':nh});
	}
});		

}
