﻿function showTab(id, n) {

    $(id + " .t-t li").each(function(i) {
        if (i == n) {
            $(this).addClass("selected");
        } else {
            $(this).removeClass("selected");
        }
    });

    $(".slide-no .t-c").each(function(i) {
        if (i == n) {
            $(this).fadeIn(400);
        } else {
            $(this).hide();
        }
    });


}