// JavaScript Document

function watches_initCallback(carousel) {	
	jQuery('#right_arrow').bind('click', function() {
		carousel.next();
		return false;
	});
	
	jQuery('#left_arrow').bind('click', function() {
		carousel.prev();
		return false;
	});
	
	jQuery('#right').bind('click', function() {
		carousel.next();
		return false;
	});
	
	jQuery('#left').bind('click', function() {
		carousel.prev();
		return false;
	});
};

jQuery(document).ready(function() {
    jQuery('#watches').jcarousel({
        scroll: 4,
		visible: 4,
		initCallback: watches_initCallback,
		buttonNextHtml: null,
		buttonPrevHtml: null
    });
});
