function _init_slider(carousel) {
	$('#nav a').bind('click', function() {
		var index = $(this).parent().find('a').index(this);
		carousel.scroll( index + 1);
		return false;
	});
};

function _active_slide(carousel, item, idx) {
	var index = idx-1;
	$('#nav a').removeClass('active');
	$('#nav a').eq(index).addClass('active');
};


};

$(document).ready(function() {
	$("#nav ul").jcarousel({
		scroll: 1,
		auto: 6,
		wrap: 'both',
		initCallback: _init_slider,
		itemFirstInCallback: _active_slide,
		buttonNextHTML: null,
		buttonPrevHTML: null
	});
	
	$(".nav ul").jcarousel({
		scroll: 1,
		auto: 3,
		wrap: 'both',
		initCallback: _init_more_products,
		buttonNextHTML: null,
		buttonPrevHTML: null
	});
});

