/* tabBox */
$(document).ready(function() {
$('div.tabBox ul li a').click(function() {
        if(! $(this).parent().parent().hasClass('tabBoxActive')) {
                var id = $(this).attr('href');
                $(this).parentsUntil('ul').parent().children('li.tabBoxActive').removeClass('tabBoxActive');
                $(this).parent().parent().addClass('tabBoxActive');
                $(this).parentsUntil('div.tabBox').parent().children('div.tabBoxActive').removeClass('tabBoxActive');
                $(id).addClass('tabBoxActive');			
        }
        return false;
});

});
