function mycarousel_initCallback1(carousel) {
    jQuery('#next-other_product').bind('click', function() {
        carousel.next();
        return false;
    });

    jQuery('#prev-other_product').bind('click', function() {
        carousel.prev();
        return false;
    });
};
 

jQuery(document).ready(function() {
    jQuery("#other_product ul").jcarousel({
				initCallback: mycarousel_initCallback1,
        scroll: 2,
				buttonNextHTML: null,
        buttonPrevHTML: null
    }); 
});
