function filter(ic, id){
    li = ic;
    liElement = document.getElementById(li);
	if (liElement){
        liElement.className = id;
		}
}
