$.noConflict();

  jQuery(document).ready(function($) {


$(document).ready(function() {  

    var link = "/tutorials/CodeIgniter_Shopping_Cart/demo/index.php/"; // Url to your application (including index.php/)  
    
    $(document).ready(function() {

        // hides the slickbox as soon as the DOM is ready
        $('.slickbox').hide();
        
        // toggles slick boxes
        $(".slick-toggle").click( function()
        {
           $(this).parent('td').children('div.slickbox').toggle(400);
        });

    });

 /*
    $("table.products form").submit(function() {  
        // Get the product ID and the quantity  
        var id = $(this).find('input[name=product_id]').val();  
        var qty = $(this).find('input[name=quantity]').val();  

        alert('ID:' + id + '\n\rQTY:' + qty);  

        return false; // Stop the browser of loading the page defined in the form "action" parameter.  
    });  
 */

    });
});

