jQuery(document).ready(function() {
    $(".btnTabs").click(function() {
        $(".tabs ul").hide();
        $("." + $(this).attr("id")).show();
        $("#menu-urbania li").removeClass("fondocafe");
        $(this).parent().addClass("fondocafe");
        
        //return false;
    });
    $("#content1").parent().addClass("fondocafe");
    $(".content1").show();
});
