jQuery.noConflict();
jQuery(document).ready(function() {
    //////////////////////////////////////
    // simple add to cart submit function
    //////////////////////////////////////

    jQuery('#add_to_cart_form_submit_img').click(function() {

        var request_url = '/api/conf_/ajouterpanier.php';
        var data = {
            sendto: jQuery('#send_to_select_input').val(),
            sendtoyou: jQuery('#send_to_other_input').val(),
            qt: jQuery('#product_quantity_input').val(),
            codec: jQuery('#product_sku_input').val(),
            ipaD: user_ip,
            '_,i': dj_session
        };
        jQuery.post(request_url, data , function() {
            show_message('The item was added to your cart.');
            update_cart_items();
        });
        
    });

});

