﻿// jQuery JavaScript Library CMS Vm2 v1.4.4
// by Felipe brasil


$(function() {


    //Aba html programa de desenvolvimento
    $(".sub-aba-desenvolvimento-html").hide();
    $(".aba-desenvolvimento-html ul.abreDiv li:first").addClass("active").show();
    $(".sub-aba-desenvolvimento-html:first").show();

    //On Click Event
    $(".aba-desenvolvimento-html ul.abreDiv li").click(function() {

        $(".aba-desenvolvimento-html ul.abreDiv li").removeClass("active");
        $(this).addClass("active");
        $(".sub-aba-desenvolvimento-html").hide();

        var activeTab = $(this).find("a").attr("href");
        $(activeTab).fadeIn();
        return false;
    });





});



