﻿$(document).ready(function() {
    $('#tab1').children("a").css('background-color', '#ccc');

    $('#content2').hide();
    $('#content3').hide();
    $('#content4').hide();
    $('#content5').hide();
    $('#content6').hide();

    $('#tab1').click(function() {
        $('#content1').show();
        $('#content2').hide();
        $('#content3').hide();
        $('#content4').hide();
        $('#content5').hide();
        $('#content6').hide();
        $(this).children("a").css('background-color', '#ccc');
        $('#tab2').children("a").css('background-color', '#fff');
        $('#tab3').children("a").css('background-color', '#fff');
        $('#tab4').children("a").css('background-color', '#fff');
        $('#tab5').children("a").css('background-color', '#fff');
        $('#tab6').children("a").css('background-color', '#fff');
        return false;
    });

    $('#tab2').click(function() {
        $('#content1').hide();
        $('#content2').show();
        $('#content3').hide();
        $('#content4').hide();
        $('#content5').hide();
        $('#content6').hide();
        $(this).children("a").css('background-color', '#ccc');
        $('#tab1').children("a").css('background-color', '#fff');
        $('#tab3').children("a").css('background-color', '#fff');
        $('#tab4').children("a").css('background-color', '#fff');
        $('#tab5').children("a").css('background-color', '#fff');
        $('#tab6').children("a").css('background-color', '#fff');
        return false;
    });

    $('#tab3').click(function() {
        $('#content1').hide();
        $('#content2').hide();
        $('#content3').show();
        $('#content4').hide();
        $('#content5').hide();
        $('#content6').hide();
        $(this).children("a").css('background-color', '#ccc');
        $('#tab1').children("a").css('background-color', '#fff');
        $('#tab2').children("a").css('background-color', '#fff');
        $('#tab4').children("a").css('background-color', '#fff');
        $('#tab5').children("a").css('background-color', '#fff');
        $('#tab6').children("a").css('background-color', '#fff');
        return false;
    });

    $('#tab4').click(function() {
        $('#content1').hide();
        $('#content2').hide();
        $('#content3').hide();
        $('#content4').show();
        $('#content5').hide();
        $('#content6').hide();
        $(this).children("a").css('background-color', '#ccc');
        $('#tab1').children("a").css('background-color', '#fff');
        $('#tab2').children("a").css('background-color', '#fff');
        $('#tab3').children("a").css('background-color', '#fff');
        $('#tab5').children("a").css('background-color', '#fff');
        $('#tab6').children("a").css('background-color', '#fff');
        return false;
    });

    $('#tab5').click(function() {
        $('#content1').hide();
        $('#content2').hide();
        $('#content3').hide();
        $('#content4').hide();
        $('#content5').show();
        $('#content6').hide();
        $(this).children("a").css('background-color', '#ccc');
        $('#tab1').children("a").css('background-color', '#fff');
        $('#tab2').children("a").css('background-color', '#fff');
        $('#tab3').children("a").css('background-color', '#fff');
        $('#tab4').children("a").css('background-color', '#fff');
        $('#tab6').children("a").css('background-color', '#fff');
        return false;
    });

    $('#tab6').click(function() {
        $('#content1').hide();
        $('#content2').hide();
        $('#content3').hide();
        $('#content4').hide();
        $('#content5').hide();
        $('#content6').show();
        $(this).children("a").css('background-color', '#ccc');
        $('#tab1').children("a").css('background-color', '#fff');
        $('#tab2').children("a").css('background-color', '#fff');
        $('#tab3').children("a").css('background-color', '#fff');
        $('#tab4').children("a").css('background-color', '#fff');
        $('#tab5').children("a").css('background-color', '#fff');
        return false;
    });
});