jQuery(document).ready( function($) {  

 $('#news_block div.post_content a.more-link').each(function () {
    $(this).click(function (){
            if($(this).parents().get(1).id=="first-"+this.href.split("#more-")[1])
                $("#first-"+this.href.split("#more-")[1]+" a.more-link").hide();
            else
                $("#first-"+this.href.split("#more-")[1]+" a.more-link").show(); 
            show_all_content(this.href.split("#more-")[1]); 
            return false;    
    })
 })
 
 function show_all_content(inner_id){
    $('#second-'+inner_id).slideToggle();
  //  alert(inner_id);
    return true;   
 }

})
