function showPanel(div, panel) {
    $('#panels-li > li').each(function() {
        $(this).attr('class', $(this).attr('id'));
    });

    $("#" + panel + "").attr('class', panel + ' current');

    $("#panels > div").each(function(){
        if ($(this).css('display') == 'none' && div == $(this).attr('id') ||
            $(this).css('display') == 'block' && div == $(this).attr('id')) {
            $(this).css('display', 'block');
        } else if ($(this).css('display') == 'block') {
            $(this).css('display', 'none');
        }

    });
    return false;
}