Is there a way to modify this code, so that the Free Shipping Icon will appear *IF* the individual product meets the Free Shipping price point, currently set at $99 in the Free Shipping Options shipping module.

PHP Code:
<!--bof free ship icon  -->
<?php if(zen_get_product_is_always_free_shipping($products_id_current) && $flag_show_product_info_free_shipping) { ?>
<div id="freeShippingIcon"><?php echo TEXT_PRODUCT_FREE_SHIPPING_ICON?></div>
<?php ?>
<!--eof free ship icon  -->