$(function () {
    
	/* abas de v�deos => sidebar */
    var tabContainers = $('.abas-videos > div.abas-video');
    tabContainers.hide().filter(':first').show();
    $('.abas-videos .abas-pequenas-videos a').click(function () {
        tabContainers.hide();
        tabContainers.filter(this.hash).show();
        $('.abas-videos .abas-pequenas-videos li a').removeClass('selected');
        $(this).addClass('selected');
        return false
    }).filter(':first').click();
    
	/* abas de not�cias => sidebar */
	var tabContainers2 = $('.abas-noticias > div.abas-noticia');
    tabContainers2.hide().filter(':first').show();
    $('.abas-noticias .abas-pequenas-noticias a').click(function () {
        tabContainers2.hide();
        tabContainers2.filter(this.hash).show();
        $('.abas-noticias .abas-pequenas-noticias li a').removeClass('selected');
        $(this).addClass('selected');
        return false
    }).filter(':first').click();
	
    /* abas de coment�rios */
	var tabContainers3 = $('.abas-comentarios > div.abas-comentario');
    tabContainers3.hide().filter(':first').show();
    $('.abas-comentarios .abas-pequenas-comentarios a').click(function () {
        tabContainers3.hide();
        tabContainers3.filter(this.hash).show();
        $('.abas-comentarios .abas-pequenas-comentarios li a').removeClass('selected');
        $(this).addClass('selected');
        return false
    }).filter(':first').click();

  /* abas de vídeos => sidebar */
    var tabContainers4 = $('.abas-tvvideos > div.abas-tvvideo');
    tabContainers4.hide().filter(':first').show();
    $('.abas-tvvideos .abas-pequenas-tvvideos a').click(function () {
        tabContainers4.hide();
        tabContainers4.filter(this.hash).show();
        $('.abas-tvvideos .abas-pequenas-tvvideos li a').removeClass('selected');
        $(this).addClass('selected');
        return false
    }).filter(':first').click();    
});
