var ie, nn4, dom;
function imgflipab() {
	document.ba.src="index_files//coll_br2.jpg";
}
function imgflipba() {
	document.ba.src="index_files//coll_br.jpg";
}

function imgflipdamea() {
	document.dame.src="index_files//coll_br2.jpg";
}
function imgflipdameb() {
	document.dame.src="index_files//coll_tl.jpg";
}

if(document.all) {
	ie = true;
}
else {
	ie = false;
}

if(document.layers) {
	nn4 = true;
}
else {
	nn4 = false;
}
if(document.getElementById) {
	dom = true;
}
else {
	dom = false;
}
function showIt(id) {
	hideall();
	window.status = "Click outside of the menu to hide it.";
	if(nn4) {
			document.getElementById(id).visibility = "visible";
		}
	else {
		document.getElementById(id).style.visibility = "visible";
	}
}
function hideIt(id) {
	layer = browser(id);
	window.status = "";
	if(nn4)	{
		document.getElementById(id).visibility = "hidden";
	}
	else {
		document.getElementById(id).style.visibility = "hidden";
	}
}
function hideall() {
	window.status = "";
	if(nn4)	{
		document.getElementById('menuA').visibility = "hidden";
		document.getElementById('menuB').visibility = "hidden";
		document.getElementById('menuC').visibility = "hidden";
	}
	else {
		document.getElementById('menuA').style.visibility = "hidden";
		document.getElementById('menuB').style.visibility = "hidden";
		document.getElementById('menuC').style.visibility = "hidden";
	}
}
function mo(id) {
		document.getElementById(id).style.background='#6761CF';
		document.getElementById(id).style.color='#DDDDFF';
		document.getElementById(id).style.cursor='pointer';
}
function mo2(id) {
	document.getElementById(id).style.background='transparent';
	document.getElementById(id).style.color='#000000';
}