function insertAfter (node, newNode){
	var undefined;
	var parent = node.parentNode;
	var next = node.nextSibbling;
	
	//following: the IE fix
	if (next==undefined) next=null;
	parent.insertBefore(newNode,next);
}

