function movinout(obj, new_color, new_text_color, curs) {
var d = obj.getElementsByTagName("div");
if(curs==0) obj.style.cursor="default";
else obj.style.cursor="pointer";

obj.style.backgroundColor=new_color;
if(d.length)
{
    d[0].style.backgroundColor=new_color;
    d[0].style.color=new_text_color;
}

}

