﻿/*
 * File: HowToBuyActionswidget.js
 * Date: 2008-12-12
 * Purpose: provides switching of images for "buttons"
 */
function ShowButtonRollover(i)
{
    var Button = document.getElementById('Button' + i);
    Button.src = '/midsizebusiness/how-to-buy/images/Button' + i + '_RollOver.png';
}
function HideButtonRollover(i)
{
    var Button = document.getElementById('Button' + i);
    Button.src = '/midsizebusiness/how-to-buy/images/Button' + i + '.png';
}
function HighlightChat(id)
{
    var elem = document.getElementById(id);
    if(elem)
    {
        elem.style.background = "url('/midsizebusiness/how-to-buy/images/Button2_RollOver.png') no-repeat";
    }
}
function DarkenChat (id)
{
    var elem = document.getElementById(id);
    if(elem)
    {
        elem.style.background = "url('/midsizebusiness/how-to-buy/images/Button2.png') no-repeat";
    }
}
function HighlightTalk(id)
{
    var elem = document.getElementById(id);
    if(elem)
    {
        elem.style.background = "url('/midsizebusiness/how-to-buy/images/Button3_RollOver.png') no-repeat";
    }
}
function DarkenTalk(id)
{
    var elem = document.getElementById(id);
    if(elem)
    {
        elem.style.background = "url('/midsizebusiness/how-to-buy/images/Button3.png') no-repeat";
    }
}