$(function(){    
    
//VIDEOS
        
    //When page loads...
    $("#player div").hide(); //Hide all content
    $("#vid-ul li:first").addClass("on").show(); //Activate first tab
    $("#player div:first").show(); //Show first tab content

    //On Click Event
    $("#vid-ul li").click(function() {
            $("#vid-ul li").removeClass("on"); //Remove any "active" class
            $(this).addClass("on"); //Add "active" class to selected tab
            $("#player div").hide(); //Hide all tab content

            var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
            $(activeTab).fadeIn(700); //Fade in the active ID content
            return false;
    });    
    
});


