// JavaScript Document
//var z = 10;
function showHide(id, action) {
	//alert ("The div is" + id);
//document.getElementById(id).style.display = "block";
//alert(document.getElementById(id));

if(id == "home_top"){
	if(action == "in"){
		document.getElementById(id).style.zIndex = 20;
	}
	else if(action == 'out') {
		document.getElementById(id).style.zIndex = 15;	
	}
	else {
		alert("There has been an error - Please refresh the page");	
	}
}
else if(id == "home_middle"){
	if(action == "in"){
		document.getElementById(id).style.zIndex = 20;
	}
	else if(action == 'out') {
		document.getElementById(id).style.zIndex = 10;	
	}
	else {
		alert("There has been an error - Please refresh the page");	
	}
}
else if(id == "home_bottom"){
	if(action == "in"){
		document.getElementById(id).style.zIndex = 20;
	}
	else if(action == 'out') {
		document.getElementById(id).style.zIndex = 5;	
	}
	else {
		alert("There has been an error - Please refresh the page");	
	}
}
else {
	
}
}

