﻿function changeBgColor(text)
{
document.getElementById(text).style.backgroundColor = '#b8db6e';
}

function returnBgColor(text)
{
if(text!='homebox2'&&text!='homebox4')
    document.getElementById(text).style.backgroundColor = '#f4f4f4';
else
   document.getElementById(text).style.backgroundColor = '#ffffff';
}               
