function listitemout(id,cid) { var item = document.getElementById("listitem_"+id); var colors = []; colors[1] = "#ffffff"; colors[2] = "#EAE8E6"; colors[3] = "#F2DECC"; item.style.backgroundColor = colors[cid]; } function listitemover(id,cid) { var item = document.getElementById("listitem_"+id); var colors = []; colors[1] = "#EEECEA"; colors[2] = "#D5D3D1"; colors[3] = "#ffffff"; item.style.backgroundColor = colors[cid]; } function displaycontent(cid) { var url = "http://jpox.eu/component/streams/view,content/cid,"+cid+"/"; window.location.href=url; }