﻿$(document).ready(function() {

    $('#FeatureTabs .Feature').hide(); // hide all feature divs
    $('#FeatureTabs #LatestVideos').show(); // show the first div
    //$('#tabs ul li:first').addClass('active'); // set the first link's class to active
    $('#FeatureTabs .FeatureNavLinks ul li a').click(function() { // when any link is clicked
        //$('#tabs ul li').removeClass('active'); // remove active class from all links
        //$(this).parent().addClass('active'); // set clicked link class to active
        var currentTab = $(this).attr('href'); // set variable currentTab
        $("#FeatureTabs .Feature:visible").fadeOut("slow", function() { //fade out visible div
            $(currentTab).fadeIn("slow") // fade in target div
        });
        return false;
    });
});