/**
 * 
 */
function showBestMonth() {
    $(".endGradient").hide();
    $("#rightbottomMenuItemBestMonth").attr('class', 'rightbottomMenuItemOn');
    $("#rightbottomMenuItemBestMonth .endGradient").show();
    $("#rightbottomMenuItemMostVisited").attr('class', 'rightbottomMenuItemOff');
    $("#rightbottomMenuItemBestRating").attr('class', 'rightbottomMenuItemOff');
    $("#rightbottomMenuItemNewest").attr('class', 'rightbottomMenuItemOff');
    if ($("#rightbottomContentMostVisited").is(':visible')) {
        $("#rightbottomContentMostVisited").fadeOut(250, function() {
            $("#rightbottomContentBestMonth").fadeIn(250);
        });
    }
    if ($("#rightbottomContentBestRating").is(':visible')) {
        $("#rightbottomContentBestRating").fadeOut(250, function() {
            $("#rightbottomContentBestMonth").fadeIn(250);
        });
    }
    if ($("#rightbottomContentNewest").is(':visible')) {
        $("#rightbottomContentNewest").fadeOut(250, function() {
            $("#rightbottomContentBestMonth").fadeIn(250);
        });
    }
    $('#rightbottomMenuItemBestMonthEnd').attr('class', 'endGradientAlpha');
    $('.rightbottomContentLink').hide();
    $('#rightbottomContentBestMonthLink').show();
}

/**
 * 
 */
function showMostVisited() {
    $(".endGradient").hide();
    $("#rightbottomMenuItemBestMonth").attr('class', 'rightbottomMenuItemOff');
    $("#rightbottomMenuItemMostVisited").attr('class', 'rightbottomMenuItemOn');
    $("#rightbottomMenuItemMostVisited .endGradient").show();
    $("#rightbottomMenuItemBestRating").attr('class', 'rightbottomMenuItemOff');
    $("#rightbottomMenuItemBestRatingEndGradient").hide();
    $("#rightbottomMenuItemNewest").attr('class', 'rightbottomMenuItemOff');
    $("#rightbottomMenuItemNewestEndGradient").hide();
    if ($("#rightbottomContentBestMonth").is(':visible')) {
        $("#rightbottomContentBestMonth").fadeOut(250, function() {
            $("#rightbottomContentMostVisited").fadeIn(250);
        });
    }
    if ($("#rightbottomContentBestRating").is(':visible')) {
        $("#rightbottomContentBestRating").fadeOut(250, function() {
            $("#rightbottomContentMostVisited").fadeIn(250);
        });
    }
    if ($("#rightbottomContentNewest").is(':visible')) {
        $("#rightbottomContentNewest").fadeOut(250, function() {
            $("#rightbottomContentMostVisited").fadeIn(250);
        });
    }
    $('.rightbottomContentLink').hide();
    $('#rightbottomContentMostVisitedLink').show();
}

/**
 * 
 */
function showBestRating() {
    $(".endGradient").hide();
    $("#rightbottomMenuItemBestMonth").attr('class', 'rightbottomMenuItemOff');
    $("#rightbottomMenuItemMostVisited").attr('class', 'rightbottomMenuItemOff');
    $("#rightbottomMenuItemBestRating").attr('class', 'rightbottomMenuItemOn');
    $("#rightbottomMenuItemNewest").attr('class', 'rightbottomMenuItemOff');
    $("#rightbottomMenuItemBestRating .endGradient").show();
    $("#rightbottomMenuItemBestMonth .endGradient").show();
    $("#rightbottomMenuItemBestRatingEndGradient").show();
    if ($("#rightbottomContentBestMonth").is(':visible')) {
        $("#rightbottomContentBestMonth").fadeOut(250, function() {
            $("#rightbottomContentBestRating").fadeIn(250);
        });
    }
    if ($("#rightbottomContentMostVisited").is(':visible')) {
        $("#rightbottomContentMostVisited").fadeOut(250, function() {
            $("#rightbottomContentBestRating").fadeIn(250);
        });
    }
    if ($("#rightbottomContentNewest").is(':visible')) {
        $("#rightbottomContentNewest").fadeOut(250, function() {
            $("#rightbottomContentBestRating").fadeIn(250);
        });
    }
    $('.rightbottomContentLink').hide();
    $('#rightbottomContentBestRatingLink').show();
}

/**
 * 
 */
function showNewest() {
    $(".endGradient").hide();
    $("#rightbottomMenuItemBestMonth").attr('class', 'rightbottomMenuItemOff');
    $("#rightbottomMenuItemMostVisited").attr('class', 'rightbottomMenuItemOff');
    $("#rightbottomMenuItemBestRating").attr('class', 'rightbottomMenuItemOff');
    $("#rightbottomMenuItemNewest").attr('class', 'rightbottomMenuItemOn');
    $("#rightbottomMenuItemBestRating .endGradient").show();
    $("#rightbottomMenuItemBestMonth .endGradient").show();
    $("#rightbottomMenuItemBestRatingEndGradient").show();
    if ($("#rightbottomContentBestMonth").is(':visible')) {
        $("#rightbottomContentBestMonth").fadeOut(250, function() {
            $("#rightbottomContentNewest").fadeIn(250);
        });
    }
    if ($("#rightbottomContentMostVisited").is(':visible')) {
        $("#rightbottomContentMostVisited").fadeOut(250, function() {
            $("#rightbottomContentNewest").fadeIn(250);
        });
    }
    if ($("#rightbottomContentBestRating").is(':visible')) {
        $("#rightbottomContentBestRating").fadeOut(250, function() {
            $("#rightbottomContentNewest").fadeIn(250);
        });
    }
    $('.rightbottomContentLink').hide();
    $('#rightbottomContentNewestLink').show();
}
