// JavaScript Document
function flip (id,active) {

	if (active) {
		id.src='images/' + id.id + '_on.gif';
	} else {
		id.src='images/' + id.id + '_off.gif';
	}

}

function DivOver (id) {
		document.getElementById(id).style.display = 'block';
}

function DivOut (id) {
		document.getElementById(id).style.display = 'none';
}