


    $(document).ready(function(){




$(".service_ul > li").click(function(){
   var n=$(this).attr('title');
   var c=$(this).attr('class');
   var c2 = "act";

   if (c == c2) {   $(this).removeClass("act");
   $(".sc"+n).hide();      

   } else {


      $(".service_ul > li").removeClass("act");
   $(this).addClass("act");
   $(".sc").hide();

   $(".sc"+n).show();

   }



    });




});


