﻿$(document).ready(function() {
    var menuItems = {
        "/Community": "Community",
        "/Workouts": "Home",
        "/Results": "Home",
        "/Friends": "Home",
        "/Notifications": "Home",
        "/Plans": "Home",
        "/Home": "Overview",
        "/Download": "Download",
        "/Phones": "Download"
    };
    var c = getFirstController();
    var menuId = "#topmenu-" + menuItems[c];
    $(menuId).addClass("active");
});