﻿jQuery(function(){
    jQuery('#rightColumn img').each(function(){
        $img = jQuery(this);
        height = $img.height();
        width = $img.width();
        if (height == 168 && width == 172){
            jQuery('<div class="curveBox"></div>').insertAfter($img);
        }
    });  
});