Great contrib! That's all I need for my shop. Thanks!

But I've discovered, that text "Available Options:" is appered for every products even if a product has no options. It happens only when setting OPTIONS_AS_IMAGES_ENABLED is enabled.
To correct this goto options_images.php, find around line 15

echo '' . TEXT_PRODUCT_OPTIONS. '';

and move it a bit lower under the line

if ($products_attributes['total'] > 0) {

So you should have
if ($products_attributes['total'] > 0) {
echo '' . TEXT_PRODUCT_OPTIONS. '';

That's all. No files attached.

Sorry my bad english :)

More...