$(function() {

/*
    $('.no_active span').mouseover(function() {
      $(this).css('text-decoration', 'none');
    })

    $('.no_active span').mouseout(function() {
      $(this).css('text-decoration', 'underline');
    })
*/
    $('.no_active span').click(function() {
        $('#newsbut2').css('background', 'url(./i/news1.png)');
        $('.active').removeClass('active').addClass('added no_active');
        $('.added.no_active').find('span').css('padding-left', '12px')
        $('#newsbut2 div:last').removeClass('no_active').addClass('active');
        //    $('.newsbut').removeClass('newsbut2').addClass('newsbut1_a')
        $('.news_block02').show();
        $('.news_block01').hide();
        $('#newsbut2 .no_active').click(function() {
            $('#newsbut2').css('background', 'url(./i/news2.png)');
            $(this).removeClass('no_active').addClass('active');
            $('.active').find('span').css('padding-left', '0')
            $('#newsbut2 div:last').removeClass('active').addClass('no_active');
            $('.news_block02').hide();
            $('.news_block01').show();
        });
    });


//    $('.added.no_active').find('span').css('padding-left', '12px');

/*
    $('.added.no_active').click(function() {
        alert('asdf');
    })
*/
/*
  $('.newsbut1_a').click(function() {
    $('.news_block02').hide();
    return false;
  })
*/

})
