$(document).ready(function() {
    $("#servicos_menu ul li").each(function(){
			 
        $(this).click(function(){
            $("#servicos_menu ul li").each(function(){
                $(this).removeClass("selected");
                $(this).addClass("not_selected");
                $("#"+$(this).attr("id")+"html").hide();
            });
            $(this).removeClass("not_selected");
            $(this).addClass("selected");
            var htmlId = "#"+$(this).attr("id")+"html";
            $(htmlId).show();
        });
    });
});