 $(document).ready(function(){
    $(".bar").children().mouseover(function(){
		$(this).next().css("background-color","#EDEFF0");
	})
	 $(".bar").children().mouseout(function(){
		$(this).next().css("background-color","#fff");
	})

	$(".openclose").click(function(){

      $(this).children().slideToggle(1200) ;
	$(this).next().slideToggle(1000);
	});

    	$(".cbar-o-c").click(function(){
    	   $(this).children().slideToggle(1200) ;
      $(".barpanel").slideToggle(1200) ;
	});


  });

