var dom = document.getElementById; 
function swapIt(el, newclass) { 
	if (dom) { 
		el.className = newclass; 
		el.style.cursor = "hand"; 
		el.style.cursor = "pointer"; 
	} 
}