function MenuOver (x){
	x.bgColor = "#E6E6E6";
	if (document.all){
		x.style.cursor = "hand";
	}
	else{
		x.style.cursor = "pointer";
	}
}

function MenuOut (x){
	x.bgColor = "#737372";
	x.text = "FFFFFF";
}
function linkscroll (id){
	if (document.getElementById("linkscrolling_" + id).style.display == 'none'){
		document.getElementById("linkscrolling_" + 1).style.display = 'none';
		document.getElementById("linkscrolling_" + 2).style.display = 'none';
		document.getElementById("linkscrolling_" + 3).style.display = 'none';
		document.getElementById("linkscrolling_" + 4).style.display = 'none';
		document.getElementById("linkscrolling_" + 5).style.display = 'none';
		document.getElementById("linkscrolling_" + 6).style.display = 'none';
		document.getElementById("linkscrolling_" + id).style.display = "";
	}
	else{
		document.getElementById("linkscrolling_" + id).style.display = "none";
	}
	window.status = "";
}

