$(document).ready(function(){
    // -------- Rolagem Abas
	$("#videosScroll").scrollable({ vertical: true, size: 3, mousewheel: true });	
	$("#spotScrolls").scrollable({ vertical: true, mousewheel: true });	
	$("#anunciosScroll").scrollable({ vertical: true, mousewheel: true });	
	$("#wallpapper").scrollable({ vertical: true, mousewheel: true });	
	$("#exScrolls").scrollable({ vertical: true, mousewheel: true });
	$("#eventosFolia").scrollable({ mousewheel: true, size: 6 });
 	// Mudança Abas
	$('.abasLateralConteudo .controle').not(':first').hide();
	$('.abasLateral a').click(function(){
		$('.controle').slideUp();
		$($(this).attr('title')).slideDown();
		var classeAtual = $(this).parent().parent().attr('class')
		$('.lateral').removeClass('laranja02').removeClass('laranja03').removeClass('vermelho').addClass(classeAtual);
		
		$(".abaProximo").hide();
        setTimeout("$('.abaProximo').show();",500);
	});	
});

