$(document).ready(function () {
    var contentWidth = ($('#bt').width());
    var tabWidth = Math.round(contentWidth / $("#bt").children('div').size());
    var tabWidthTotal = tabWidth * $("#bt").children('div').size();
    $("#bt").children('div').width(tabWidth);
    if (tabWidthTotal < contentWidth) {
        var tabWidthFill = contentWidth - tabWidthTotal;
        $("#bt").children('div:last').width(tabWidth + tabWidthFill)
    };
    if (tabWidthTotal > contentWidth) {
        var tabWidthHole = tabWidthTotal - contentWidth;
        $("#bt").children('div:last').width(tabWidth - tabWidthHole)
    };
    $("#bt").children('div').click(function () {
        if ($(this).css('background') != 'none repeat scroll 0% 0% rgb(33, 139, 123)') {
            $('#bt').children('div').each(function () {
                $(this).css('background', '')
            });
            $(this).css('background', '#218b7b');
            $('#btc').children('div').hide();
            $('#btc').children('div:eq(' + $(this).index() + ')').fadeIn('slow')
        }
    });
});
