$(function()
{
	$(".indexproducts").eq(0).show();

	$(".pic").eq(0).jCarouselLite({
		auto: 1000,
		speed: 2500,
		visible: 5
	});

	$(".productsmenu a[title=tag]").click(function()
	{
		$(".productsmenu a").removeClass("click");
		$(this).addClass("click");
		$(".indexproducts").hide();
		$(".indexproducts").eq($(".productsmenu a").index($(this))-1).show();
		$(".pic").eq($(".productsmenu a").index($(this))-1).jCarouselLite({
			auto: 1000,
			speed: 2500,
			visible: 5,
			mouseWheel: true
		});

		return false;
	})
})