	function clapOn1(the_id) {
		var source = document.getElementById(the_id);
		source.className = 'subnavcellon';
	}

	function clapOff1(the_id) {
		var source = document.getElementById(the_id);
		source.className = 'subnavcelloff';
	}

	function clapOn2(the_id) {
		var source = document.getElementById(the_id);
		source.className = 'printcellon';
	}

	function clapOff2(the_id) {
		var source = document.getElementById(the_id);
		source.className = 'printcelloff';
	}

	function goThere(the_id) {
		window.location = the_id;
	}