﻿$(document).ready(function () {

    $('#cphContent_cphBody_pnlCareers > table').hide();

    $('#careers a').click(function () {
        if ($(this).next().is(':visible')) {
            $(this).next().fadeOut();
        } else {
            $(this).next().fadeIn();
        }

    });

});
