
	var timeout;
	
	function OtherLang()
	{
		var divOL = document.getElementById( 'other-languages' );

		if(	divOL.style.display == 'block' )
			return hideOtherLang();	
		else
			return showOtherLang( divOL );
	}	

	function showOtherLang( element )
	{
		element.style.display = 'block';
		
		timeout = setTimeout( "hideOtherLang()", 5000 );
	}
	
	function hideOtherLang( element )
	{
		var divOL = document.getElementById( 'other-languages' );
		divOL.style.display = 'none';
		
		clearTimeout( timeout );
	}