var a = document.getElementById('lang');
var b = a.offsetHeight;
var c = a.style.height = b;
a.style.height=18;
function showHideLang() 
{
	(parseInt(a.style.height) == c) ? (a.style.height = 18) : (a.style.height = c);
}
