/*
$Id: news.js,v 1.1.2.61 2009/02/27 12:55:07 max Exp $
vim: set ts=2 sw=2 sts=2 et:
*/
$(document).ready(
  function() {
    $('#show').css('display', '');
    $('#show2').css('display', '');
    $('#subscribe').hide();		
    $('#title2').hide();				
    $('#show').click(
      function() {				
        $('#news').hide("fast");
        $('#subscribe').show("fast");
        $('#news_title').css('display','none');
        $('#title2').show('fast');								
        return false;
      }
    );
    $('#show2').click (
      function() {
        $('#news').show("fast");
        $('#subscribe').hide("fast");
        $('#title2').css('display','none');
        $('#news_title').show('fast');	
        return false;
      }
    )
  }
);
