<!--//

// this script will set the title attribute for certain classes, to save typing;

		if (document.getElementById) {

	var AllTD = document.getElementsByTagName("TD");
	// alert(AllDivs.length);
	var numAllTD = AllTD.length;
		for (i=0; i < numAllTD; i++) {

			if (AllTD[i].className == "NA") {
				AllTD[i].title = "The two satellite instruments do not have a period of operational overlap.";
			}

			if (AllTD[i].className == "rddnt") {
				AllTD[i].title = "Omitted redundant pairing of satellites.";
			}

			if (AllTD[i].className == "blueBall") {
				AllTD[i].title = "instruments overlap, no statistics available";
			}

			if (AllTD[i].className == "greenBall") {
				AllTD[i].title = "SNO statistics are currently available for this satellite pairing; click icon to view statistics in a new window.";
			}

		}

	}


//-->