// <copyright file="HomePopularTabs.js" company="Microsoft">
// Copyright (c) 2007 Microsoft Corporation.  All rights reserved.
// </copyright>
// <summary>
// provide functionality to switch tabs in popular tabs section on home page
// </summary>

function toggleTabs(tabName) {
    var tab = $get(tabName + "Tab");
    var associatePanel = $get(tabName + "Content");
    var associateRightTop = $get(tabName + "RightTop");
    $("div.populartab").removeClass("selectedtab");
    $("div.tabrighttop").css("display", "none");
    $("div.contentpanel").css("display", "none");
    $(tab).addClass("selectedtab");
    $(associatePanel).css("display", "block");
    $(associateRightTop).css("display", "block");
}
