var x;
var Div = "divhide";
var Foot = "langfoot";

function toggle() {


	if (x === 0) {
		document.getElementById(Div).style.display = 'inline';
		document.getElementById(Foot).style.background = 'url(/background_images/lmenu_footh.gif) no-repeat';
		document.getElementById(Foot).style.cursor = 'hand';
		x = 1;

	} else {

		document.getElementById(Div).style.display = 'none';
		document.getElementById(Foot).style.background = 'url(/background_images/lmenu_foots.gif) no-repeat';
		document.getElementById(Foot).style.cursor = 'hand';
		x = 0;
	}
}
function loadhide() {




		document.getElementById(Div).style.display = 'none';
		document.getElementById(Foot).style.background = 'url(/background_images/lmenu_foots.gif) no-repeat';
		document.getElementById(Foot).style.cursor = 'hand';
		x = 0;
	
}
