var id;
function change()
{
    if(document.all)
    {
        for(var i=0;i<document.all.length;i++)
            if(document.all[i].id.substring(0,3)=='new')
            {
                var obj=document.all[i];
                if(obj)
                {
                    if(obj.style.color == "red")
                    {
                        obj.style.color = "Yellow";
                        obj.style.fontSize = "11px";
	  obj.style.fontWeight = "bold";
                    }
                    else
                    {
                        obj.style.color = "red";
                        obj.style.fontSize = "11px";
                        obj.style.fontWeight = "bold";
                    }
                }
            }
            
            else if( document.all[i].id.substring(0,10)=='summercamp' || document.all[i].id.substring(0,4)=='ring' || document.all[i].id.substring(0,10)=='graduation')
            {
                var obj=document.all[i];
                if(obj)
                {
                    if(obj.style.color == "#232323")
                    {
                        obj.style.color = "Yellow";
                        obj.style.fontSize = "12px";
	  obj.style.fontWeight = "bold";
                    }
                    else
                    {
                        obj.style.color = "#232323";
                        obj.style.fontSize = "12px";
                        obj.style.fontWeight = "bold";
                    }
                }
            }            
    }
    
    
}
function go()
{
setInterval("change()",500);
}
