core.values.row_styles_theme = [
    { title: "Bottom row", style: "layout_row_bottom" }
];


core.values.app_styles_theme = [
    { title: "Left border", style: "app_style_border_left" },
    { title: "Right border", style: "app_style_border_right" },
    { title: "Bottom border", style: "app_style_border_bottom" },
    { title: "Bottom shadow", style: "app_style_shadow_bottom" }
];

core.apps.theme = function() {

    $("site_breadcrumbs").parentNode.insertBefore($("site_breadcrumbs"), $("body_menu"));

    var ul = $("body_menu").childNodes[0];
    if(!ul || ul.childNodes.length == 0) {
        $("body_menu").style.display = "none";
    }

    this.site_logo = {
        width: 680,
        height: 102,
        src: "images/karma-logo.png"
    }

    

    this.buildModel($("site_breadcrumbs"),
        { tag: "h1", innerHTML: document.title }
    );

}
core.apps.theme.extendPrototype(core.components.html_component);
