/*
  functions for home icon
*/

var home = {

show:function()
{
  document.getElementById('house').style.visibility = "visible";
},

hide:function()
{
  document.getElementById('house').style.visibility = "hidden";
},

red:function()
{
  document.getElementById('house').src = "images/house_highlighted.gif";
},

yellow:function()
{
  document.getElementById('house').src = "images/house.gif";
}
}
