$(document).ready(function(){
	$(".wrapperTCP .top-borders a").click(function(){
		$(".wrapperTCP .top-borders a").each(function(i){
		    $(this).removeClass('on');
		    $(".wrapperTCP .content-itens").eq(i).removeClass('on');
		    $(".wrapperTCP .content-itens").eq(i).addClass('off');
		});
		var index = $(".wrapperTCP .top-borders a").index(this);
		$(this).addClass('on');
		$(".wrapperTCP .content-itens").eq(index).addClass('on');
	});
	$(".wrapperPPV .top-borders a").click(function(){
		$(".wrapperPPV .top-borders a").each(function(i){
		    $(this).removeClass('on');
		    $(".wrapperPPV .content-itens").eq(i).removeClass('on');
		    $(".wrapperPPV .content-itens").eq(i).addClass('off');
		});
		var index = $(".wrapperPPV .top-borders a").index(this);
		$(this).addClass('on');
		$(".wrapperPPV .content-itens").eq(index).addClass('on');
	});
	jQuery('.first-and-second-carousel').jcarousel({
	 scroll: 1
	});
});
