$(document).ready(function(){        
    $("#nav li a").click(function() {    
        $('#nav li').removeClass('active');
        $('#footer span.floatRight a').removeClass('active');
        $(this).parent().addClass('active');
        var tabnumber = $(this).attr('class').substring(3, 5);
        $('#footer .tab' + tabnumber).addClass('active');
        $('.tabcontent').hide();
        $('.div' + tabnumber).fadeIn(1000);       
    });
    $("#footer span.floatRight a").click(function() {
        $('#nav li').removeClass('active');
        $('#footer span.floatRight a').removeClass('active');
        $(this).addClass('active');
        var tabnumber = $(this).attr('class').substring(3, 5);
        $('#nav li .tab' + tabnumber).parent().addClass('active');
        $('.tabcontent').hide();
        $('.div' + tabnumber).fadeIn(1000); 
    });    
});