
function over2(obj)
{
   obj.style.border = "1px solid FFFFDD";
   obj.style.backgroundColor = "#FFFFDD";
}
function out2(obj)
{
   obj.style.border = "1px solid #ffffEE"; // use in order to show a white border
   obj.style.backgroundColor = "#ffffEe";
}

function over3(obj)
{
   obj.style.border = "1px solid orange"; 
   obj.style.backgroundColor = "#ffffEE";
}
function out3(obj)
{
   obj.style.border = "1px solid #003C77";
   obj.style.backgroundColor = "#CCCC99";
}

function over6(obj)
{
   obj.style.border = "1px solid orange"; 
   obj.style.backgroundColor = "#ffEEEE";
}
function out6(obj)
{
   obj.style.border = "1px solid #003C77";
   obj.style.backgroundColor = "#FFCC99";
}

