jQuery(document).ready(function(){
  jQuery(".newsFade").click(function(event){
    small =jQuery(this).parent().children("div.news_ct").children("div.news_content").children("div.ct_small_news");
    big = jQuery(this).parent().children("div.news_ct").children("div.news_content").children("div.ct_big_news");
    
    close_link = jQuery(this).parent().children("a.newsFade_close");
    open_link = jQuery(this).parent().children("a.newsFade");

    jQuery(small).css("display", "none");
    jQuery(big).css("display", "block");

    jQuery(close_link).css("display", "block");
    jQuery(open_link).css("display", "none");
    
    event.preventDefault();
  });


  jQuery(".newsFade_close").click(function(event){
    small =jQuery(this).parent().children("div.news_ct").children("div.news_content").children("div.ct_small_news");
    big = jQuery(this).parent().children("div.news_ct").children("div.news_content").children("div.ct_big_news");
    
    close_link = jQuery(this).parent().children("a.newsFade_close");
    open_link = jQuery(this).parent().children("a.newsFade");

    jQuery(small).css("display", "block");
    jQuery(big).css("display", "none");

    jQuery(close_link).css("display", "none");
    jQuery(open_link).css("display", "block");

    event.preventDefault();
  });
});

