// JavaScript Document


function stepOver(which,text) {
	// number
	$("#info h3")[0].innerHTML = text;
	
	$("#" + which.id + " .number")[0].style.display = "none";
	//	which.childNodes[7].style.display="none";
	// expand
	$("#" + which.id + " .expand")[0].style.display = "block";	
	//which.childNodes[11].style.display = "block";
	
	//$("#" + which.id + " h4")[0].style.textDecoration = "underline";
	
	/*
	data = "";
	len = which.childNodes.length;
	for(e=0;e<len;e++) {
		data = data + e + ": " + which.childNodes[e].innerHTML + "\n";
	}
	alert(data);
	*/
}

function stepOut(which,text) {
	// number
	$("#info h3")[0].innerHTML = text;
	
	$("#" + which.id + " .number")[0].style.display = "block";
	//	which.childNodes[7].style.display="none";
	// expand
	$("#" + which.id + " .expand")[0].style.display = "none";	
	//which.childNodes[11].style.display = "block";	
	
	//$("#" + which.id + " h4")[0].style.textDecoration = "none";
}
