/* teste de scroll */
var _ANTERIOR = 0;
jQuery(function($) {
    $('.smcategorias').hide();
    /*anima menu*/
    $('.mcategorias li a').click(function() {
        //$('.smcategorias' + _ANTERIOR).hide();
        //if ($(this).attr("id") != _ANTERIOR) {
        $('.smcategorias' + _ANTERIOR).slideToggle('slow');
        //}
        _ANTERIOR = $(this).attr("id");
        $('.smcategorias' + $(this).attr("id")).slideToggle('slow');
    }
	);
});

function esconde(id) {
    jQuery(function($) {
        $('.smcategorias' + id).hide();
    });
}

function mostra(id) {
    jQuery(function($) {
        _ANTERIOR = id;
        $('.smcategorias' + id).slideToggle('slow');
    });
}