// JavaScript Document
function changeZ(self,other){
	var se = document.getElementById(self);
	var ot = document.getElementById(other);
	if(se.style.zIndex == 0)
	{
		se.style.zIndex=1;
		ot.style.zIndex=0;
	}
}