$(function() {
    $("#stiri_nationale_hidden").hide();
    $("#stiri_locale_hidden").hide();
    $('a#fadeout_locale').click(function() {
       $('#stiri_nationale_hidden').hide();
       $('#stiri_locale_hidden').show();
       $('#all_locale').hide();
       $('#all_nationale').show();
    });
    $('a#fadeout_nationale').click(function() {
       $('#stiri_locale_hidden').hide();
       $('#stiri_nationale_hidden').show();
       $('#all_nationale').hide();
       $('#all_locale').show();
    });
});