///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
menu = 0;
function toggle()
	{
	if (menu == 0)
		{
		document.getElementById('locations_menu').style.display='block';
		menu = 1;
		
		}
	else
		{
		document.getElementById('locations_menu').style.display='none';
		menu = 0;
		
		}
	void(0);
	}
// Función para menú
menu = 0;
function toggle()
	{
	if (menu == 0)
		{
		document.getElementById('locations_menu').style.display='block';
		menu = 1;
		
		}
	else
		{
		document.getElementById('locations_menu').style.display='none';
		menu = 0;
		
		}
	void(0);
	}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////	
function top()
{
var foto = new Array()
foto[0]='url(http://www.coined-costarica.org/imgs/top/costa-rica3.jpg)'
foto[1]='url(http://www.coined-costarica.org/imgs/top/costa-rica2.jpg)'
foto[2]='url(http://www.coined-costarica.org/imgs/top/costa-rica1.jpg)'
foto[3]='url(http://www.coined-costarica.org/imgs/top/costa-rica4.jpg)'
var ran_unrounded=Math.random()*4;
var ran_number=Math.floor(ran_unrounded); 
document.getElementById('xtabla').style.backgroundImage = foto[ran_number]
}