/**
 * @author Administrador
 */
$(document).ready(function() {
	try { onload(); } catch (e) {}
    
    $.get("ConsultaSubcategoria.Menu.php", { categoriaId : 2 }, function(html) {
        $("#categoriaId-2").empty().html(html);
    }, "html" // "xml", "html", "script", "json", "jsonp", or "text"
    );
    $.get("ConsultaSubcategoria.Menu.php", { categoriaId : 3 }, function(html) {
        $("#categoriaId-3").empty().html(html);
    }, "html" // "xml", "html", "script", "json", "jsonp", or "text"
    );
    $.get("ConsultaSubcategoria.Menu.php", { categoriaId : 4 }, function(html) {
        $("#categoriaId-4").empty().html(html);
    }, "html" // "xml", "html", "script", "json", "jsonp", or "text"
    );
    $.get("ConsultaSubcategoria.Menu.php", { categoriaId : 8 }, function(html) {
        $("#categoriaId-8").empty().html(html);
    }, "html" // "xml", "html", "script", "json", "jsonp", or "text"
    );
});

