/*
$(document).ready(function() {
// ORDER BUTTTON
    if ( $('.ecommerce_category_item_order_button').length > 0 ) {
        $('.ecommerce_category_item_order_button').val('');
    }
// ADD TO CART BUTTON
    if ( $("div.ecommerce_product_addtocart > input").length > 0 ) {
        $("div.ecommerce_product_addtocart > input").val('');
    }    
});
*/
