﻿var selbtn = '0';

$(document).ready(function() {
    $('.tb1_Con_sub').css('margin-left', '80px');
    $('.tb1_Con_sub .c01').show();
    $('.tb1_Con_sub').show('normal');

    $('#tb1_Con ul a').mouseover(function() {
        $('#tb1_Con ul img').each(function() {
            $(this).attr('src', $(this).attr('src').replace('_after', ''));
        });
        $('.tb1_Con_sub').hide();
        $('.tb1_Con_sub div').hide();

        selbtn = $(this).parent().attr('class').replace('c', '');
        $(this).find('img').attr('src', 'images/btn_' + selbtn + '_after.gif');

        switch (selbtn) {
            case '02':
                $('.tb1_Con_sub').css('margin-left', '80px');
                $('.tb1_Con_sub .c01').show();
                $('.tb1_Con_sub').show('normal');
                break;
            case '03':
                $('.tb1_Con_sub').css('margin-left', '160px');
                $('.tb1_Con_sub .c02').show();
                $('.tb1_Con_sub').show('normal');
                break;
            case '04':
                $('.tb1_Con_sub').css('margin-left', '245px');
                $('.tb1_Con_sub .c03').show();
                $('.tb1_Con_sub').show('normal');
                break;
            case '05':
                $('.tb1_Con_sub').css('margin-left', '305px');
                $('.tb1_Con_sub .c04').show();
                $('.tb1_Con_sub').show('normal');
                break;
            default:
                $('.tb1_Con_sub').hide();
                break;
        }
    });
});

