startList = function() {
	if (document.all&&document.getElementById) {
		node = document.getElementById("n-artists");
		drop = document.getElementById("d-artists");
		
		node2 = document.getElementById("subscribemore");
		drop2 = document.getElementById("subscribemorein");
		
		node.onmouseover=function() {
			drop.className+=" over";
		}
		node.onmouseout=function() {
			drop.className=this.className.replace(" over", "");
		}
		
		node2.onmouseover=function() {
			drop2.className+=" over";
		}
		node2.onmouseout=function() {
			drop2.className=this.className.replace(" over", "");
		}
		

	}
}
window.onload=startList;
