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;
    });
};

function mycarousel_initCallback2(carousel) {
    jQuery('#next-belong_product').bind('click', function() {
        carousel.next();
        return false;
    });

    jQuery('#prev-belong_product').bind('click', function() {
        carousel.prev();
        return false;
    });
};


jQuery(document).ready(function() {
    jQuery("#other_product ul").jcarousel({
				initCallback: mycarousel_initCallback1,
        scroll: 1,
				auto: 2,
			  wrap: 'last',
				buttonNextHTML: null,
        buttonPrevHTML: null
    });
		
		
		jQuery("#belong_product ul").jcarousel({
				initCallback: mycarousel_initCallback2,
        scroll: 2,
				buttonNextHTML: null,
        buttonPrevHTML: null
    });
		
});
