$(document).ready(function(){
  $("#menu li ul li").has("ul").addClass("menu_arrow");

  $(".show").click(function(){
    var id = ($(this).attr("id")).split("_");
    $("#togglep_"+id[1]).hide();
    $("#togglediv_"+id[1]).show("slow");
  });
  
  $(".hide").click(function(){
    var id = ($(this).attr("id")).split("_");
    $("#togglediv_"+id[1]).hide();
    $("#togglep_"+id[1]).show("slow");
  });
  
  $(".react").click(function(){
    goToByScroll("header");
    var rea = $(this).attr("title");
    var ide = $(this).attr("id").split("_");
    $("#react_name").removeClass();
    $("#react_name").html('<span id="react_cancel">X</span> '+rea);
    $("#id_chat").val(ide[1]);
      $("#react_cancel").click(function(){
        $("#id_chat").val("");
        $("#react_name").html();
        $("#react_name").addClass('none');   
      });     
  });   
  

       
});



function goToByScroll(id){
  $('html,body').animate({scrollTop: $("#"+id).offset().top},'slow');
}
